diff --git a/.gitignore b/.gitignore index 9c4de58..a582129 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,33 @@ .DS_Store /build /captures + +.idea/misc.xml + +.idea/misc.xml + +.idea/vcs.xml + +.idea/misc.xml + +*.java + +*.json + +*.jar + +*.class + +*.txt + +*.properties + +*.xml + +*.png + +*.aar + +circlerefresh/build/outputs/aar/circlerefresh-release.aar + +circlerefresh/build/outputs/aar/circlerefresh-release.aar diff --git a/.idea/.name b/.idea/.name deleted file mode 100644 index 8649b53..0000000 --- a/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -CircleRefreshLayout \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml index 9b1d528..3db4753 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -5,8 +5,7 @@ + diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 56ea93a..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml new file mode 100644 index 0000000..7f68460 --- /dev/null +++ b/.idea/runConfigurations.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 6564d52..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/CircleRefreshLayout.iml b/CircleRefreshLayout.iml index 5155792..aa78d43 100644 --- a/CircleRefreshLayout.iml +++ b/CircleRefreshLayout.iml @@ -8,7 +8,7 @@ - + diff --git a/README.md b/README.md index 488375f..7080aa0 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,25 @@ This is a project with custom pull-to-refresh layout which contains a interestin ![](gif/circlerefresh.gif) +AS +添加JitPack仓库 + +``` java +allprojects { + repositories { + ... + maven { url 'https://jitpack.io' } + } + } +``` +添加依赖 + +``` java +dependencies { + compile 'com.github.Vurtex:CircleRefreshLayout:0.0.1' + } +``` ###Usage### @@ -50,5 +68,34 @@ when refreshing is done(for example, the image loading completes), you can invok mRefreshLayout.finishRefreshing(); ``` -###License### -MIT +修改在Fragment中使用mRefreLayout.finishRefreshing()不返回列表顶部的问题。 + +在CircleRefreshLayout中添加: +``` java +public void finishRefreshing() { + if (onCircleRefreshListener != null) { + onCircleRefreshListener.completeRefresh(); + } + mIsRefreshing = false; + mHeader.setRefreshing(false); + back(); + } + private void back() { + float height = mChildView.getTranslationY(); + ValueAnimator backTopAni = ValueAnimator.ofFloat(height, 0); + backTopAni.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { + @Override + public void onAnimationUpdate(ValueAnimator animation) { + float val = (float) animation.getAnimatedValue(); + val = decelerateInterpolator.getInterpolation(val / mHeaderHeight) * val; + if (mChildView != null) { + mChildView.setTranslationY(val); + } + mHeader.getLayoutParams().height = (int) val; + mHeader.requestLayout(); + } + }); + backTopAni.setDuration((long) (height * BACK_TOP_DUR / mHeaderHeight)); + backTopAni.start(); + } +``` diff --git a/app/app.iml b/app/app.iml index d4ca099..fc391d7 100644 --- a/app/app.iml +++ b/app/app.iml @@ -12,10 +12,9 @@ - + - + + - + + - + @@ -48,6 +49,15 @@ + + + + + + + + + @@ -55,6 +65,15 @@ + + + + + + + + + @@ -62,27 +81,29 @@ + - + - - - - - - - + + + + + + + - - - + + + + diff --git a/build.gradle b/build.gradle index 9405f3f..8f77b62 100644 --- a/build.gradle +++ b/build.gradle @@ -5,8 +5,8 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:1.2.3' - + classpath 'com.android.tools.build:gradle:2.2.3' + classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' // Add this // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } diff --git a/circlerefresh/build.gradle b/circlerefresh/build.gradle index 12f941a..348d6f7 100644 --- a/circlerefresh/build.gradle +++ b/circlerefresh/build.gradle @@ -1,5 +1,5 @@ apply plugin: 'com.android.library' - +apply plugin: 'com.github.dcendents.android-maven' android { compileSdkVersion 22 buildToolsVersion "22.0.1" diff --git a/circlerefresh/build/generated/source/buildConfig/release/com/tuesda/walker/circlerefresh/BuildConfig.java b/circlerefresh/build/generated/source/buildConfig/release/com/tuesda/walker/circlerefresh/BuildConfig.java deleted file mode 100644 index 93a5dc6..0000000 --- a/circlerefresh/build/generated/source/buildConfig/release/com/tuesda/walker/circlerefresh/BuildConfig.java +++ /dev/null @@ -1,13 +0,0 @@ -/** - * Automatically generated file. DO NOT MODIFY - */ -package com.tuesda.walker.circlerefresh; - -public final class BuildConfig { - public static final boolean DEBUG = false; - public static final String APPLICATION_ID = "com.tuesda.walker.circlerefresh"; - public static final String BUILD_TYPE = "release"; - public static final String FLAVOR = ""; - public static final int VERSION_CODE = 1; - public static final String VERSION_NAME = "1.0"; -} diff --git a/circlerefresh/build/generated/source/r/debug/android/support/v7/appcompat/R.java b/circlerefresh/build/generated/source/r/debug/android/support/v7/appcompat/R.java new file mode 100644 index 0000000..08906da --- /dev/null +++ b/circlerefresh/build/generated/source/r/debug/android/support/v7/appcompat/R.java @@ -0,0 +1,1154 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ +package android.support.v7.appcompat; + +public final class R { + public static final class anim { + public static int abc_fade_in = 0x7f050000; + public static int abc_fade_out = 0x7f050001; + public static int abc_grow_fade_in_from_bottom = 0x7f050002; + public static int abc_popup_enter = 0x7f050003; + public static int abc_popup_exit = 0x7f050004; + public static int abc_shrink_fade_out_from_bottom = 0x7f050005; + public static int abc_slide_in_bottom = 0x7f050006; + public static int abc_slide_in_top = 0x7f050007; + public static int abc_slide_out_bottom = 0x7f050008; + public static int abc_slide_out_top = 0x7f050009; + } + public static final class attr { + public static int actionBarDivider = 0x7f010066; + public static int actionBarItemBackground = 0x7f010067; + public static int actionBarPopupTheme = 0x7f010060; + public static int actionBarSize = 0x7f010065; + public static int actionBarSplitStyle = 0x7f010062; + public static int actionBarStyle = 0x7f010061; + public static int actionBarTabBarStyle = 0x7f01005c; + public static int actionBarTabStyle = 0x7f01005b; + public static int actionBarTabTextStyle = 0x7f01005d; + public static int actionBarTheme = 0x7f010063; + public static int actionBarWidgetTheme = 0x7f010064; + public static int actionButtonStyle = 0x7f010080; + public static int actionDropDownStyle = 0x7f01007c; + public static int actionLayout = 0x7f010034; + public static int actionMenuTextAppearance = 0x7f010068; + public static int actionMenuTextColor = 0x7f010069; + public static int actionModeBackground = 0x7f01006c; + public static int actionModeCloseButtonStyle = 0x7f01006b; + public static int actionModeCloseDrawable = 0x7f01006e; + public static int actionModeCopyDrawable = 0x7f010070; + public static int actionModeCutDrawable = 0x7f01006f; + public static int actionModeFindDrawable = 0x7f010074; + public static int actionModePasteDrawable = 0x7f010071; + public static int actionModePopupWindowStyle = 0x7f010076; + public static int actionModeSelectAllDrawable = 0x7f010072; + public static int actionModeShareDrawable = 0x7f010073; + public static int actionModeSplitBackground = 0x7f01006d; + public static int actionModeStyle = 0x7f01006a; + public static int actionModeWebSearchDrawable = 0x7f010075; + public static int actionOverflowButtonStyle = 0x7f01005e; + public static int actionOverflowMenuStyle = 0x7f01005f; + public static int actionProviderClass = 0x7f010036; + public static int actionViewClass = 0x7f010035; + public static int activityChooserViewStyle = 0x7f010087; + public static int alertDialogButtonGroupStyle = 0x7f0100a8; + public static int alertDialogCenterButtons = 0x7f0100a9; + public static int alertDialogStyle = 0x7f0100a7; + public static int alertDialogTheme = 0x7f0100aa; + public static int autoCompleteTextViewStyle = 0x7f0100af; + public static int background = 0x7f01000c; + public static int backgroundSplit = 0x7f01000e; + public static int backgroundStacked = 0x7f01000d; + public static int backgroundTint = 0x7f0100c8; + public static int backgroundTintMode = 0x7f0100c9; + public static int barSize = 0x7f01002e; + public static int buttonBarButtonStyle = 0x7f010082; + public static int buttonBarNegativeButtonStyle = 0x7f0100ad; + public static int buttonBarNeutralButtonStyle = 0x7f0100ae; + public static int buttonBarPositiveButtonStyle = 0x7f0100ac; + public static int buttonBarStyle = 0x7f010081; + public static int buttonPanelSideLayout = 0x7f01001f; + public static int buttonStyle = 0x7f0100b0; + public static int buttonStyleSmall = 0x7f0100b1; + public static int checkboxStyle = 0x7f0100b2; + public static int checkedTextViewStyle = 0x7f0100b3; + public static int closeIcon = 0x7f01003d; + public static int closeItemLayout = 0x7f01001c; + public static int collapseContentDescription = 0x7f0100c2; + public static int collapseIcon = 0x7f0100c1; + public static int color = 0x7f010028; + public static int colorAccent = 0x7f0100a1; + public static int colorButtonNormal = 0x7f0100a5; + public static int colorControlActivated = 0x7f0100a3; + public static int colorControlHighlight = 0x7f0100a4; + public static int colorControlNormal = 0x7f0100a2; + public static int colorPrimary = 0x7f01009f; + public static int colorPrimaryDark = 0x7f0100a0; + public static int colorSwitchThumbNormal = 0x7f0100a6; + public static int commitIcon = 0x7f010042; + public static int contentInsetEnd = 0x7f010017; + public static int contentInsetLeft = 0x7f010018; + public static int contentInsetRight = 0x7f010019; + public static int contentInsetStart = 0x7f010016; + public static int customNavigationLayout = 0x7f01000f; + public static int dialogPreferredPadding = 0x7f01007a; + public static int dialogTheme = 0x7f010079; + public static int disableChildrenWhenDisabled = 0x7f010049; + public static int displayOptions = 0x7f010005; + public static int divider = 0x7f01000b; + public static int dividerHorizontal = 0x7f010086; + public static int dividerPadding = 0x7f010032; + public static int dividerVertical = 0x7f010085; + public static int drawableSize = 0x7f01002a; + public static int drawerArrowStyle = 0x7f010000; + public static int dropDownListViewStyle = 0x7f010097; + public static int dropdownListPreferredItemHeight = 0x7f01007d; + public static int editTextBackground = 0x7f01008d; + public static int editTextColor = 0x7f01008c; + public static int editTextStyle = 0x7f0100b4; + public static int elevation = 0x7f01001a; + public static int expandActivityOverflowButtonDrawable = 0x7f01001e; + public static int gapBetweenBars = 0x7f01002b; + public static int goIcon = 0x7f01003e; + public static int height = 0x7f010001; + public static int hideOnContentScroll = 0x7f010015; + public static int homeAsUpIndicator = 0x7f01007f; + public static int homeLayout = 0x7f010010; + public static int icon = 0x7f010009; + public static int iconifiedByDefault = 0x7f01003b; + public static int indeterminateProgressStyle = 0x7f010012; + public static int initialActivityCount = 0x7f01001d; + public static int isLightTheme = 0x7f010002; + public static int itemPadding = 0x7f010014; + public static int layout = 0x7f01003a; + public static int listChoiceBackgroundIndicator = 0x7f01009e; + public static int listDividerAlertDialog = 0x7f01007b; + public static int listItemLayout = 0x7f010023; + public static int listLayout = 0x7f010020; + public static int listPopupWindowStyle = 0x7f010098; + public static int listPreferredItemHeight = 0x7f010092; + public static int listPreferredItemHeightLarge = 0x7f010094; + public static int listPreferredItemHeightSmall = 0x7f010093; + public static int listPreferredItemPaddingLeft = 0x7f010095; + public static int listPreferredItemPaddingRight = 0x7f010096; + public static int logo = 0x7f01000a; + public static int maxButtonHeight = 0x7f0100c0; + public static int measureWithLargestChild = 0x7f010030; + public static int middleBarArrowSize = 0x7f01002d; + public static int multiChoiceItemLayout = 0x7f010021; + public static int navigationContentDescription = 0x7f0100c4; + public static int navigationIcon = 0x7f0100c3; + public static int navigationMode = 0x7f010004; + public static int overlapAnchor = 0x7f010038; + public static int paddingEnd = 0x7f0100c6; + public static int paddingStart = 0x7f0100c5; + public static int panelBackground = 0x7f01009b; + public static int panelMenuListTheme = 0x7f01009d; + public static int panelMenuListWidth = 0x7f01009c; + public static int popupMenuStyle = 0x7f01008a; + public static int popupPromptView = 0x7f010048; + public static int popupTheme = 0x7f01001b; + public static int popupWindowStyle = 0x7f01008b; + public static int preserveIconSpacing = 0x7f010037; + public static int progressBarPadding = 0x7f010013; + public static int progressBarStyle = 0x7f010011; + public static int prompt = 0x7f010046; + public static int queryBackground = 0x7f010044; + public static int queryHint = 0x7f01003c; + public static int radioButtonStyle = 0x7f0100b5; + public static int ratingBarStyle = 0x7f0100b6; + public static int searchHintIcon = 0x7f010040; + public static int searchIcon = 0x7f01003f; + public static int searchViewStyle = 0x7f010091; + public static int selectableItemBackground = 0x7f010083; + public static int selectableItemBackgroundBorderless = 0x7f010084; + public static int showAsAction = 0x7f010033; + public static int showDividers = 0x7f010031; + public static int showText = 0x7f010050; + public static int singleChoiceItemLayout = 0x7f010022; + public static int spinBars = 0x7f010029; + public static int spinnerDropDownItemStyle = 0x7f01007e; + public static int spinnerMode = 0x7f010047; + public static int spinnerStyle = 0x7f0100b7; + public static int splitTrack = 0x7f01004f; + public static int state_above_anchor = 0x7f010039; + public static int submitBackground = 0x7f010045; + public static int subtitle = 0x7f010006; + public static int subtitleTextAppearance = 0x7f0100ba; + public static int subtitleTextStyle = 0x7f010008; + public static int suggestionRowLayout = 0x7f010043; + public static int switchMinWidth = 0x7f01004d; + public static int switchPadding = 0x7f01004e; + public static int switchStyle = 0x7f0100b8; + public static int switchTextAppearance = 0x7f01004c; + public static int textAllCaps = 0x7f010024; + public static int textAppearanceLargePopupMenu = 0x7f010077; + public static int textAppearanceListItem = 0x7f010099; + public static int textAppearanceListItemSmall = 0x7f01009a; + public static int textAppearanceSearchResultSubtitle = 0x7f01008f; + public static int textAppearanceSearchResultTitle = 0x7f01008e; + public static int textAppearanceSmallPopupMenu = 0x7f010078; + public static int textColorAlertDialogListItem = 0x7f0100ab; + public static int textColorSearchUrl = 0x7f010090; + public static int theme = 0x7f0100c7; + public static int thickness = 0x7f01002f; + public static int thumbTextPadding = 0x7f01004b; + public static int title = 0x7f010003; + public static int titleMarginBottom = 0x7f0100bf; + public static int titleMarginEnd = 0x7f0100bd; + public static int titleMarginStart = 0x7f0100bc; + public static int titleMarginTop = 0x7f0100be; + public static int titleMargins = 0x7f0100bb; + public static int titleTextAppearance = 0x7f0100b9; + public static int titleTextStyle = 0x7f010007; + public static int toolbarNavigationButtonStyle = 0x7f010089; + public static int toolbarStyle = 0x7f010088; + public static int topBottomBarArrowSize = 0x7f01002c; + public static int track = 0x7f01004a; + public static int voiceIcon = 0x7f010041; + public static int windowActionBar = 0x7f010051; + public static int windowActionBarOverlay = 0x7f010053; + public static int windowActionModeOverlay = 0x7f010054; + public static int windowFixedHeightMajor = 0x7f010058; + public static int windowFixedHeightMinor = 0x7f010056; + public static int windowFixedWidthMajor = 0x7f010055; + public static int windowFixedWidthMinor = 0x7f010057; + public static int windowMinWidthMajor = 0x7f010059; + public static int windowMinWidthMinor = 0x7f01005a; + public static int windowNoTitle = 0x7f010052; + } + public static final class bool { + public static int abc_action_bar_embed_tabs = 0x7f090002; + public static int abc_action_bar_embed_tabs_pre_jb = 0x7f090000; + public static int abc_action_bar_expanded_action_views_exclusive = 0x7f090003; + public static int abc_config_actionMenuItemAllCaps = 0x7f090004; + public static int abc_config_allowActionMenuItemTextWithIcon = 0x7f090001; + public static int abc_config_closeDialogWhenTouchOutside = 0x7f090005; + public static int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f090006; + } + public static final class color { + public static int abc_background_cache_hint_selector_material_dark = 0x7f0b0033; + public static int abc_background_cache_hint_selector_material_light = 0x7f0b0034; + public static int abc_input_method_navigation_guard = 0x7f0b0000; + public static int abc_primary_text_disable_only_material_dark = 0x7f0b0035; + public static int abc_primary_text_disable_only_material_light = 0x7f0b0036; + public static int abc_primary_text_material_dark = 0x7f0b0037; + public static int abc_primary_text_material_light = 0x7f0b0038; + public static int abc_search_url_text = 0x7f0b0039; + public static int abc_search_url_text_normal = 0x7f0b0001; + public static int abc_search_url_text_pressed = 0x7f0b0002; + public static int abc_search_url_text_selected = 0x7f0b0003; + public static int abc_secondary_text_material_dark = 0x7f0b003a; + public static int abc_secondary_text_material_light = 0x7f0b003b; + public static int accent_material_dark = 0x7f0b0004; + public static int accent_material_light = 0x7f0b0005; + public static int background_floating_material_dark = 0x7f0b0006; + public static int background_floating_material_light = 0x7f0b0007; + public static int background_material_dark = 0x7f0b0008; + public static int background_material_light = 0x7f0b0009; + public static int bright_foreground_disabled_material_dark = 0x7f0b000a; + public static int bright_foreground_disabled_material_light = 0x7f0b000b; + public static int bright_foreground_inverse_material_dark = 0x7f0b000c; + public static int bright_foreground_inverse_material_light = 0x7f0b000d; + public static int bright_foreground_material_dark = 0x7f0b000e; + public static int bright_foreground_material_light = 0x7f0b000f; + public static int button_material_dark = 0x7f0b0010; + public static int button_material_light = 0x7f0b0011; + public static int dim_foreground_disabled_material_dark = 0x7f0b0012; + public static int dim_foreground_disabled_material_light = 0x7f0b0013; + public static int dim_foreground_material_dark = 0x7f0b0014; + public static int dim_foreground_material_light = 0x7f0b0015; + public static int highlighted_text_material_dark = 0x7f0b0016; + public static int highlighted_text_material_light = 0x7f0b0017; + public static int hint_foreground_material_dark = 0x7f0b0018; + public static int hint_foreground_material_light = 0x7f0b0019; + public static int link_text_material_dark = 0x7f0b001a; + public static int link_text_material_light = 0x7f0b001b; + public static int material_blue_grey_800 = 0x7f0b001c; + public static int material_blue_grey_900 = 0x7f0b001d; + public static int material_blue_grey_950 = 0x7f0b001e; + public static int material_deep_teal_200 = 0x7f0b001f; + public static int material_deep_teal_500 = 0x7f0b0020; + public static int primary_dark_material_dark = 0x7f0b0021; + public static int primary_dark_material_light = 0x7f0b0022; + public static int primary_material_dark = 0x7f0b0023; + public static int primary_material_light = 0x7f0b0024; + public static int primary_text_default_material_dark = 0x7f0b0025; + public static int primary_text_default_material_light = 0x7f0b0026; + public static int primary_text_disabled_material_dark = 0x7f0b0027; + public static int primary_text_disabled_material_light = 0x7f0b0028; + public static int ripple_material_dark = 0x7f0b0029; + public static int ripple_material_light = 0x7f0b002a; + public static int secondary_text_default_material_dark = 0x7f0b002b; + public static int secondary_text_default_material_light = 0x7f0b002c; + public static int secondary_text_disabled_material_dark = 0x7f0b002d; + public static int secondary_text_disabled_material_light = 0x7f0b002e; + public static int switch_thumb_disabled_material_dark = 0x7f0b002f; + public static int switch_thumb_disabled_material_light = 0x7f0b0030; + public static int switch_thumb_material_dark = 0x7f0b003c; + public static int switch_thumb_material_light = 0x7f0b003d; + public static int switch_thumb_normal_material_dark = 0x7f0b0031; + public static int switch_thumb_normal_material_light = 0x7f0b0032; + } + public static final class dimen { + public static int abc_action_bar_content_inset_material = 0x7f07000c; + public static int abc_action_bar_default_height_material = 0x7f070001; + public static int abc_action_bar_default_padding_material = 0x7f070002; + public static int abc_action_bar_icon_vertical_padding_material = 0x7f070011; + public static int abc_action_bar_navigation_padding_start_material = 0x7f07000d; + public static int abc_action_bar_overflow_padding_end_material = 0x7f07000e; + public static int abc_action_bar_overflow_padding_start_material = 0x7f070012; + public static int abc_action_bar_progress_bar_size = 0x7f070003; + public static int abc_action_bar_stacked_max_height = 0x7f070013; + public static int abc_action_bar_stacked_tab_max_width = 0x7f070014; + public static int abc_action_bar_subtitle_bottom_margin_material = 0x7f070015; + public static int abc_action_bar_subtitle_top_margin_material = 0x7f070016; + public static int abc_action_button_min_height_material = 0x7f070017; + public static int abc_action_button_min_width_material = 0x7f070018; + public static int abc_action_button_min_width_overflow_material = 0x7f070019; + public static int abc_alert_dialog_button_bar_height = 0x7f070000; + public static int abc_button_inset_horizontal_material = 0x7f07001a; + public static int abc_button_inset_vertical_material = 0x7f07001b; + public static int abc_button_padding_horizontal_material = 0x7f07001c; + public static int abc_button_padding_vertical_material = 0x7f07001d; + public static int abc_config_prefDialogWidth = 0x7f070006; + public static int abc_control_corner_material = 0x7f07001e; + public static int abc_control_inset_material = 0x7f07001f; + public static int abc_control_padding_material = 0x7f070020; + public static int abc_dialog_list_padding_vertical_material = 0x7f070021; + public static int abc_dialog_min_width_major = 0x7f070022; + public static int abc_dialog_min_width_minor = 0x7f070023; + public static int abc_dialog_padding_material = 0x7f070024; + public static int abc_dialog_padding_top_material = 0x7f070025; + public static int abc_disabled_alpha_material_dark = 0x7f070026; + public static int abc_disabled_alpha_material_light = 0x7f070027; + public static int abc_dropdownitem_icon_width = 0x7f070028; + public static int abc_dropdownitem_text_padding_left = 0x7f070029; + public static int abc_dropdownitem_text_padding_right = 0x7f07002a; + public static int abc_edit_text_inset_bottom_material = 0x7f07002b; + public static int abc_edit_text_inset_horizontal_material = 0x7f07002c; + public static int abc_edit_text_inset_top_material = 0x7f07002d; + public static int abc_floating_window_z = 0x7f07002e; + public static int abc_list_item_padding_horizontal_material = 0x7f07002f; + public static int abc_panel_menu_list_width = 0x7f070030; + public static int abc_search_view_preferred_width = 0x7f070031; + public static int abc_search_view_text_min_width = 0x7f070007; + public static int abc_switch_padding = 0x7f07000f; + public static int abc_text_size_body_1_material = 0x7f070032; + public static int abc_text_size_body_2_material = 0x7f070033; + public static int abc_text_size_button_material = 0x7f070034; + public static int abc_text_size_caption_material = 0x7f070035; + public static int abc_text_size_display_1_material = 0x7f070036; + public static int abc_text_size_display_2_material = 0x7f070037; + public static int abc_text_size_display_3_material = 0x7f070038; + public static int abc_text_size_display_4_material = 0x7f070039; + public static int abc_text_size_headline_material = 0x7f07003a; + public static int abc_text_size_large_material = 0x7f07003b; + public static int abc_text_size_medium_material = 0x7f07003c; + public static int abc_text_size_menu_material = 0x7f07003d; + public static int abc_text_size_small_material = 0x7f07003e; + public static int abc_text_size_subhead_material = 0x7f07003f; + public static int abc_text_size_subtitle_material_toolbar = 0x7f070004; + public static int abc_text_size_title_material = 0x7f070040; + public static int abc_text_size_title_material_toolbar = 0x7f070005; + public static int dialog_fixed_height_major = 0x7f070008; + public static int dialog_fixed_height_minor = 0x7f070009; + public static int dialog_fixed_width_major = 0x7f07000a; + public static int dialog_fixed_width_minor = 0x7f07000b; + public static int disabled_alpha_material_dark = 0x7f070042; + public static int disabled_alpha_material_light = 0x7f070043; + } + public static final class drawable { + public static int abc_ab_share_pack_mtrl_alpha = 0x7f020000; + public static int abc_btn_borderless_material = 0x7f020001; + public static int abc_btn_check_material = 0x7f020002; + public static int abc_btn_check_to_on_mtrl_000 = 0x7f020003; + public static int abc_btn_check_to_on_mtrl_015 = 0x7f020004; + public static int abc_btn_default_mtrl_shape = 0x7f020005; + public static int abc_btn_radio_material = 0x7f020006; + public static int abc_btn_radio_to_on_mtrl_000 = 0x7f020007; + public static int abc_btn_radio_to_on_mtrl_015 = 0x7f020008; + public static int abc_btn_rating_star_off_mtrl_alpha = 0x7f020009; + public static int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000a; + public static int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000b; + public static int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000c; + public static int abc_cab_background_internal_bg = 0x7f02000d; + public static int abc_cab_background_top_material = 0x7f02000e; + public static int abc_cab_background_top_mtrl_alpha = 0x7f02000f; + public static int abc_dialog_material_background_dark = 0x7f020010; + public static int abc_dialog_material_background_light = 0x7f020011; + public static int abc_edit_text_material = 0x7f020012; + public static int abc_ic_ab_back_mtrl_am_alpha = 0x7f020013; + public static int abc_ic_clear_mtrl_alpha = 0x7f020014; + public static int abc_ic_commit_search_api_mtrl_alpha = 0x7f020015; + public static int abc_ic_go_search_api_mtrl_alpha = 0x7f020016; + public static int abc_ic_menu_copy_mtrl_am_alpha = 0x7f020017; + public static int abc_ic_menu_cut_mtrl_alpha = 0x7f020018; + public static int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f020019; + public static int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001a; + public static int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001b; + public static int abc_ic_menu_share_mtrl_alpha = 0x7f02001c; + public static int abc_ic_search_api_mtrl_alpha = 0x7f02001d; + public static int abc_ic_voice_search_api_mtrl_alpha = 0x7f02001e; + public static int abc_item_background_holo_dark = 0x7f02001f; + public static int abc_item_background_holo_light = 0x7f020020; + public static int abc_list_divider_mtrl_alpha = 0x7f020021; + public static int abc_list_focused_holo = 0x7f020022; + public static int abc_list_longpressed_holo = 0x7f020023; + public static int abc_list_pressed_holo_dark = 0x7f020024; + public static int abc_list_pressed_holo_light = 0x7f020025; + public static int abc_list_selector_background_transition_holo_dark = 0x7f020026; + public static int abc_list_selector_background_transition_holo_light = 0x7f020027; + public static int abc_list_selector_disabled_holo_dark = 0x7f020028; + public static int abc_list_selector_disabled_holo_light = 0x7f020029; + public static int abc_list_selector_holo_dark = 0x7f02002a; + public static int abc_list_selector_holo_light = 0x7f02002b; + public static int abc_menu_hardkey_panel_mtrl_mult = 0x7f02002c; + public static int abc_popup_background_mtrl_mult = 0x7f02002d; + public static int abc_ratingbar_full_material = 0x7f02002e; + public static int abc_spinner_mtrl_am_alpha = 0x7f02002f; + public static int abc_spinner_textfield_background_material = 0x7f020030; + public static int abc_switch_thumb_material = 0x7f020031; + public static int abc_switch_track_mtrl_alpha = 0x7f020032; + public static int abc_tab_indicator_material = 0x7f020033; + public static int abc_tab_indicator_mtrl_alpha = 0x7f020034; + public static int abc_text_cursor_mtrl_alpha = 0x7f020035; + public static int abc_textfield_activated_mtrl_alpha = 0x7f020036; + public static int abc_textfield_default_mtrl_alpha = 0x7f020037; + public static int abc_textfield_search_activated_mtrl_alpha = 0x7f020038; + public static int abc_textfield_search_default_mtrl_alpha = 0x7f020039; + public static int abc_textfield_search_material = 0x7f02003a; + } + public static final class id { + public static int action_bar = 0x7f0c0040; + public static int action_bar_activity_content = 0x7f0c0000; + public static int action_bar_container = 0x7f0c003f; + public static int action_bar_root = 0x7f0c003b; + public static int action_bar_spinner = 0x7f0c0001; + public static int action_bar_subtitle = 0x7f0c0024; + public static int action_bar_title = 0x7f0c0023; + public static int action_context_bar = 0x7f0c0041; + public static int action_menu_divider = 0x7f0c0002; + public static int action_menu_presenter = 0x7f0c0003; + public static int action_mode_bar = 0x7f0c003d; + public static int action_mode_bar_stub = 0x7f0c003c; + public static int action_mode_close_button = 0x7f0c0025; + public static int activity_chooser_view_content = 0x7f0c0026; + public static int alertTitle = 0x7f0c0030; + public static int always = 0x7f0c0016; + public static int beginning = 0x7f0c0013; + public static int buttonPanel = 0x7f0c0036; + public static int checkbox = 0x7f0c0038; + public static int collapseActionView = 0x7f0c0017; + public static int contentPanel = 0x7f0c0031; + public static int custom = 0x7f0c0035; + public static int customPanel = 0x7f0c0034; + public static int decor_content_parent = 0x7f0c003e; + public static int default_activity_button = 0x7f0c0029; + public static int dialog = 0x7f0c001b; + public static int disableHome = 0x7f0c000c; + public static int dropdown = 0x7f0c001c; + public static int edit_query = 0x7f0c0042; + public static int end = 0x7f0c0014; + public static int expand_activities_button = 0x7f0c0027; + public static int expanded_menu = 0x7f0c0037; + public static int home = 0x7f0c0004; + public static int homeAsUp = 0x7f0c000d; + public static int icon = 0x7f0c002b; + public static int ifRoom = 0x7f0c0018; + public static int image = 0x7f0c0028; + public static int listMode = 0x7f0c0009; + public static int list_item = 0x7f0c002a; + public static int middle = 0x7f0c0015; + public static int multiply = 0x7f0c001e; + public static int never = 0x7f0c0019; + public static int none = 0x7f0c000e; + public static int normal = 0x7f0c000a; + public static int parentPanel = 0x7f0c002d; + public static int progress_circular = 0x7f0c0005; + public static int progress_horizontal = 0x7f0c0006; + public static int radio = 0x7f0c003a; + public static int screen = 0x7f0c001f; + public static int scrollView = 0x7f0c0032; + public static int search_badge = 0x7f0c0044; + public static int search_bar = 0x7f0c0043; + public static int search_button = 0x7f0c0045; + public static int search_close_btn = 0x7f0c004a; + public static int search_edit_frame = 0x7f0c0046; + public static int search_go_btn = 0x7f0c004c; + public static int search_mag_icon = 0x7f0c0047; + public static int search_plate = 0x7f0c0048; + public static int search_src_text = 0x7f0c0049; + public static int search_voice_btn = 0x7f0c004d; + public static int select_dialog_listview = 0x7f0c004e; + public static int shortcut = 0x7f0c0039; + public static int showCustom = 0x7f0c000f; + public static int showHome = 0x7f0c0010; + public static int showTitle = 0x7f0c0011; + public static int split_action_bar = 0x7f0c0007; + public static int src_atop = 0x7f0c0020; + public static int src_in = 0x7f0c0021; + public static int src_over = 0x7f0c0022; + public static int submit_area = 0x7f0c004b; + public static int tabMode = 0x7f0c000b; + public static int textSpacerNoButtons = 0x7f0c0033; + public static int title = 0x7f0c002c; + public static int title_template = 0x7f0c002f; + public static int topPanel = 0x7f0c002e; + public static int up = 0x7f0c0008; + public static int useLogo = 0x7f0c0012; + public static int withText = 0x7f0c001a; + public static int wrap_content = 0x7f0c001d; + } + public static final class integer { + public static int abc_config_activityDefaultDur = 0x7f0a0001; + public static int abc_config_activityShortDur = 0x7f0a0002; + public static int abc_max_action_buttons = 0x7f0a0000; + } + public static final class layout { + public static int abc_action_bar_title_item = 0x7f040000; + public static int abc_action_bar_up_container = 0x7f040001; + public static int abc_action_bar_view_list_nav_layout = 0x7f040002; + public static int abc_action_menu_item_layout = 0x7f040003; + public static int abc_action_menu_layout = 0x7f040004; + public static int abc_action_mode_bar = 0x7f040005; + public static int abc_action_mode_close_item_material = 0x7f040006; + public static int abc_activity_chooser_view = 0x7f040007; + public static int abc_activity_chooser_view_list_item = 0x7f040008; + public static int abc_alert_dialog_material = 0x7f040009; + public static int abc_dialog_title_material = 0x7f04000a; + public static int abc_expanded_menu_layout = 0x7f04000b; + public static int abc_list_menu_item_checkbox = 0x7f04000c; + public static int abc_list_menu_item_icon = 0x7f04000d; + public static int abc_list_menu_item_layout = 0x7f04000e; + public static int abc_list_menu_item_radio = 0x7f04000f; + public static int abc_popup_menu_item_layout = 0x7f040010; + public static int abc_screen_content_include = 0x7f040011; + public static int abc_screen_simple = 0x7f040012; + public static int abc_screen_simple_overlay_action_mode = 0x7f040013; + public static int abc_screen_toolbar = 0x7f040014; + public static int abc_search_dropdown_item_icons_2line = 0x7f040015; + public static int abc_search_view = 0x7f040016; + public static int abc_select_dialog_material = 0x7f040017; + public static int abc_simple_dropdown_hint = 0x7f040018; + public static int select_dialog_item_material = 0x7f04001a; + public static int select_dialog_multichoice_material = 0x7f04001b; + public static int select_dialog_singlechoice_material = 0x7f04001c; + public static int support_simple_spinner_dropdown_item = 0x7f04001d; + } + public static final class string { + public static int abc_action_bar_home_description = 0x7f060000; + public static int abc_action_bar_home_description_format = 0x7f06000d; + public static int abc_action_bar_home_subtitle_description_format = 0x7f06000e; + public static int abc_action_bar_up_description = 0x7f060001; + public static int abc_action_menu_overflow_description = 0x7f060002; + public static int abc_action_mode_done = 0x7f060003; + public static int abc_activity_chooser_view_see_all = 0x7f060004; + public static int abc_activitychooserview_choose_application = 0x7f060005; + public static int abc_search_hint = 0x7f06000f; + public static int abc_searchview_description_clear = 0x7f060006; + public static int abc_searchview_description_query = 0x7f060007; + public static int abc_searchview_description_search = 0x7f060008; + public static int abc_searchview_description_submit = 0x7f060009; + public static int abc_searchview_description_voice = 0x7f06000a; + public static int abc_shareactionprovider_share_with = 0x7f06000b; + public static int abc_shareactionprovider_share_with_application = 0x7f06000c; + public static int abc_toolbar_collapse_description = 0x7f060010; + } + public static final class style { + public static int AlertDialog_AppCompat = 0x7f08006b; + public static int AlertDialog_AppCompat_Light = 0x7f08006c; + public static int Animation_AppCompat_Dialog = 0x7f08006d; + public static int Animation_AppCompat_DropDownUp = 0x7f08006e; + public static int Base_AlertDialog_AppCompat = 0x7f080070; + public static int Base_AlertDialog_AppCompat_Light = 0x7f080071; + public static int Base_Animation_AppCompat_Dialog = 0x7f080072; + public static int Base_Animation_AppCompat_DropDownUp = 0x7f080073; + public static int Base_DialogWindowTitleBackground_AppCompat = 0x7f080075; + public static int Base_DialogWindowTitle_AppCompat = 0x7f080074; + public static int Base_TextAppearance_AppCompat = 0x7f080025; + public static int Base_TextAppearance_AppCompat_Body1 = 0x7f080026; + public static int Base_TextAppearance_AppCompat_Body2 = 0x7f080027; + public static int Base_TextAppearance_AppCompat_Button = 0x7f080016; + public static int Base_TextAppearance_AppCompat_Caption = 0x7f080028; + public static int Base_TextAppearance_AppCompat_Display1 = 0x7f080029; + public static int Base_TextAppearance_AppCompat_Display2 = 0x7f08002a; + public static int Base_TextAppearance_AppCompat_Display3 = 0x7f08002b; + public static int Base_TextAppearance_AppCompat_Display4 = 0x7f08002c; + public static int Base_TextAppearance_AppCompat_Headline = 0x7f08002d; + public static int Base_TextAppearance_AppCompat_Inverse = 0x7f080003; + public static int Base_TextAppearance_AppCompat_Large = 0x7f08002e; + public static int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f080004; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f08002f; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f080030; + public static int Base_TextAppearance_AppCompat_Medium = 0x7f080031; + public static int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f080005; + public static int Base_TextAppearance_AppCompat_Menu = 0x7f080032; + public static int Base_TextAppearance_AppCompat_SearchResult = 0x7f080076; + public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f080033; + public static int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f080034; + public static int Base_TextAppearance_AppCompat_Small = 0x7f080035; + public static int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f080006; + public static int Base_TextAppearance_AppCompat_Subhead = 0x7f080036; + public static int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f080007; + public static int Base_TextAppearance_AppCompat_Title = 0x7f080037; + public static int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f080008; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f080038; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f080039; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f08003a; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f08003b; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f08003c; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f08003d; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f08003e; + public static int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f080077; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f08003f; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f080040; + public static int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f080041; + public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f080042; + public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f080078; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f080043; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f080044; + public static int Base_ThemeOverlay_AppCompat = 0x7f080081; + public static int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f080082; + public static int Base_ThemeOverlay_AppCompat_Dark = 0x7f080083; + public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f080084; + public static int Base_ThemeOverlay_AppCompat_Light = 0x7f080085; + public static int Base_Theme_AppCompat = 0x7f080045; + public static int Base_Theme_AppCompat_CompactMenu = 0x7f080079; + public static int Base_Theme_AppCompat_Dialog = 0x7f080009; + public static int Base_Theme_AppCompat_DialogWhenLarge = 0x7f080001; + public static int Base_Theme_AppCompat_Dialog_Alert = 0x7f08007a; + public static int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f08007b; + public static int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f08007c; + public static int Base_Theme_AppCompat_Light = 0x7f080046; + public static int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f08007d; + public static int Base_Theme_AppCompat_Light_Dialog = 0x7f08000a; + public static int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f080002; + public static int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f08007e; + public static int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f08007f; + public static int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f080080; + public static int Base_V11_Theme_AppCompat_Dialog = 0x7f08000b; + public static int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f08000c; + public static int Base_V21_Theme_AppCompat = 0x7f080047; + public static int Base_V21_Theme_AppCompat_Dialog = 0x7f080048; + public static int Base_V21_Theme_AppCompat_Light = 0x7f080049; + public static int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f08004a; + public static int Base_V7_Theme_AppCompat = 0x7f080086; + public static int Base_V7_Theme_AppCompat_Dialog = 0x7f080087; + public static int Base_V7_Theme_AppCompat_Light = 0x7f080088; + public static int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f080089; + public static int Base_Widget_AppCompat_ActionBar = 0x7f08008a; + public static int Base_Widget_AppCompat_ActionBar_Solid = 0x7f08008b; + public static int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f08008c; + public static int Base_Widget_AppCompat_ActionBar_TabText = 0x7f08004b; + public static int Base_Widget_AppCompat_ActionBar_TabView = 0x7f08004c; + public static int Base_Widget_AppCompat_ActionButton = 0x7f08004d; + public static int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f08004e; + public static int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f08004f; + public static int Base_Widget_AppCompat_ActionMode = 0x7f08008d; + public static int Base_Widget_AppCompat_ActivityChooserView = 0x7f08008e; + public static int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f080050; + public static int Base_Widget_AppCompat_Button = 0x7f080051; + public static int Base_Widget_AppCompat_ButtonBar = 0x7f080055; + public static int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f080090; + public static int Base_Widget_AppCompat_Button_Borderless = 0x7f080052; + public static int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f080053; + public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f08008f; + public static int Base_Widget_AppCompat_Button_Small = 0x7f080054; + public static int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f080056; + public static int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f080057; + public static int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f080091; + public static int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f080000; + public static int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f080092; + public static int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f080058; + public static int Base_Widget_AppCompat_EditText = 0x7f080093; + public static int Base_Widget_AppCompat_Light_ActionBar = 0x7f080094; + public static int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f080095; + public static int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f080096; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f080059; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f08005a; + public static int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f08005b; + public static int Base_Widget_AppCompat_Light_PopupMenu = 0x7f08005c; + public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f08005d; + public static int Base_Widget_AppCompat_ListPopupWindow = 0x7f08005e; + public static int Base_Widget_AppCompat_ListView = 0x7f08005f; + public static int Base_Widget_AppCompat_ListView_DropDown = 0x7f080060; + public static int Base_Widget_AppCompat_ListView_Menu = 0x7f080061; + public static int Base_Widget_AppCompat_PopupMenu = 0x7f080062; + public static int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f080063; + public static int Base_Widget_AppCompat_PopupWindow = 0x7f080097; + public static int Base_Widget_AppCompat_ProgressBar = 0x7f08000d; + public static int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f08000e; + public static int Base_Widget_AppCompat_RatingBar = 0x7f080064; + public static int Base_Widget_AppCompat_SearchView = 0x7f080098; + public static int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f080099; + public static int Base_Widget_AppCompat_Spinner = 0x7f08000f; + public static int Base_Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f080065; + public static int Base_Widget_AppCompat_Spinner_Underlined = 0x7f080066; + public static int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f080067; + public static int Base_Widget_AppCompat_Toolbar = 0x7f08009a; + public static int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f080068; + public static int Platform_AppCompat = 0x7f080010; + public static int Platform_AppCompat_Light = 0x7f080011; + public static int Platform_ThemeOverlay_AppCompat_Dark = 0x7f080069; + public static int Platform_ThemeOverlay_AppCompat_Light = 0x7f08006a; + public static int Platform_V11_AppCompat = 0x7f080012; + public static int Platform_V11_AppCompat_Light = 0x7f080013; + public static int Platform_V12_AppCompat = 0x7f080014; + public static int Platform_V12_AppCompat_Light = 0x7f080015; + public static int Platform_V14_AppCompat = 0x7f080017; + public static int Platform_V14_AppCompat_Light = 0x7f080018; + public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f080019; + public static int RtlOverlay_Widget_AppCompat_ActionButton_Overflow = 0x7f08001a; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f08001b; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f08001c; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f08001d; + public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f080023; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f08001e; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f08001f; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f080020; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f080021; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f080022; + public static int RtlOverlay_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f080024; + public static int TextAppearance_AppCompat = 0x7f08009b; + public static int TextAppearance_AppCompat_Body1 = 0x7f08009c; + public static int TextAppearance_AppCompat_Body2 = 0x7f08009d; + public static int TextAppearance_AppCompat_Button = 0x7f08009e; + public static int TextAppearance_AppCompat_Caption = 0x7f08009f; + public static int TextAppearance_AppCompat_Display1 = 0x7f0800a0; + public static int TextAppearance_AppCompat_Display2 = 0x7f0800a1; + public static int TextAppearance_AppCompat_Display3 = 0x7f0800a2; + public static int TextAppearance_AppCompat_Display4 = 0x7f0800a3; + public static int TextAppearance_AppCompat_Headline = 0x7f0800a4; + public static int TextAppearance_AppCompat_Inverse = 0x7f0800a5; + public static int TextAppearance_AppCompat_Large = 0x7f0800a6; + public static int TextAppearance_AppCompat_Large_Inverse = 0x7f0800a7; + public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0800a8; + public static int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0800a9; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0800aa; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0800ab; + public static int TextAppearance_AppCompat_Medium = 0x7f0800ac; + public static int TextAppearance_AppCompat_Medium_Inverse = 0x7f0800ad; + public static int TextAppearance_AppCompat_Menu = 0x7f0800ae; + public static int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0800af; + public static int TextAppearance_AppCompat_SearchResult_Title = 0x7f0800b0; + public static int TextAppearance_AppCompat_Small = 0x7f0800b1; + public static int TextAppearance_AppCompat_Small_Inverse = 0x7f0800b2; + public static int TextAppearance_AppCompat_Subhead = 0x7f0800b3; + public static int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0800b4; + public static int TextAppearance_AppCompat_Title = 0x7f0800b5; + public static int TextAppearance_AppCompat_Title_Inverse = 0x7f0800b6; + public static int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0800b7; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0800b8; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0800b9; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0800ba; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0800bb; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0800bc; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0800bd; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0800be; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0800bf; + public static int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0800c0; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0800c1; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0800c2; + public static int TextAppearance_AppCompat_Widget_Switch = 0x7f0800c3; + public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0800c4; + public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0800c5; + public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0800c6; + public static int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0800c7; + public static int ThemeOverlay_AppCompat = 0x7f0800d6; + public static int ThemeOverlay_AppCompat_ActionBar = 0x7f0800d7; + public static int ThemeOverlay_AppCompat_Dark = 0x7f0800d8; + public static int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0800d9; + public static int ThemeOverlay_AppCompat_Light = 0x7f0800da; + public static int Theme_AppCompat = 0x7f0800c8; + public static int Theme_AppCompat_CompactMenu = 0x7f0800c9; + public static int Theme_AppCompat_Dialog = 0x7f0800ca; + public static int Theme_AppCompat_DialogWhenLarge = 0x7f0800cd; + public static int Theme_AppCompat_Dialog_Alert = 0x7f0800cb; + public static int Theme_AppCompat_Dialog_MinWidth = 0x7f0800cc; + public static int Theme_AppCompat_Light = 0x7f0800ce; + public static int Theme_AppCompat_Light_DarkActionBar = 0x7f0800cf; + public static int Theme_AppCompat_Light_Dialog = 0x7f0800d0; + public static int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0800d3; + public static int Theme_AppCompat_Light_Dialog_Alert = 0x7f0800d1; + public static int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0800d2; + public static int Theme_AppCompat_Light_NoActionBar = 0x7f0800d4; + public static int Theme_AppCompat_NoActionBar = 0x7f0800d5; + public static int Widget_AppCompat_ActionBar = 0x7f0800db; + public static int Widget_AppCompat_ActionBar_Solid = 0x7f0800dc; + public static int Widget_AppCompat_ActionBar_TabBar = 0x7f0800dd; + public static int Widget_AppCompat_ActionBar_TabText = 0x7f0800de; + public static int Widget_AppCompat_ActionBar_TabView = 0x7f0800df; + public static int Widget_AppCompat_ActionButton = 0x7f0800e0; + public static int Widget_AppCompat_ActionButton_CloseMode = 0x7f0800e1; + public static int Widget_AppCompat_ActionButton_Overflow = 0x7f0800e2; + public static int Widget_AppCompat_ActionMode = 0x7f0800e3; + public static int Widget_AppCompat_ActivityChooserView = 0x7f0800e4; + public static int Widget_AppCompat_AutoCompleteTextView = 0x7f0800e5; + public static int Widget_AppCompat_Button = 0x7f0800e6; + public static int Widget_AppCompat_ButtonBar = 0x7f0800eb; + public static int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0800ec; + public static int Widget_AppCompat_Button_Borderless = 0x7f0800e7; + public static int Widget_AppCompat_Button_Borderless_Colored = 0x7f0800e8; + public static int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0800e9; + public static int Widget_AppCompat_Button_Small = 0x7f0800ea; + public static int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0800ed; + public static int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0800ee; + public static int Widget_AppCompat_CompoundButton_Switch = 0x7f0800ef; + public static int Widget_AppCompat_DrawerArrowToggle = 0x7f0800f0; + public static int Widget_AppCompat_DropDownItem_Spinner = 0x7f0800f1; + public static int Widget_AppCompat_EditText = 0x7f0800f2; + public static int Widget_AppCompat_Light_ActionBar = 0x7f0800f3; + public static int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0800f4; + public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0800f5; + public static int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0800f6; + public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0800f7; + public static int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0800f8; + public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0800f9; + public static int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0800fa; + public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0800fb; + public static int Widget_AppCompat_Light_ActionButton = 0x7f0800fc; + public static int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0800fd; + public static int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0800fe; + public static int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0800ff; + public static int Widget_AppCompat_Light_ActivityChooserView = 0x7f080100; + public static int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f080101; + public static int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f080102; + public static int Widget_AppCompat_Light_ListPopupWindow = 0x7f080103; + public static int Widget_AppCompat_Light_ListView_DropDown = 0x7f080104; + public static int Widget_AppCompat_Light_PopupMenu = 0x7f080105; + public static int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f080106; + public static int Widget_AppCompat_Light_SearchView = 0x7f080107; + public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f080108; + public static int Widget_AppCompat_ListPopupWindow = 0x7f080109; + public static int Widget_AppCompat_ListView = 0x7f08010a; + public static int Widget_AppCompat_ListView_DropDown = 0x7f08010b; + public static int Widget_AppCompat_ListView_Menu = 0x7f08010c; + public static int Widget_AppCompat_PopupMenu = 0x7f08010d; + public static int Widget_AppCompat_PopupMenu_Overflow = 0x7f08010e; + public static int Widget_AppCompat_PopupWindow = 0x7f08010f; + public static int Widget_AppCompat_ProgressBar = 0x7f080110; + public static int Widget_AppCompat_ProgressBar_Horizontal = 0x7f080111; + public static int Widget_AppCompat_RatingBar = 0x7f080112; + public static int Widget_AppCompat_SearchView = 0x7f080113; + public static int Widget_AppCompat_SearchView_ActionBar = 0x7f080114; + public static int Widget_AppCompat_Spinner = 0x7f080115; + public static int Widget_AppCompat_Spinner_DropDown = 0x7f080116; + public static int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f080117; + public static int Widget_AppCompat_Spinner_Underlined = 0x7f080118; + public static int Widget_AppCompat_TextView_SpinnerItem = 0x7f080119; + public static int Widget_AppCompat_Toolbar = 0x7f08011a; + public static int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f08011b; + } + public static final class styleable { + public static int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01007f }; + public static int[] ActionBarLayout = { 0x010100b3 }; + public static int ActionBarLayout_android_layout_gravity = 0; + public static int ActionBar_background = 10; + public static int ActionBar_backgroundSplit = 12; + public static int ActionBar_backgroundStacked = 11; + public static int ActionBar_contentInsetEnd = 21; + public static int ActionBar_contentInsetLeft = 22; + public static int ActionBar_contentInsetRight = 23; + public static int ActionBar_contentInsetStart = 20; + public static int ActionBar_customNavigationLayout = 13; + public static int ActionBar_displayOptions = 3; + public static int ActionBar_divider = 9; + public static int ActionBar_elevation = 24; + public static int ActionBar_height = 0; + public static int ActionBar_hideOnContentScroll = 19; + public static int ActionBar_homeAsUpIndicator = 26; + public static int ActionBar_homeLayout = 14; + public static int ActionBar_icon = 7; + public static int ActionBar_indeterminateProgressStyle = 16; + public static int ActionBar_itemPadding = 18; + public static int ActionBar_logo = 8; + public static int ActionBar_navigationMode = 2; + public static int ActionBar_popupTheme = 25; + public static int ActionBar_progressBarPadding = 17; + public static int ActionBar_progressBarStyle = 15; + public static int ActionBar_subtitle = 4; + public static int ActionBar_subtitleTextStyle = 6; + public static int ActionBar_title = 1; + public static int ActionBar_titleTextStyle = 5; + public static int[] ActionMenuItemView = { 0x0101013f }; + public static int ActionMenuItemView_android_minWidth = 0; + public static int[] ActionMenuView = { }; + public static int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }; + public static int ActionMode_background = 3; + public static int ActionMode_backgroundSplit = 4; + public static int ActionMode_closeItemLayout = 5; + public static int ActionMode_height = 0; + public static int ActionMode_subtitleTextStyle = 2; + public static int ActionMode_titleTextStyle = 1; + public static int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e }; + public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + public static int ActivityChooserView_initialActivityCount = 0; + public static int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }; + public static int AlertDialog_android_layout = 0; + public static int AlertDialog_buttonPanelSideLayout = 1; + public static int AlertDialog_listItemLayout = 5; + public static int AlertDialog_listLayout = 2; + public static int AlertDialog_multiChoiceItemLayout = 3; + public static int AlertDialog_singleChoiceItemLayout = 4; + public static int[] AppCompatTextView = { 0x01010034, 0x7f010024 }; + public static int AppCompatTextView_android_textAppearance = 0; + public static int AppCompatTextView_textAllCaps = 1; + public static int[] DrawerArrowToggle = { 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f }; + public static int DrawerArrowToggle_barSize = 6; + public static int DrawerArrowToggle_color = 0; + public static int DrawerArrowToggle_drawableSize = 2; + public static int DrawerArrowToggle_gapBetweenBars = 3; + public static int DrawerArrowToggle_middleBarArrowSize = 5; + public static int DrawerArrowToggle_spinBars = 1; + public static int DrawerArrowToggle_thickness = 7; + public static int DrawerArrowToggle_topBottomBarArrowSize = 4; + public static int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010030, 0x7f010031, 0x7f010032 }; + public static int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; + public static int LinearLayoutCompat_Layout_android_layout_gravity = 0; + public static int LinearLayoutCompat_Layout_android_layout_height = 2; + public static int LinearLayoutCompat_Layout_android_layout_weight = 3; + public static int LinearLayoutCompat_Layout_android_layout_width = 1; + public static int LinearLayoutCompat_android_baselineAligned = 2; + public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + public static int LinearLayoutCompat_android_gravity = 0; + public static int LinearLayoutCompat_android_orientation = 1; + public static int LinearLayoutCompat_android_weightSum = 4; + public static int LinearLayoutCompat_divider = 5; + public static int LinearLayoutCompat_dividerPadding = 8; + public static int LinearLayoutCompat_measureWithLargestChild = 6; + public static int LinearLayoutCompat_showDividers = 7; + public static int[] ListPopupWindow = { 0x010102ac, 0x010102ad }; + public static int ListPopupWindow_android_dropDownHorizontalOffset = 0; + public static int ListPopupWindow_android_dropDownVerticalOffset = 1; + public static int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; + public static int MenuGroup_android_checkableBehavior = 5; + public static int MenuGroup_android_enabled = 0; + public static int MenuGroup_android_id = 1; + public static int MenuGroup_android_menuCategory = 3; + public static int MenuGroup_android_orderInCategory = 4; + public static int MenuGroup_android_visible = 2; + public static int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036 }; + public static int MenuItem_actionLayout = 14; + public static int MenuItem_actionProviderClass = 16; + public static int MenuItem_actionViewClass = 15; + public static int MenuItem_android_alphabeticShortcut = 9; + public static int MenuItem_android_checkable = 11; + public static int MenuItem_android_checked = 3; + public static int MenuItem_android_enabled = 1; + public static int MenuItem_android_icon = 0; + public static int MenuItem_android_id = 2; + public static int MenuItem_android_menuCategory = 5; + public static int MenuItem_android_numericShortcut = 10; + public static int MenuItem_android_onClick = 12; + public static int MenuItem_android_orderInCategory = 6; + public static int MenuItem_android_title = 7; + public static int MenuItem_android_titleCondensed = 8; + public static int MenuItem_android_visible = 4; + public static int MenuItem_showAsAction = 13; + public static int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010037 }; + public static int MenuView_android_headerBackground = 4; + public static int MenuView_android_horizontalDivider = 2; + public static int MenuView_android_itemBackground = 5; + public static int MenuView_android_itemIconDisabledAlpha = 6; + public static int MenuView_android_itemTextAppearance = 1; + public static int MenuView_android_verticalDivider = 3; + public static int MenuView_android_windowAnimationStyle = 0; + public static int MenuView_preserveIconSpacing = 7; + public static int[] PopupWindow = { 0x01010176, 0x7f010038 }; + public static int[] PopupWindowBackgroundState = { 0x7f010039 }; + public static int PopupWindowBackgroundState_state_above_anchor = 0; + public static int PopupWindow_android_popupBackground = 0; + public static int PopupWindow_overlapAnchor = 1; + public static int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045 }; + public static int SearchView_android_focusable = 0; + public static int SearchView_android_imeOptions = 3; + public static int SearchView_android_inputType = 2; + public static int SearchView_android_maxWidth = 1; + public static int SearchView_closeIcon = 7; + public static int SearchView_commitIcon = 12; + public static int SearchView_goIcon = 8; + public static int SearchView_iconifiedByDefault = 5; + public static int SearchView_layout = 4; + public static int SearchView_queryBackground = 14; + public static int SearchView_queryHint = 6; + public static int SearchView_searchHintIcon = 10; + public static int SearchView_searchIcon = 9; + public static int SearchView_submitBackground = 15; + public static int SearchView_suggestionRowLayout = 13; + public static int SearchView_voiceIcon = 11; + public static int[] Spinner = { 0x010100af, 0x010100d4, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049 }; + public static int Spinner_android_background = 1; + public static int Spinner_android_dropDownHorizontalOffset = 5; + public static int Spinner_android_dropDownSelector = 2; + public static int Spinner_android_dropDownVerticalOffset = 6; + public static int Spinner_android_dropDownWidth = 4; + public static int Spinner_android_gravity = 0; + public static int Spinner_android_popupBackground = 3; + public static int Spinner_disableChildrenWhenDisabled = 10; + public static int Spinner_popupPromptView = 9; + public static int Spinner_prompt = 7; + public static int Spinner_spinnerMode = 8; + public static int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050 }; + public static int SwitchCompat_android_textOff = 1; + public static int SwitchCompat_android_textOn = 0; + public static int SwitchCompat_android_thumb = 2; + public static int SwitchCompat_showText = 9; + public static int SwitchCompat_splitTrack = 8; + public static int SwitchCompat_switchMinWidth = 6; + public static int SwitchCompat_switchPadding = 7; + public static int SwitchCompat_switchTextAppearance = 5; + public static int SwitchCompat_thumbTextPadding = 4; + public static int SwitchCompat_track = 3; + public static int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x7f010024 }; + public static int TextAppearance_android_textColor = 3; + public static int TextAppearance_android_textSize = 0; + public static int TextAppearance_android_textStyle = 2; + public static int TextAppearance_android_typeface = 1; + public static int TextAppearance_textAllCaps = 4; + public static int[] Theme = { 0x01010057, 0x010100ae, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8 }; + public static int Theme_actionBarDivider = 23; + public static int Theme_actionBarItemBackground = 24; + public static int Theme_actionBarPopupTheme = 17; + public static int Theme_actionBarSize = 22; + public static int Theme_actionBarSplitStyle = 19; + public static int Theme_actionBarStyle = 18; + public static int Theme_actionBarTabBarStyle = 13; + public static int Theme_actionBarTabStyle = 12; + public static int Theme_actionBarTabTextStyle = 14; + public static int Theme_actionBarTheme = 20; + public static int Theme_actionBarWidgetTheme = 21; + public static int Theme_actionButtonStyle = 49; + public static int Theme_actionDropDownStyle = 45; + public static int Theme_actionMenuTextAppearance = 25; + public static int Theme_actionMenuTextColor = 26; + public static int Theme_actionModeBackground = 29; + public static int Theme_actionModeCloseButtonStyle = 28; + public static int Theme_actionModeCloseDrawable = 31; + public static int Theme_actionModeCopyDrawable = 33; + public static int Theme_actionModeCutDrawable = 32; + public static int Theme_actionModeFindDrawable = 37; + public static int Theme_actionModePasteDrawable = 34; + public static int Theme_actionModePopupWindowStyle = 39; + public static int Theme_actionModeSelectAllDrawable = 35; + public static int Theme_actionModeShareDrawable = 36; + public static int Theme_actionModeSplitBackground = 30; + public static int Theme_actionModeStyle = 27; + public static int Theme_actionModeWebSearchDrawable = 38; + public static int Theme_actionOverflowButtonStyle = 15; + public static int Theme_actionOverflowMenuStyle = 16; + public static int Theme_activityChooserViewStyle = 56; + public static int Theme_alertDialogButtonGroupStyle = 89; + public static int Theme_alertDialogCenterButtons = 90; + public static int Theme_alertDialogStyle = 88; + public static int Theme_alertDialogTheme = 91; + public static int Theme_android_windowAnimationStyle = 1; + public static int Theme_android_windowIsFloating = 0; + public static int Theme_autoCompleteTextViewStyle = 96; + public static int Theme_buttonBarButtonStyle = 51; + public static int Theme_buttonBarNegativeButtonStyle = 94; + public static int Theme_buttonBarNeutralButtonStyle = 95; + public static int Theme_buttonBarPositiveButtonStyle = 93; + public static int Theme_buttonBarStyle = 50; + public static int Theme_buttonStyle = 97; + public static int Theme_buttonStyleSmall = 98; + public static int Theme_checkboxStyle = 99; + public static int Theme_checkedTextViewStyle = 100; + public static int Theme_colorAccent = 82; + public static int Theme_colorButtonNormal = 86; + public static int Theme_colorControlActivated = 84; + public static int Theme_colorControlHighlight = 85; + public static int Theme_colorControlNormal = 83; + public static int Theme_colorPrimary = 80; + public static int Theme_colorPrimaryDark = 81; + public static int Theme_colorSwitchThumbNormal = 87; + public static int Theme_dialogPreferredPadding = 43; + public static int Theme_dialogTheme = 42; + public static int Theme_dividerHorizontal = 55; + public static int Theme_dividerVertical = 54; + public static int Theme_dropDownListViewStyle = 72; + public static int Theme_dropdownListPreferredItemHeight = 46; + public static int Theme_editTextBackground = 62; + public static int Theme_editTextColor = 61; + public static int Theme_editTextStyle = 101; + public static int Theme_homeAsUpIndicator = 48; + public static int Theme_listChoiceBackgroundIndicator = 79; + public static int Theme_listDividerAlertDialog = 44; + public static int Theme_listPopupWindowStyle = 73; + public static int Theme_listPreferredItemHeight = 67; + public static int Theme_listPreferredItemHeightLarge = 69; + public static int Theme_listPreferredItemHeightSmall = 68; + public static int Theme_listPreferredItemPaddingLeft = 70; + public static int Theme_listPreferredItemPaddingRight = 71; + public static int Theme_panelBackground = 76; + public static int Theme_panelMenuListTheme = 78; + public static int Theme_panelMenuListWidth = 77; + public static int Theme_popupMenuStyle = 59; + public static int Theme_popupWindowStyle = 60; + public static int Theme_radioButtonStyle = 102; + public static int Theme_ratingBarStyle = 103; + public static int Theme_searchViewStyle = 66; + public static int Theme_selectableItemBackground = 52; + public static int Theme_selectableItemBackgroundBorderless = 53; + public static int Theme_spinnerDropDownItemStyle = 47; + public static int Theme_spinnerStyle = 104; + public static int Theme_switchStyle = 105; + public static int Theme_textAppearanceLargePopupMenu = 40; + public static int Theme_textAppearanceListItem = 74; + public static int Theme_textAppearanceListItemSmall = 75; + public static int Theme_textAppearanceSearchResultSubtitle = 64; + public static int Theme_textAppearanceSearchResultTitle = 63; + public static int Theme_textAppearanceSmallPopupMenu = 41; + public static int Theme_textColorAlertDialogListItem = 92; + public static int Theme_textColorSearchUrl = 65; + public static int Theme_toolbarNavigationButtonStyle = 58; + public static int Theme_toolbarStyle = 57; + public static int Theme_windowActionBar = 2; + public static int Theme_windowActionBarOverlay = 4; + public static int Theme_windowActionModeOverlay = 5; + public static int Theme_windowFixedHeightMajor = 9; + public static int Theme_windowFixedHeightMinor = 7; + public static int Theme_windowFixedWidthMajor = 6; + public static int Theme_windowFixedWidthMinor = 8; + public static int Theme_windowMinWidthMajor = 10; + public static int Theme_windowMinWidthMinor = 11; + public static int Theme_windowNoTitle = 3; + public static int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4 }; + public static int Toolbar_android_gravity = 0; + public static int Toolbar_android_minHeight = 1; + public static int Toolbar_collapseContentDescription = 18; + public static int Toolbar_collapseIcon = 17; + public static int Toolbar_contentInsetEnd = 5; + public static int Toolbar_contentInsetLeft = 6; + public static int Toolbar_contentInsetRight = 7; + public static int Toolbar_contentInsetStart = 4; + public static int Toolbar_maxButtonHeight = 16; + public static int Toolbar_navigationContentDescription = 20; + public static int Toolbar_navigationIcon = 19; + public static int Toolbar_popupTheme = 8; + public static int Toolbar_subtitle = 3; + public static int Toolbar_subtitleTextAppearance = 10; + public static int Toolbar_title = 2; + public static int Toolbar_titleMarginBottom = 15; + public static int Toolbar_titleMarginEnd = 13; + public static int Toolbar_titleMarginStart = 12; + public static int Toolbar_titleMarginTop = 14; + public static int Toolbar_titleMargins = 11; + public static int Toolbar_titleTextAppearance = 9; + public static int[] View = { 0x01010000, 0x010100da, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9 }; + public static int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 }; + public static int ViewStubCompat_android_id = 0; + public static int ViewStubCompat_android_inflatedId = 2; + public static int ViewStubCompat_android_layout = 1; + public static int View_android_focusable = 1; + public static int View_android_theme = 0; + public static int View_backgroundTint = 5; + public static int View_backgroundTintMode = 6; + public static int View_paddingEnd = 3; + public static int View_paddingStart = 2; + public static int View_theme = 4; + } +} diff --git a/circlerefresh/build/generated/source/r/release/com/tuesda/walker/circlerefresh/R.java b/circlerefresh/build/generated/source/r/release/com/tuesda/walker/circlerefresh/R.java deleted file mode 100644 index ecab9e8..0000000 --- a/circlerefresh/build/generated/source/r/release/com/tuesda/walker/circlerefresh/R.java +++ /dev/null @@ -1,5984 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * aapt tool from the resource data it found. It - * should not be modified by hand. - */ - -package com.tuesda.walker.circlerefresh; - -public final class R { - public static final class anim { - public static int abc_fade_in=0x7f050000; - public static int abc_fade_out=0x7f050001; - public static int abc_grow_fade_in_from_bottom=0x7f050002; - public static int abc_popup_enter=0x7f050003; - public static int abc_popup_exit=0x7f050004; - public static int abc_shrink_fade_out_from_bottom=0x7f050005; - public static int abc_slide_in_bottom=0x7f050006; - public static int abc_slide_in_top=0x7f050007; - public static int abc_slide_out_bottom=0x7f050008; - public static int abc_slide_out_top=0x7f050009; - } - public static final class attr { - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int AniBackColor=0x7f010025; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int AniForeColor=0x7f010026; - /**

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int CircleSmaller=0x7f010027; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionBarDivider=0x7f010066; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionBarItemBackground=0x7f010067; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionBarPopupTheme=0x7f010060; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. -

May be one of the following constant values.

- ---- - -
ConstantValueDescription
wrap_content0
- */ - public static int actionBarSize=0x7f010065; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionBarSplitStyle=0x7f010062; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionBarStyle=0x7f010061; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionBarTabBarStyle=0x7f01005c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionBarTabStyle=0x7f01005b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionBarTabTextStyle=0x7f01005d; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionBarTheme=0x7f010063; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionBarWidgetTheme=0x7f010064; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionButtonStyle=0x7f010080; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionDropDownStyle=0x7f01007c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionLayout=0x7f010034; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionMenuTextAppearance=0x7f010068; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static int actionMenuTextColor=0x7f010069; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionModeBackground=0x7f01006c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionModeCloseButtonStyle=0x7f01006b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionModeCloseDrawable=0x7f01006e; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionModeCopyDrawable=0x7f010070; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionModeCutDrawable=0x7f01006f; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionModeFindDrawable=0x7f010074; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionModePasteDrawable=0x7f010071; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionModePopupWindowStyle=0x7f010076; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionModeSelectAllDrawable=0x7f010072; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionModeShareDrawable=0x7f010073; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionModeSplitBackground=0x7f01006d; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionModeStyle=0x7f01006a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionModeWebSearchDrawable=0x7f010075; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionOverflowButtonStyle=0x7f01005e; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int actionOverflowMenuStyle=0x7f01005f; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int actionProviderClass=0x7f010036; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int actionViewClass=0x7f010035; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int activityChooserViewStyle=0x7f010087; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int alertDialogButtonGroupStyle=0x7f0100a8; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int alertDialogCenterButtons=0x7f0100a9; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int alertDialogStyle=0x7f0100a7; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int alertDialogTheme=0x7f0100aa; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int autoCompleteTextViewStyle=0x7f0100af; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int background=0x7f01000c; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static int backgroundSplit=0x7f01000e; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static int backgroundStacked=0x7f01000d; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int backgroundTint=0x7f0100c8; - /**

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- */ - public static int backgroundTintMode=0x7f0100c9; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int barSize=0x7f01002e; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int buttonBarButtonStyle=0x7f010082; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int buttonBarNegativeButtonStyle=0x7f0100ad; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int buttonBarNeutralButtonStyle=0x7f0100ae; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int buttonBarPositiveButtonStyle=0x7f0100ac; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int buttonBarStyle=0x7f010081; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int buttonPanelSideLayout=0x7f01001f; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int buttonStyle=0x7f0100b0; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int buttonStyleSmall=0x7f0100b1; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int checkboxStyle=0x7f0100b2; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int checkedTextViewStyle=0x7f0100b3; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int closeIcon=0x7f01003d; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int closeItemLayout=0x7f01001c; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int collapseContentDescription=0x7f0100c2; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int collapseIcon=0x7f0100c1; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int color=0x7f010028; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int colorAccent=0x7f0100a1; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int colorButtonNormal=0x7f0100a5; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int colorControlActivated=0x7f0100a3; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int colorControlHighlight=0x7f0100a4; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int colorControlNormal=0x7f0100a2; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int colorPrimary=0x7f01009f; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int colorPrimaryDark=0x7f0100a0; - /**

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int colorSwitchThumbNormal=0x7f0100a6; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int commitIcon=0x7f010042; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int contentInsetEnd=0x7f010017; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int contentInsetLeft=0x7f010018; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int contentInsetRight=0x7f010019; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int contentInsetStart=0x7f010016; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int customNavigationLayout=0x7f01000f; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int dialogPreferredPadding=0x7f01007a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int dialogTheme=0x7f010079; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int disableChildrenWhenDisabled=0x7f010049; - /**

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

- ---- - - - - - - - -
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
- */ - public static int displayOptions=0x7f010005; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int divider=0x7f01000b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int dividerHorizontal=0x7f010086; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int dividerPadding=0x7f010032; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int dividerVertical=0x7f010085; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int drawableSize=0x7f01002a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int drawerArrowStyle=0x7f010000; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int dropDownListViewStyle=0x7f010097; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int dropdownListPreferredItemHeight=0x7f01007d; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int editTextBackground=0x7f01008d; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static int editTextColor=0x7f01008c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int editTextStyle=0x7f0100b4; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int elevation=0x7f01001a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int expandActivityOverflowButtonDrawable=0x7f01001e; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int gapBetweenBars=0x7f01002b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int goIcon=0x7f01003e; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int height=0x7f010001; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int hideOnContentScroll=0x7f010015; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int homeAsUpIndicator=0x7f01007f; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int homeLayout=0x7f010010; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int icon=0x7f010009; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int iconifiedByDefault=0x7f01003b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int indeterminateProgressStyle=0x7f010012; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int initialActivityCount=0x7f01001d; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int isLightTheme=0x7f010002; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int itemPadding=0x7f010014; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int layout=0x7f01003a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int listChoiceBackgroundIndicator=0x7f01009e; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int listDividerAlertDialog=0x7f01007b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int listItemLayout=0x7f010023; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int listLayout=0x7f010020; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int listPopupWindowStyle=0x7f010098; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int listPreferredItemHeight=0x7f010092; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int listPreferredItemHeightLarge=0x7f010094; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int listPreferredItemHeightSmall=0x7f010093; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int listPreferredItemPaddingLeft=0x7f010095; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int listPreferredItemPaddingRight=0x7f010096; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int logo=0x7f01000a; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int maxButtonHeight=0x7f0100c0; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int measureWithLargestChild=0x7f010030; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int middleBarArrowSize=0x7f01002d; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int multiChoiceItemLayout=0x7f010021; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int navigationContentDescription=0x7f0100c4; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int navigationIcon=0x7f0100c3; - /**

Must be one of the following constant values.

- ---- - - - -
ConstantValueDescription
normal0
listMode1
tabMode2
- */ - public static int navigationMode=0x7f010004; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int overlapAnchor=0x7f010038; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int paddingEnd=0x7f0100c6; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int paddingStart=0x7f0100c5; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int panelBackground=0x7f01009b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int panelMenuListTheme=0x7f01009d; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int panelMenuListWidth=0x7f01009c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int popupMenuStyle=0x7f01008a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int popupPromptView=0x7f010048; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int popupTheme=0x7f01001b; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int popupWindowStyle=0x7f01008b; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int preserveIconSpacing=0x7f010037; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int progressBarPadding=0x7f010013; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int progressBarStyle=0x7f010011; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int prompt=0x7f010046; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int queryBackground=0x7f010044; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int queryHint=0x7f01003c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int radioButtonStyle=0x7f0100b5; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int ratingBarStyle=0x7f0100b6; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int searchHintIcon=0x7f010040; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int searchIcon=0x7f01003f; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int searchViewStyle=0x7f010091; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int selectableItemBackground=0x7f010083; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int selectableItemBackgroundBorderless=0x7f010084; - /**

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

- ---- - - - - - -
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
- */ - public static int showAsAction=0x7f010033; - /**

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

- ---- - - - - -
ConstantValueDescription
none0
beginning1
middle2
end4
- */ - public static int showDividers=0x7f010031; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int showText=0x7f010050; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int singleChoiceItemLayout=0x7f010022; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int spinBars=0x7f010029; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int spinnerDropDownItemStyle=0x7f01007e; - /**

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
dialog0
dropdown1
- */ - public static int spinnerMode=0x7f010047; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int spinnerStyle=0x7f0100b7; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int splitTrack=0x7f01004f; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int state_above_anchor=0x7f010039; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int submitBackground=0x7f010045; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int subtitle=0x7f010006; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int subtitleTextAppearance=0x7f0100ba; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int subtitleTextStyle=0x7f010008; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int suggestionRowLayout=0x7f010043; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int switchMinWidth=0x7f01004d; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int switchPadding=0x7f01004e; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int switchStyle=0x7f0100b8; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int switchTextAppearance=0x7f01004c; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a boolean value, either "true" or "false". - */ - public static int textAllCaps=0x7f010024; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int textAppearanceLargePopupMenu=0x7f010077; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int textAppearanceListItem=0x7f010099; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int textAppearanceListItemSmall=0x7f01009a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int textAppearanceSearchResultSubtitle=0x7f01008f; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int textAppearanceSearchResultTitle=0x7f01008e; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int textAppearanceSmallPopupMenu=0x7f010078; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static int textColorAlertDialogListItem=0x7f0100ab; - /**

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - */ - public static int textColorSearchUrl=0x7f010090; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int theme=0x7f0100c7; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int thickness=0x7f01002f; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int thumbTextPadding=0x7f01004b; - /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int title=0x7f010003; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int titleMarginBottom=0x7f0100bf; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int titleMarginEnd=0x7f0100bd; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int titleMarginStart=0x7f0100bc; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int titleMarginTop=0x7f0100be; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int titleMargins=0x7f0100bb; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int titleTextAppearance=0x7f0100b9; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int titleTextStyle=0x7f010007; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int toolbarNavigationButtonStyle=0x7f010089; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int toolbarStyle=0x7f010088; - /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int topBottomBarArrowSize=0x7f01002c; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int track=0x7f01004a; - /**

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - */ - public static int voiceIcon=0x7f010041; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int windowActionBar=0x7f010051; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int windowActionBarOverlay=0x7f010053; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int windowActionModeOverlay=0x7f010054; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int windowFixedHeightMajor=0x7f010058; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int windowFixedHeightMinor=0x7f010056; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int windowFixedWidthMajor=0x7f010055; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int windowFixedWidthMinor=0x7f010057; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int windowMinWidthMajor=0x7f010059; - /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int windowMinWidthMinor=0x7f01005a; - /**

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - */ - public static int windowNoTitle=0x7f010052; - } - public static final class bool { - public static int abc_action_bar_embed_tabs=0x7f090002; - public static int abc_action_bar_embed_tabs_pre_jb=0x7f090000; - public static int abc_action_bar_expanded_action_views_exclusive=0x7f090003; - public static int abc_config_actionMenuItemAllCaps=0x7f090004; - public static int abc_config_allowActionMenuItemTextWithIcon=0x7f090001; - public static int abc_config_closeDialogWhenTouchOutside=0x7f090005; - public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f090006; - } - public static final class color { - public static int abc_background_cache_hint_selector_material_dark=0x7f0b0033; - public static int abc_background_cache_hint_selector_material_light=0x7f0b0034; - public static int abc_input_method_navigation_guard=0x7f0b0000; - public static int abc_primary_text_disable_only_material_dark=0x7f0b0035; - public static int abc_primary_text_disable_only_material_light=0x7f0b0036; - public static int abc_primary_text_material_dark=0x7f0b0037; - public static int abc_primary_text_material_light=0x7f0b0038; - public static int abc_search_url_text=0x7f0b0039; - public static int abc_search_url_text_normal=0x7f0b0001; - public static int abc_search_url_text_pressed=0x7f0b0002; - public static int abc_search_url_text_selected=0x7f0b0003; - public static int abc_secondary_text_material_dark=0x7f0b003a; - public static int abc_secondary_text_material_light=0x7f0b003b; - public static int accent_material_dark=0x7f0b0004; - public static int accent_material_light=0x7f0b0005; - public static int background_floating_material_dark=0x7f0b0006; - public static int background_floating_material_light=0x7f0b0007; - public static int background_material_dark=0x7f0b0008; - public static int background_material_light=0x7f0b0009; - public static int bright_foreground_disabled_material_dark=0x7f0b000a; - public static int bright_foreground_disabled_material_light=0x7f0b000b; - public static int bright_foreground_inverse_material_dark=0x7f0b000c; - public static int bright_foreground_inverse_material_light=0x7f0b000d; - public static int bright_foreground_material_dark=0x7f0b000e; - public static int bright_foreground_material_light=0x7f0b000f; - public static int button_material_dark=0x7f0b0010; - public static int button_material_light=0x7f0b0011; - public static int dim_foreground_disabled_material_dark=0x7f0b0012; - public static int dim_foreground_disabled_material_light=0x7f0b0013; - public static int dim_foreground_material_dark=0x7f0b0014; - public static int dim_foreground_material_light=0x7f0b0015; - public static int highlighted_text_material_dark=0x7f0b0016; - public static int highlighted_text_material_light=0x7f0b0017; - public static int hint_foreground_material_dark=0x7f0b0018; - public static int hint_foreground_material_light=0x7f0b0019; - public static int link_text_material_dark=0x7f0b001a; - public static int link_text_material_light=0x7f0b001b; - public static int material_blue_grey_800=0x7f0b001c; - public static int material_blue_grey_900=0x7f0b001d; - public static int material_blue_grey_950=0x7f0b001e; - public static int material_deep_teal_200=0x7f0b001f; - public static int material_deep_teal_500=0x7f0b0020; - public static int primary_dark_material_dark=0x7f0b0021; - public static int primary_dark_material_light=0x7f0b0022; - public static int primary_material_dark=0x7f0b0023; - public static int primary_material_light=0x7f0b0024; - public static int primary_text_default_material_dark=0x7f0b0025; - public static int primary_text_default_material_light=0x7f0b0026; - public static int primary_text_disabled_material_dark=0x7f0b0027; - public static int primary_text_disabled_material_light=0x7f0b0028; - public static int ripple_material_dark=0x7f0b0029; - public static int ripple_material_light=0x7f0b002a; - public static int secondary_text_default_material_dark=0x7f0b002b; - public static int secondary_text_default_material_light=0x7f0b002c; - public static int secondary_text_disabled_material_dark=0x7f0b002d; - public static int secondary_text_disabled_material_light=0x7f0b002e; - public static int switch_thumb_disabled_material_dark=0x7f0b002f; - public static int switch_thumb_disabled_material_light=0x7f0b0030; - public static int switch_thumb_material_dark=0x7f0b003c; - public static int switch_thumb_material_light=0x7f0b003d; - public static int switch_thumb_normal_material_dark=0x7f0b0031; - public static int switch_thumb_normal_material_light=0x7f0b0032; - } - public static final class dimen { - public static int abc_action_bar_content_inset_material=0x7f07000c; - public static int abc_action_bar_default_height_material=0x7f070001; - public static int abc_action_bar_default_padding_material=0x7f070002; - public static int abc_action_bar_icon_vertical_padding_material=0x7f070011; - public static int abc_action_bar_navigation_padding_start_material=0x7f07000d; - public static int abc_action_bar_overflow_padding_end_material=0x7f07000e; - public static int abc_action_bar_overflow_padding_start_material=0x7f070012; - public static int abc_action_bar_progress_bar_size=0x7f070003; - public static int abc_action_bar_stacked_max_height=0x7f070013; - public static int abc_action_bar_stacked_tab_max_width=0x7f070014; - public static int abc_action_bar_subtitle_bottom_margin_material=0x7f070015; - public static int abc_action_bar_subtitle_top_margin_material=0x7f070016; - public static int abc_action_button_min_height_material=0x7f070017; - public static int abc_action_button_min_width_material=0x7f070018; - public static int abc_action_button_min_width_overflow_material=0x7f070019; - public static int abc_alert_dialog_button_bar_height=0x7f070000; - public static int abc_button_inset_horizontal_material=0x7f07001a; - public static int abc_button_inset_vertical_material=0x7f07001b; - public static int abc_button_padding_horizontal_material=0x7f07001c; - public static int abc_button_padding_vertical_material=0x7f07001d; - public static int abc_config_prefDialogWidth=0x7f070006; - public static int abc_control_corner_material=0x7f07001e; - public static int abc_control_inset_material=0x7f07001f; - public static int abc_control_padding_material=0x7f070020; - public static int abc_dialog_list_padding_vertical_material=0x7f070021; - public static int abc_dialog_min_width_major=0x7f070022; - public static int abc_dialog_min_width_minor=0x7f070023; - public static int abc_dialog_padding_material=0x7f070024; - public static int abc_dialog_padding_top_material=0x7f070025; - public static int abc_disabled_alpha_material_dark=0x7f070026; - public static int abc_disabled_alpha_material_light=0x7f070027; - public static int abc_dropdownitem_icon_width=0x7f070028; - public static int abc_dropdownitem_text_padding_left=0x7f070029; - public static int abc_dropdownitem_text_padding_right=0x7f07002a; - public static int abc_edit_text_inset_bottom_material=0x7f07002b; - public static int abc_edit_text_inset_horizontal_material=0x7f07002c; - public static int abc_edit_text_inset_top_material=0x7f07002d; - public static int abc_floating_window_z=0x7f07002e; - public static int abc_list_item_padding_horizontal_material=0x7f07002f; - public static int abc_panel_menu_list_width=0x7f070030; - public static int abc_search_view_preferred_width=0x7f070031; - public static int abc_search_view_text_min_width=0x7f070007; - public static int abc_switch_padding=0x7f07000f; - public static int abc_text_size_body_1_material=0x7f070032; - public static int abc_text_size_body_2_material=0x7f070033; - public static int abc_text_size_button_material=0x7f070034; - public static int abc_text_size_caption_material=0x7f070035; - public static int abc_text_size_display_1_material=0x7f070036; - public static int abc_text_size_display_2_material=0x7f070037; - public static int abc_text_size_display_3_material=0x7f070038; - public static int abc_text_size_display_4_material=0x7f070039; - public static int abc_text_size_headline_material=0x7f07003a; - public static int abc_text_size_large_material=0x7f07003b; - public static int abc_text_size_medium_material=0x7f07003c; - public static int abc_text_size_menu_material=0x7f07003d; - public static int abc_text_size_small_material=0x7f07003e; - public static int abc_text_size_subhead_material=0x7f07003f; - public static int abc_text_size_subtitle_material_toolbar=0x7f070004; - public static int abc_text_size_title_material=0x7f070040; - public static int abc_text_size_title_material_toolbar=0x7f070005; - public static int activity_horizontal_margin=0x7f070010; - public static int activity_vertical_margin=0x7f070041; - public static int dialog_fixed_height_major=0x7f070008; - public static int dialog_fixed_height_minor=0x7f070009; - public static int dialog_fixed_width_major=0x7f07000a; - public static int dialog_fixed_width_minor=0x7f07000b; - public static int disabled_alpha_material_dark=0x7f070042; - public static int disabled_alpha_material_light=0x7f070043; - } - public static final class drawable { - public static int abc_ab_share_pack_mtrl_alpha=0x7f020000; - public static int abc_btn_borderless_material=0x7f020001; - public static int abc_btn_check_material=0x7f020002; - public static int abc_btn_check_to_on_mtrl_000=0x7f020003; - public static int abc_btn_check_to_on_mtrl_015=0x7f020004; - public static int abc_btn_default_mtrl_shape=0x7f020005; - public static int abc_btn_radio_material=0x7f020006; - public static int abc_btn_radio_to_on_mtrl_000=0x7f020007; - public static int abc_btn_radio_to_on_mtrl_015=0x7f020008; - public static int abc_btn_rating_star_off_mtrl_alpha=0x7f020009; - public static int abc_btn_rating_star_on_mtrl_alpha=0x7f02000a; - public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; - public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; - public static int abc_cab_background_internal_bg=0x7f02000d; - public static int abc_cab_background_top_material=0x7f02000e; - public static int abc_cab_background_top_mtrl_alpha=0x7f02000f; - public static int abc_dialog_material_background_dark=0x7f020010; - public static int abc_dialog_material_background_light=0x7f020011; - public static int abc_edit_text_material=0x7f020012; - public static int abc_ic_ab_back_mtrl_am_alpha=0x7f020013; - public static int abc_ic_clear_mtrl_alpha=0x7f020014; - public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020015; - public static int abc_ic_go_search_api_mtrl_alpha=0x7f020016; - public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f020017; - public static int abc_ic_menu_cut_mtrl_alpha=0x7f020018; - public static int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f020019; - public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001a; - public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001b; - public static int abc_ic_menu_share_mtrl_alpha=0x7f02001c; - public static int abc_ic_search_api_mtrl_alpha=0x7f02001d; - public static int abc_ic_voice_search_api_mtrl_alpha=0x7f02001e; - public static int abc_item_background_holo_dark=0x7f02001f; - public static int abc_item_background_holo_light=0x7f020020; - public static int abc_list_divider_mtrl_alpha=0x7f020021; - public static int abc_list_focused_holo=0x7f020022; - public static int abc_list_longpressed_holo=0x7f020023; - public static int abc_list_pressed_holo_dark=0x7f020024; - public static int abc_list_pressed_holo_light=0x7f020025; - public static int abc_list_selector_background_transition_holo_dark=0x7f020026; - public static int abc_list_selector_background_transition_holo_light=0x7f020027; - public static int abc_list_selector_disabled_holo_dark=0x7f020028; - public static int abc_list_selector_disabled_holo_light=0x7f020029; - public static int abc_list_selector_holo_dark=0x7f02002a; - public static int abc_list_selector_holo_light=0x7f02002b; - public static int abc_menu_hardkey_panel_mtrl_mult=0x7f02002c; - public static int abc_popup_background_mtrl_mult=0x7f02002d; - public static int abc_ratingbar_full_material=0x7f02002e; - public static int abc_spinner_mtrl_am_alpha=0x7f02002f; - public static int abc_spinner_textfield_background_material=0x7f020030; - public static int abc_switch_thumb_material=0x7f020031; - public static int abc_switch_track_mtrl_alpha=0x7f020032; - public static int abc_tab_indicator_material=0x7f020033; - public static int abc_tab_indicator_mtrl_alpha=0x7f020034; - public static int abc_text_cursor_mtrl_alpha=0x7f020035; - public static int abc_textfield_activated_mtrl_alpha=0x7f020036; - public static int abc_textfield_default_mtrl_alpha=0x7f020037; - public static int abc_textfield_search_activated_mtrl_alpha=0x7f020038; - public static int abc_textfield_search_default_mtrl_alpha=0x7f020039; - public static int abc_textfield_search_material=0x7f02003a; - } - public static final class id { - public static int action_bar=0x7f0c0040; - public static int action_bar_activity_content=0x7f0c0000; - public static int action_bar_container=0x7f0c003f; - public static int action_bar_root=0x7f0c003b; - public static int action_bar_spinner=0x7f0c0001; - public static int action_bar_subtitle=0x7f0c0024; - public static int action_bar_title=0x7f0c0023; - public static int action_context_bar=0x7f0c0041; - public static int action_menu_divider=0x7f0c0002; - public static int action_menu_presenter=0x7f0c0003; - public static int action_mode_bar=0x7f0c003d; - public static int action_mode_bar_stub=0x7f0c003c; - public static int action_mode_close_button=0x7f0c0025; - public static int action_settings=0x7f0c0051; - public static int activity_chooser_view_content=0x7f0c0026; - public static int alertTitle=0x7f0c0030; - public static int always=0x7f0c0016; - public static int beginning=0x7f0c0013; - public static int buttonPanel=0x7f0c0036; - public static int checkbox=0x7f0c0038; - public static int collapseActionView=0x7f0c0017; - public static int contentPanel=0x7f0c0031; - public static int custom=0x7f0c0035; - public static int customPanel=0x7f0c0034; - public static int decor_content_parent=0x7f0c003e; - public static int default_activity_button=0x7f0c0029; - public static int dialog=0x7f0c001b; - public static int disableHome=0x7f0c000c; - public static int dropdown=0x7f0c001c; - public static int edit_query=0x7f0c0042; - public static int end=0x7f0c0014; - public static int expand_activities_button=0x7f0c0027; - public static int expanded_menu=0x7f0c0037; - public static int home=0x7f0c0004; - public static int homeAsUp=0x7f0c000d; - public static int icon=0x7f0c002b; - public static int ifRoom=0x7f0c0018; - public static int image=0x7f0c0028; - public static int list=0x7f0c0050; - public static int listMode=0x7f0c0009; - public static int list_item=0x7f0c002a; - public static int middle=0x7f0c0015; - public static int multiply=0x7f0c001e; - public static int never=0x7f0c0019; - public static int none=0x7f0c000e; - public static int normal=0x7f0c000a; - public static int parentPanel=0x7f0c002d; - public static int progress_circular=0x7f0c0005; - public static int progress_horizontal=0x7f0c0006; - public static int radio=0x7f0c003a; - public static int refresh_layout=0x7f0c004f; - public static int screen=0x7f0c001f; - public static int scrollView=0x7f0c0032; - public static int search_badge=0x7f0c0044; - public static int search_bar=0x7f0c0043; - public static int search_button=0x7f0c0045; - public static int search_close_btn=0x7f0c004a; - public static int search_edit_frame=0x7f0c0046; - public static int search_go_btn=0x7f0c004c; - public static int search_mag_icon=0x7f0c0047; - public static int search_plate=0x7f0c0048; - public static int search_src_text=0x7f0c0049; - public static int search_voice_btn=0x7f0c004d; - public static int select_dialog_listview=0x7f0c004e; - public static int shortcut=0x7f0c0039; - public static int showCustom=0x7f0c000f; - public static int showHome=0x7f0c0010; - public static int showTitle=0x7f0c0011; - public static int split_action_bar=0x7f0c0007; - public static int src_atop=0x7f0c0020; - public static int src_in=0x7f0c0021; - public static int src_over=0x7f0c0022; - public static int submit_area=0x7f0c004b; - public static int tabMode=0x7f0c000b; - public static int textSpacerNoButtons=0x7f0c0033; - public static int title=0x7f0c002c; - public static int title_template=0x7f0c002f; - public static int topPanel=0x7f0c002e; - public static int up=0x7f0c0008; - public static int useLogo=0x7f0c0012; - public static int withText=0x7f0c001a; - public static int wrap_content=0x7f0c001d; - } - public static final class integer { - public static int abc_config_activityDefaultDur=0x7f0a0001; - public static int abc_config_activityShortDur=0x7f0a0002; - public static int abc_max_action_buttons=0x7f0a0000; - } - public static final class layout { - public static int abc_action_bar_title_item=0x7f040000; - public static int abc_action_bar_up_container=0x7f040001; - public static int abc_action_bar_view_list_nav_layout=0x7f040002; - public static int abc_action_menu_item_layout=0x7f040003; - public static int abc_action_menu_layout=0x7f040004; - public static int abc_action_mode_bar=0x7f040005; - public static int abc_action_mode_close_item_material=0x7f040006; - public static int abc_activity_chooser_view=0x7f040007; - public static int abc_activity_chooser_view_list_item=0x7f040008; - public static int abc_alert_dialog_material=0x7f040009; - public static int abc_dialog_title_material=0x7f04000a; - public static int abc_expanded_menu_layout=0x7f04000b; - public static int abc_list_menu_item_checkbox=0x7f04000c; - public static int abc_list_menu_item_icon=0x7f04000d; - public static int abc_list_menu_item_layout=0x7f04000e; - public static int abc_list_menu_item_radio=0x7f04000f; - public static int abc_popup_menu_item_layout=0x7f040010; - public static int abc_screen_content_include=0x7f040011; - public static int abc_screen_simple=0x7f040012; - public static int abc_screen_simple_overlay_action_mode=0x7f040013; - public static int abc_screen_toolbar=0x7f040014; - public static int abc_search_dropdown_item_icons_2line=0x7f040015; - public static int abc_search_view=0x7f040016; - public static int abc_select_dialog_material=0x7f040017; - public static int abc_simple_dropdown_hint=0x7f040018; - public static int activity_main=0x7f040019; - public static int select_dialog_item_material=0x7f04001a; - public static int select_dialog_multichoice_material=0x7f04001b; - public static int select_dialog_singlechoice_material=0x7f04001c; - public static int support_simple_spinner_dropdown_item=0x7f04001d; - } - public static final class menu { - public static int menu_main=0x7f0d0000; - } - public static final class mipmap { - public static int ic_launcher=0x7f030000; - } - public static final class string { - public static int abc_action_bar_home_description=0x7f060000; - public static int abc_action_bar_home_description_format=0x7f06000d; - public static int abc_action_bar_home_subtitle_description_format=0x7f06000e; - public static int abc_action_bar_up_description=0x7f060001; - public static int abc_action_menu_overflow_description=0x7f060002; - public static int abc_action_mode_done=0x7f060003; - public static int abc_activity_chooser_view_see_all=0x7f060004; - public static int abc_activitychooserview_choose_application=0x7f060005; - public static int abc_search_hint=0x7f06000f; - public static int abc_searchview_description_clear=0x7f060006; - public static int abc_searchview_description_query=0x7f060007; - public static int abc_searchview_description_search=0x7f060008; - public static int abc_searchview_description_submit=0x7f060009; - public static int abc_searchview_description_voice=0x7f06000a; - public static int abc_shareactionprovider_share_with=0x7f06000b; - public static int abc_shareactionprovider_share_with_application=0x7f06000c; - public static int abc_toolbar_collapse_description=0x7f060010; - public static int action_settings=0x7f060011; - public static int app_name=0x7f060012; - public static int hello_world=0x7f060013; - } - public static final class style { - public static int AlertDialog_AppCompat=0x7f08006b; - public static int AlertDialog_AppCompat_Light=0x7f08006c; - public static int Animation_AppCompat_Dialog=0x7f08006d; - public static int Animation_AppCompat_DropDownUp=0x7f08006e; - /** Customize your theme here. - */ - public static int AppTheme=0x7f08006f; - public static int Base_AlertDialog_AppCompat=0x7f080070; - public static int Base_AlertDialog_AppCompat_Light=0x7f080071; - public static int Base_Animation_AppCompat_Dialog=0x7f080072; - public static int Base_Animation_AppCompat_DropDownUp=0x7f080073; - public static int Base_DialogWindowTitle_AppCompat=0x7f080074; - public static int Base_DialogWindowTitleBackground_AppCompat=0x7f080075; - public static int Base_TextAppearance_AppCompat=0x7f080025; - public static int Base_TextAppearance_AppCompat_Body1=0x7f080026; - public static int Base_TextAppearance_AppCompat_Body2=0x7f080027; - public static int Base_TextAppearance_AppCompat_Button=0x7f080016; - public static int Base_TextAppearance_AppCompat_Caption=0x7f080028; - public static int Base_TextAppearance_AppCompat_Display1=0x7f080029; - public static int Base_TextAppearance_AppCompat_Display2=0x7f08002a; - public static int Base_TextAppearance_AppCompat_Display3=0x7f08002b; - public static int Base_TextAppearance_AppCompat_Display4=0x7f08002c; - public static int Base_TextAppearance_AppCompat_Headline=0x7f08002d; - public static int Base_TextAppearance_AppCompat_Inverse=0x7f080003; - public static int Base_TextAppearance_AppCompat_Large=0x7f08002e; - public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f080004; - public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f08002f; - public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080030; - public static int Base_TextAppearance_AppCompat_Medium=0x7f080031; - public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f080005; - public static int Base_TextAppearance_AppCompat_Menu=0x7f080032; - public static int Base_TextAppearance_AppCompat_SearchResult=0x7f080076; - public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080033; - public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080034; - public static int Base_TextAppearance_AppCompat_Small=0x7f080035; - public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f080006; - public static int Base_TextAppearance_AppCompat_Subhead=0x7f080036; - public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f080007; - public static int Base_TextAppearance_AppCompat_Title=0x7f080037; - public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f080008; - public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f080038; - public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f080039; - public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08003a; - public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08003b; - public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08003c; - public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08003d; - public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f08003e; - public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f080077; - public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08003f; - public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080040; - public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080041; - public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080042; - public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f080078; - public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080043; - public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080044; - public static int Base_Theme_AppCompat=0x7f080045; - public static int Base_Theme_AppCompat_CompactMenu=0x7f080079; - public static int Base_Theme_AppCompat_Dialog=0x7f080009; - public static int Base_Theme_AppCompat_Dialog_Alert=0x7f08007a; - public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f08007b; - public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f08007c; - public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f080001; - public static int Base_Theme_AppCompat_Light=0x7f080046; - public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f08007d; - public static int Base_Theme_AppCompat_Light_Dialog=0x7f08000a; - public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f08007e; - public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f08007f; - public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080080; - public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080002; - public static int Base_ThemeOverlay_AppCompat=0x7f080081; - public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f080082; - public static int Base_ThemeOverlay_AppCompat_Dark=0x7f080083; - public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080084; - public static int Base_ThemeOverlay_AppCompat_Light=0x7f080085; - public static int Base_V11_Theme_AppCompat_Dialog=0x7f08000b; - public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f08000c; - public static int Base_V21_Theme_AppCompat=0x7f080047; - public static int Base_V21_Theme_AppCompat_Dialog=0x7f080048; - public static int Base_V21_Theme_AppCompat_Light=0x7f080049; - public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08004a; - public static int Base_V7_Theme_AppCompat=0x7f080086; - public static int Base_V7_Theme_AppCompat_Dialog=0x7f080087; - public static int Base_V7_Theme_AppCompat_Light=0x7f080088; - public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f080089; - public static int Base_Widget_AppCompat_ActionBar=0x7f08008a; - public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f08008b; - public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f08008c; - public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f08004b; - public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f08004c; - public static int Base_Widget_AppCompat_ActionButton=0x7f08004d; - public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f08004e; - public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f08004f; - public static int Base_Widget_AppCompat_ActionMode=0x7f08008d; - public static int Base_Widget_AppCompat_ActivityChooserView=0x7f08008e; - public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080050; - public static int Base_Widget_AppCompat_Button=0x7f080051; - public static int Base_Widget_AppCompat_Button_Borderless=0x7f080052; - public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080053; - public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f08008f; - public static int Base_Widget_AppCompat_Button_Small=0x7f080054; - public static int Base_Widget_AppCompat_ButtonBar=0x7f080055; - public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f080090; - public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080056; - public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f080057; - public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f080091; - public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f080000; - public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f080092; - public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f080058; - public static int Base_Widget_AppCompat_EditText=0x7f080093; - public static int Base_Widget_AppCompat_Light_ActionBar=0x7f080094; - public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f080095; - public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f080096; - public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f080059; - public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08005a; - public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f08005b; - public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f08005c; - public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f08005d; - public static int Base_Widget_AppCompat_ListPopupWindow=0x7f08005e; - public static int Base_Widget_AppCompat_ListView=0x7f08005f; - public static int Base_Widget_AppCompat_ListView_DropDown=0x7f080060; - public static int Base_Widget_AppCompat_ListView_Menu=0x7f080061; - public static int Base_Widget_AppCompat_PopupMenu=0x7f080062; - public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080063; - public static int Base_Widget_AppCompat_PopupWindow=0x7f080097; - public static int Base_Widget_AppCompat_ProgressBar=0x7f08000d; - public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08000e; - public static int Base_Widget_AppCompat_RatingBar=0x7f080064; - public static int Base_Widget_AppCompat_SearchView=0x7f080098; - public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f080099; - public static int Base_Widget_AppCompat_Spinner=0x7f08000f; - public static int Base_Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080065; - public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f080066; - public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f080067; - public static int Base_Widget_AppCompat_Toolbar=0x7f08009a; - public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f080068; - public static int Platform_AppCompat=0x7f080010; - public static int Platform_AppCompat_Light=0x7f080011; - public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f080069; - public static int Platform_ThemeOverlay_AppCompat_Light=0x7f08006a; - public static int Platform_V11_AppCompat=0x7f080012; - public static int Platform_V11_AppCompat_Light=0x7f080013; - public static int Platform_V12_AppCompat=0x7f080014; - public static int Platform_V12_AppCompat_Light=0x7f080015; - public static int Platform_V14_AppCompat=0x7f080017; - public static int Platform_V14_AppCompat_Light=0x7f080018; - public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f080019; - public static int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f08001a; - public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08001b; - public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08001c; - public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f08001d; - public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f08001e; - public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f08001f; - public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080020; - public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080021; - public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080022; - public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080023; - public static int RtlOverlay_Widget_AppCompat_Toolbar_Button_Navigation=0x7f080024; - public static int TextAppearance_AppCompat=0x7f08009b; - public static int TextAppearance_AppCompat_Body1=0x7f08009c; - public static int TextAppearance_AppCompat_Body2=0x7f08009d; - public static int TextAppearance_AppCompat_Button=0x7f08009e; - public static int TextAppearance_AppCompat_Caption=0x7f08009f; - public static int TextAppearance_AppCompat_Display1=0x7f0800a0; - public static int TextAppearance_AppCompat_Display2=0x7f0800a1; - public static int TextAppearance_AppCompat_Display3=0x7f0800a2; - public static int TextAppearance_AppCompat_Display4=0x7f0800a3; - public static int TextAppearance_AppCompat_Headline=0x7f0800a4; - public static int TextAppearance_AppCompat_Inverse=0x7f0800a5; - public static int TextAppearance_AppCompat_Large=0x7f0800a6; - public static int TextAppearance_AppCompat_Large_Inverse=0x7f0800a7; - public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800a8; - public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800a9; - public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800aa; - public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800ab; - public static int TextAppearance_AppCompat_Medium=0x7f0800ac; - public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0800ad; - public static int TextAppearance_AppCompat_Menu=0x7f0800ae; - public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0800af; - public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0800b0; - public static int TextAppearance_AppCompat_Small=0x7f0800b1; - public static int TextAppearance_AppCompat_Small_Inverse=0x7f0800b2; - public static int TextAppearance_AppCompat_Subhead=0x7f0800b3; - public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0800b4; - public static int TextAppearance_AppCompat_Title=0x7f0800b5; - public static int TextAppearance_AppCompat_Title_Inverse=0x7f0800b6; - public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800b7; - public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0800b8; - public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0800b9; - public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0800ba; - public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0800bb; - public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0800bc; - public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0800bd; - public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0800be; - public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0800bf; - public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800c0; - public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0800c1; - public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0800c2; - public static int TextAppearance_AppCompat_Widget_Switch=0x7f0800c3; - public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0800c4; - public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800c5; - public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0800c6; - public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0800c7; - public static int Theme_AppCompat=0x7f0800c8; - public static int Theme_AppCompat_CompactMenu=0x7f0800c9; - public static int Theme_AppCompat_Dialog=0x7f0800ca; - public static int Theme_AppCompat_Dialog_Alert=0x7f0800cb; - public static int Theme_AppCompat_Dialog_MinWidth=0x7f0800cc; - public static int Theme_AppCompat_DialogWhenLarge=0x7f0800cd; - public static int Theme_AppCompat_Light=0x7f0800ce; - public static int Theme_AppCompat_Light_DarkActionBar=0x7f0800cf; - public static int Theme_AppCompat_Light_Dialog=0x7f0800d0; - public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0800d1; - public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0800d2; - public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0800d3; - public static int Theme_AppCompat_Light_NoActionBar=0x7f0800d4; - public static int Theme_AppCompat_NoActionBar=0x7f0800d5; - public static int ThemeOverlay_AppCompat=0x7f0800d6; - public static int ThemeOverlay_AppCompat_ActionBar=0x7f0800d7; - public static int ThemeOverlay_AppCompat_Dark=0x7f0800d8; - public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800d9; - public static int ThemeOverlay_AppCompat_Light=0x7f0800da; - public static int Widget_AppCompat_ActionBar=0x7f0800db; - public static int Widget_AppCompat_ActionBar_Solid=0x7f0800dc; - public static int Widget_AppCompat_ActionBar_TabBar=0x7f0800dd; - public static int Widget_AppCompat_ActionBar_TabText=0x7f0800de; - public static int Widget_AppCompat_ActionBar_TabView=0x7f0800df; - public static int Widget_AppCompat_ActionButton=0x7f0800e0; - public static int Widget_AppCompat_ActionButton_CloseMode=0x7f0800e1; - public static int Widget_AppCompat_ActionButton_Overflow=0x7f0800e2; - public static int Widget_AppCompat_ActionMode=0x7f0800e3; - public static int Widget_AppCompat_ActivityChooserView=0x7f0800e4; - public static int Widget_AppCompat_AutoCompleteTextView=0x7f0800e5; - public static int Widget_AppCompat_Button=0x7f0800e6; - public static int Widget_AppCompat_Button_Borderless=0x7f0800e7; - public static int Widget_AppCompat_Button_Borderless_Colored=0x7f0800e8; - public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800e9; - public static int Widget_AppCompat_Button_Small=0x7f0800ea; - public static int Widget_AppCompat_ButtonBar=0x7f0800eb; - public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800ec; - public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f0800ed; - public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f0800ee; - public static int Widget_AppCompat_CompoundButton_Switch=0x7f0800ef; - public static int Widget_AppCompat_DrawerArrowToggle=0x7f0800f0; - public static int Widget_AppCompat_DropDownItem_Spinner=0x7f0800f1; - public static int Widget_AppCompat_EditText=0x7f0800f2; - public static int Widget_AppCompat_Light_ActionBar=0x7f0800f3; - public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f0800f4; - public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0800f5; - public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800f6; - public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0800f7; - public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f0800f8; - public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0800f9; - public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f0800fa; - public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0800fb; - public static int Widget_AppCompat_Light_ActionButton=0x7f0800fc; - public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0800fd; - public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0800fe; - public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0800ff; - public static int Widget_AppCompat_Light_ActivityChooserView=0x7f080100; - public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f080101; - public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f080102; - public static int Widget_AppCompat_Light_ListPopupWindow=0x7f080103; - public static int Widget_AppCompat_Light_ListView_DropDown=0x7f080104; - public static int Widget_AppCompat_Light_PopupMenu=0x7f080105; - public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080106; - public static int Widget_AppCompat_Light_SearchView=0x7f080107; - public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080108; - public static int Widget_AppCompat_ListPopupWindow=0x7f080109; - public static int Widget_AppCompat_ListView=0x7f08010a; - public static int Widget_AppCompat_ListView_DropDown=0x7f08010b; - public static int Widget_AppCompat_ListView_Menu=0x7f08010c; - public static int Widget_AppCompat_PopupMenu=0x7f08010d; - public static int Widget_AppCompat_PopupMenu_Overflow=0x7f08010e; - public static int Widget_AppCompat_PopupWindow=0x7f08010f; - public static int Widget_AppCompat_ProgressBar=0x7f080110; - public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f080111; - public static int Widget_AppCompat_RatingBar=0x7f080112; - public static int Widget_AppCompat_SearchView=0x7f080113; - public static int Widget_AppCompat_SearchView_ActionBar=0x7f080114; - public static int Widget_AppCompat_Spinner=0x7f080115; - public static int Widget_AppCompat_Spinner_DropDown=0x7f080116; - public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080117; - public static int Widget_AppCompat_Spinner_Underlined=0x7f080118; - public static int Widget_AppCompat_TextView_SpinnerItem=0x7f080119; - public static int Widget_AppCompat_Toolbar=0x7f08011a; - public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08011b; - } - public static final class styleable { - /** Attributes that can be used with a ActionBar. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #ActionBar_background com.tuesda.walker.circlerefresh:background}
{@link #ActionBar_backgroundSplit com.tuesda.walker.circlerefresh:backgroundSplit}
{@link #ActionBar_backgroundStacked com.tuesda.walker.circlerefresh:backgroundStacked}
{@link #ActionBar_contentInsetEnd com.tuesda.walker.circlerefresh:contentInsetEnd}
{@link #ActionBar_contentInsetLeft com.tuesda.walker.circlerefresh:contentInsetLeft}
{@link #ActionBar_contentInsetRight com.tuesda.walker.circlerefresh:contentInsetRight}
{@link #ActionBar_contentInsetStart com.tuesda.walker.circlerefresh:contentInsetStart}
{@link #ActionBar_customNavigationLayout com.tuesda.walker.circlerefresh:customNavigationLayout}
{@link #ActionBar_displayOptions com.tuesda.walker.circlerefresh:displayOptions}
{@link #ActionBar_divider com.tuesda.walker.circlerefresh:divider}
{@link #ActionBar_elevation com.tuesda.walker.circlerefresh:elevation}
{@link #ActionBar_height com.tuesda.walker.circlerefresh:height}
{@link #ActionBar_hideOnContentScroll com.tuesda.walker.circlerefresh:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator com.tuesda.walker.circlerefresh:homeAsUpIndicator}
{@link #ActionBar_homeLayout com.tuesda.walker.circlerefresh:homeLayout}
{@link #ActionBar_icon com.tuesda.walker.circlerefresh:icon}
{@link #ActionBar_indeterminateProgressStyle com.tuesda.walker.circlerefresh:indeterminateProgressStyle}
{@link #ActionBar_itemPadding com.tuesda.walker.circlerefresh:itemPadding}
{@link #ActionBar_logo com.tuesda.walker.circlerefresh:logo}
{@link #ActionBar_navigationMode com.tuesda.walker.circlerefresh:navigationMode}
{@link #ActionBar_popupTheme com.tuesda.walker.circlerefresh:popupTheme}
{@link #ActionBar_progressBarPadding com.tuesda.walker.circlerefresh:progressBarPadding}
{@link #ActionBar_progressBarStyle com.tuesda.walker.circlerefresh:progressBarStyle}
{@link #ActionBar_subtitle com.tuesda.walker.circlerefresh:subtitle}
{@link #ActionBar_subtitleTextStyle com.tuesda.walker.circlerefresh:subtitleTextStyle}
{@link #ActionBar_title com.tuesda.walker.circlerefresh:title}
{@link #ActionBar_titleTextStyle com.tuesda.walker.circlerefresh:titleTextStyle}
- @see #ActionBar_background - @see #ActionBar_backgroundSplit - @see #ActionBar_backgroundStacked - @see #ActionBar_contentInsetEnd - @see #ActionBar_contentInsetLeft - @see #ActionBar_contentInsetRight - @see #ActionBar_contentInsetStart - @see #ActionBar_customNavigationLayout - @see #ActionBar_displayOptions - @see #ActionBar_divider - @see #ActionBar_elevation - @see #ActionBar_height - @see #ActionBar_hideOnContentScroll - @see #ActionBar_homeAsUpIndicator - @see #ActionBar_homeLayout - @see #ActionBar_icon - @see #ActionBar_indeterminateProgressStyle - @see #ActionBar_itemPadding - @see #ActionBar_logo - @see #ActionBar_navigationMode - @see #ActionBar_popupTheme - @see #ActionBar_progressBarPadding - @see #ActionBar_progressBarStyle - @see #ActionBar_subtitle - @see #ActionBar_subtitleTextStyle - @see #ActionBar_title - @see #ActionBar_titleTextStyle - */ - public static final int[] ActionBar = { - 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, - 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, - 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, - 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, - 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, - 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, - 0x7f01001a, 0x7f01001b, 0x7f01007f - }; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#background} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:background - */ - public static int ActionBar_background = 10; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#backgroundSplit} - attribute's value can be found in the {@link #ActionBar} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name com.tuesda.walker.circlerefresh:backgroundSplit - */ - public static int ActionBar_backgroundSplit = 12; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#backgroundStacked} - attribute's value can be found in the {@link #ActionBar} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name com.tuesda.walker.circlerefresh:backgroundStacked - */ - public static int ActionBar_backgroundStacked = 11; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#contentInsetEnd} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:contentInsetEnd - */ - public static int ActionBar_contentInsetEnd = 21; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#contentInsetLeft} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:contentInsetLeft - */ - public static int ActionBar_contentInsetLeft = 22; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#contentInsetRight} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:contentInsetRight - */ - public static int ActionBar_contentInsetRight = 23; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#contentInsetStart} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:contentInsetStart - */ - public static int ActionBar_contentInsetStart = 20; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#customNavigationLayout} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:customNavigationLayout - */ - public static int ActionBar_customNavigationLayout = 13; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#displayOptions} - attribute's value can be found in the {@link #ActionBar} array. - - -

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

- ---- - - - - - - - -
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
- @attr name com.tuesda.walker.circlerefresh:displayOptions - */ - public static int ActionBar_displayOptions = 3; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#divider} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:divider - */ - public static int ActionBar_divider = 9; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#elevation} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:elevation - */ - public static int ActionBar_elevation = 24; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#height} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:height - */ - public static int ActionBar_height = 0; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#hideOnContentScroll} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:hideOnContentScroll - */ - public static int ActionBar_hideOnContentScroll = 19; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#homeAsUpIndicator} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:homeAsUpIndicator - */ - public static int ActionBar_homeAsUpIndicator = 26; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#homeLayout} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:homeLayout - */ - public static int ActionBar_homeLayout = 14; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#icon} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:icon - */ - public static int ActionBar_icon = 7; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#indeterminateProgressStyle} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:indeterminateProgressStyle - */ - public static int ActionBar_indeterminateProgressStyle = 16; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#itemPadding} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:itemPadding - */ - public static int ActionBar_itemPadding = 18; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#logo} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:logo - */ - public static int ActionBar_logo = 8; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#navigationMode} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be one of the following constant values.

- ---- - - - -
ConstantValueDescription
normal0
listMode1
tabMode2
- @attr name com.tuesda.walker.circlerefresh:navigationMode - */ - public static int ActionBar_navigationMode = 2; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#popupTheme} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:popupTheme - */ - public static int ActionBar_popupTheme = 25; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#progressBarPadding} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:progressBarPadding - */ - public static int ActionBar_progressBarPadding = 17; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#progressBarStyle} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:progressBarStyle - */ - public static int ActionBar_progressBarStyle = 15; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#subtitle} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:subtitle - */ - public static int ActionBar_subtitle = 4; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#subtitleTextStyle} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:subtitleTextStyle - */ - public static int ActionBar_subtitleTextStyle = 6; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#title} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:title - */ - public static int ActionBar_title = 1; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#titleTextStyle} - attribute's value can be found in the {@link #ActionBar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:titleTextStyle - */ - public static int ActionBar_titleTextStyle = 5; - /** Attributes that can be used with a ActionBarLayout. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
- @see #ActionBarLayout_android_layout_gravity - */ - public static final int[] ActionBarLayout = { - 0x010100b3 - }; - /** -

This symbol is the offset where the {@link android.R.attr#layout_gravity} - attribute's value can be found in the {@link #ActionBarLayout} array. - @attr name android:layout_gravity - */ - public static int ActionBarLayout_android_layout_gravity = 0; - /** Attributes that can be used with a ActionMenuItemView. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
- @see #ActionMenuItemView_android_minWidth - */ - public static final int[] ActionMenuItemView = { - 0x0101013f - }; - /** -

This symbol is the offset where the {@link android.R.attr#minWidth} - attribute's value can be found in the {@link #ActionMenuItemView} array. - @attr name android:minWidth - */ - public static int ActionMenuItemView_android_minWidth = 0; - /** Attributes that can be used with a ActionMenuView. - */ - public static final int[] ActionMenuView = { - - }; - /** Attributes that can be used with a ActionMode. -

Includes the following attributes:

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

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#background} - attribute's value can be found in the {@link #ActionMode} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:background - */ - public static int ActionMode_background = 3; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#backgroundSplit} - attribute's value can be found in the {@link #ActionMode} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name com.tuesda.walker.circlerefresh:backgroundSplit - */ - public static int ActionMode_backgroundSplit = 4; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#closeItemLayout} - attribute's value can be found in the {@link #ActionMode} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:closeItemLayout - */ - public static int ActionMode_closeItemLayout = 5; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#height} - attribute's value can be found in the {@link #ActionMode} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:height - */ - public static int ActionMode_height = 0; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#subtitleTextStyle} - attribute's value can be found in the {@link #ActionMode} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:subtitleTextStyle - */ - public static int ActionMode_subtitleTextStyle = 2; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#titleTextStyle} - attribute's value can be found in the {@link #ActionMode} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:titleTextStyle - */ - public static int ActionMode_titleTextStyle = 1; - /** Attributes that can be used with a ActivityChooserView. -

Includes the following attributes:

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

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#expandActivityOverflowButtonDrawable} - attribute's value can be found in the {@link #ActivityChooserView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:expandActivityOverflowButtonDrawable - */ - public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#initialActivityCount} - attribute's value can be found in the {@link #ActivityChooserView} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:initialActivityCount - */ - public static int ActivityChooserView_initialActivityCount = 0; - /** Attributes that can be used with a AlertDialog. -

Includes the following attributes:

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

This symbol is the offset where the {@link android.R.attr#layout} - attribute's value can be found in the {@link #AlertDialog} array. - @attr name android:layout - */ - public static int AlertDialog_android_layout = 0; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#buttonPanelSideLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:buttonPanelSideLayout - */ - public static int AlertDialog_buttonPanelSideLayout = 1; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#listItemLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:listItemLayout - */ - public static int AlertDialog_listItemLayout = 5; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#listLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:listLayout - */ - public static int AlertDialog_listLayout = 2; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#multiChoiceItemLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:multiChoiceItemLayout - */ - public static int AlertDialog_multiChoiceItemLayout = 3; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#singleChoiceItemLayout} - attribute's value can be found in the {@link #AlertDialog} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:singleChoiceItemLayout - */ - public static int AlertDialog_singleChoiceItemLayout = 4; - /** Attributes that can be used with a AppCompatTextView. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_textAllCaps com.tuesda.walker.circlerefresh:textAllCaps}
- @see #AppCompatTextView_android_textAppearance - @see #AppCompatTextView_textAllCaps - */ - public static final int[] AppCompatTextView = { - 0x01010034, 0x7f010024 - }; - /** -

This symbol is the offset where the {@link android.R.attr#textAppearance} - attribute's value can be found in the {@link #AppCompatTextView} array. - @attr name android:textAppearance - */ - public static int AppCompatTextView_android_textAppearance = 0; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#textAllCaps} - attribute's value can be found in the {@link #AppCompatTextView} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a boolean value, either "true" or "false". - @attr name com.tuesda.walker.circlerefresh:textAllCaps - */ - public static int AppCompatTextView_textAllCaps = 1; - /** Attributes that can be used with a CirCleRefreshLayout. -

Includes the following attributes:

- - - - - - - -
AttributeDescription
{@link #CirCleRefreshLayout_AniBackColor com.tuesda.walker.circlerefresh:AniBackColor}
{@link #CirCleRefreshLayout_AniForeColor com.tuesda.walker.circlerefresh:AniForeColor}
{@link #CirCleRefreshLayout_CircleSmaller com.tuesda.walker.circlerefresh:CircleSmaller}
- @see #CirCleRefreshLayout_AniBackColor - @see #CirCleRefreshLayout_AniForeColor - @see #CirCleRefreshLayout_CircleSmaller - */ - public static final int[] CirCleRefreshLayout = { - 0x7f010025, 0x7f010026, 0x7f010027 - }; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#AniBackColor} - attribute's value can be found in the {@link #CirCleRefreshLayout} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:AniBackColor - */ - public static int CirCleRefreshLayout_AniBackColor = 0; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#AniForeColor} - attribute's value can be found in the {@link #CirCleRefreshLayout} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:AniForeColor - */ - public static int CirCleRefreshLayout_AniForeColor = 1; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#CircleSmaller} - attribute's value can be found in the {@link #CirCleRefreshLayout} array. - - -

Must be an integer value, such as "100". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:CircleSmaller - */ - public static int CirCleRefreshLayout_CircleSmaller = 2; - /** Attributes that can be used with a DrawerArrowToggle. -

Includes the following attributes:

- - - - - - - - - - - - -
AttributeDescription
{@link #DrawerArrowToggle_barSize com.tuesda.walker.circlerefresh:barSize}
{@link #DrawerArrowToggle_color com.tuesda.walker.circlerefresh:color}
{@link #DrawerArrowToggle_drawableSize com.tuesda.walker.circlerefresh:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars com.tuesda.walker.circlerefresh:gapBetweenBars}
{@link #DrawerArrowToggle_middleBarArrowSize com.tuesda.walker.circlerefresh:middleBarArrowSize}
{@link #DrawerArrowToggle_spinBars com.tuesda.walker.circlerefresh:spinBars}
{@link #DrawerArrowToggle_thickness com.tuesda.walker.circlerefresh:thickness}
{@link #DrawerArrowToggle_topBottomBarArrowSize com.tuesda.walker.circlerefresh:topBottomBarArrowSize}
- @see #DrawerArrowToggle_barSize - @see #DrawerArrowToggle_color - @see #DrawerArrowToggle_drawableSize - @see #DrawerArrowToggle_gapBetweenBars - @see #DrawerArrowToggle_middleBarArrowSize - @see #DrawerArrowToggle_spinBars - @see #DrawerArrowToggle_thickness - @see #DrawerArrowToggle_topBottomBarArrowSize - */ - public static final int[] DrawerArrowToggle = { - 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, - 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f - }; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#barSize} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:barSize - */ - public static int DrawerArrowToggle_barSize = 6; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#color} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:color - */ - public static int DrawerArrowToggle_color = 0; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#drawableSize} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:drawableSize - */ - public static int DrawerArrowToggle_drawableSize = 2; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#gapBetweenBars} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:gapBetweenBars - */ - public static int DrawerArrowToggle_gapBetweenBars = 3; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#middleBarArrowSize} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:middleBarArrowSize - */ - public static int DrawerArrowToggle_middleBarArrowSize = 5; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#spinBars} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:spinBars - */ - public static int DrawerArrowToggle_spinBars = 1; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#thickness} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:thickness - */ - public static int DrawerArrowToggle_thickness = 7; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#topBottomBarArrowSize} - attribute's value can be found in the {@link #DrawerArrowToggle} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:topBottomBarArrowSize - */ - public static int DrawerArrowToggle_topBottomBarArrowSize = 4; - /** Attributes that can be used with a LinearLayoutCompat. -

Includes the following attributes:

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

This symbol is the offset where the {@link android.R.attr#baselineAligned} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - @attr name android:baselineAligned - */ - public static int LinearLayoutCompat_android_baselineAligned = 2; - /** -

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - @attr name android:baselineAlignedChildIndex - */ - public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; - /** -

This symbol is the offset where the {@link android.R.attr#gravity} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - @attr name android:gravity - */ - public static int LinearLayoutCompat_android_gravity = 0; - /** -

This symbol is the offset where the {@link android.R.attr#orientation} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - @attr name android:orientation - */ - public static int LinearLayoutCompat_android_orientation = 1; - /** -

This symbol is the offset where the {@link android.R.attr#weightSum} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - @attr name android:weightSum - */ - public static int LinearLayoutCompat_android_weightSum = 4; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#divider} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:divider - */ - public static int LinearLayoutCompat_divider = 5; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#dividerPadding} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:dividerPadding - */ - public static int LinearLayoutCompat_dividerPadding = 8; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#measureWithLargestChild} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:measureWithLargestChild - */ - public static int LinearLayoutCompat_measureWithLargestChild = 6; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#showDividers} - attribute's value can be found in the {@link #LinearLayoutCompat} array. - - -

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

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

Includes the following attributes:

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

This symbol is the offset where the {@link android.R.attr#layout_gravity} - attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - @attr name android:layout_gravity - */ - public static int LinearLayoutCompat_Layout_android_layout_gravity = 0; - /** -

This symbol is the offset where the {@link android.R.attr#layout_height} - attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - @attr name android:layout_height - */ - public static int LinearLayoutCompat_Layout_android_layout_height = 2; - /** -

This symbol is the offset where the {@link android.R.attr#layout_weight} - attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - @attr name android:layout_weight - */ - public static int LinearLayoutCompat_Layout_android_layout_weight = 3; - /** -

This symbol is the offset where the {@link android.R.attr#layout_width} - attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - @attr name android:layout_width - */ - public static int LinearLayoutCompat_Layout_android_layout_width = 1; - /** Attributes that can be used with a ListPopupWindow. -

Includes the following attributes:

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

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} - attribute's value can be found in the {@link #ListPopupWindow} array. - @attr name android:dropDownHorizontalOffset - */ - public static int ListPopupWindow_android_dropDownHorizontalOffset = 0; - /** -

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} - attribute's value can be found in the {@link #ListPopupWindow} array. - @attr name android:dropDownVerticalOffset - */ - public static int ListPopupWindow_android_dropDownVerticalOffset = 1; - /** Attributes that can be used with a MenuGroup. -

Includes the following attributes:

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

This symbol is the offset where the {@link android.R.attr#checkableBehavior} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:checkableBehavior - */ - public static int MenuGroup_android_checkableBehavior = 5; - /** -

This symbol is the offset where the {@link android.R.attr#enabled} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:enabled - */ - public static int MenuGroup_android_enabled = 0; - /** -

This symbol is the offset where the {@link android.R.attr#id} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:id - */ - public static int MenuGroup_android_id = 1; - /** -

This symbol is the offset where the {@link android.R.attr#menuCategory} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:menuCategory - */ - public static int MenuGroup_android_menuCategory = 3; - /** -

This symbol is the offset where the {@link android.R.attr#orderInCategory} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:orderInCategory - */ - public static int MenuGroup_android_orderInCategory = 4; - /** -

This symbol is the offset where the {@link android.R.attr#visible} - attribute's value can be found in the {@link #MenuGroup} array. - @attr name android:visible - */ - public static int MenuGroup_android_visible = 2; - /** Attributes that can be used with a MenuItem. -

Includes the following attributes:

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

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionLayout} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionLayout - */ - public static int MenuItem_actionLayout = 14; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionProviderClass} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:actionProviderClass - */ - public static int MenuItem_actionProviderClass = 16; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionViewClass} - attribute's value can be found in the {@link #MenuItem} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:actionViewClass - */ - public static int MenuItem_actionViewClass = 15; - /** -

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:alphabeticShortcut - */ - public static int MenuItem_android_alphabeticShortcut = 9; - /** -

This symbol is the offset where the {@link android.R.attr#checkable} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:checkable - */ - public static int MenuItem_android_checkable = 11; - /** -

This symbol is the offset where the {@link android.R.attr#checked} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:checked - */ - public static int MenuItem_android_checked = 3; - /** -

This symbol is the offset where the {@link android.R.attr#enabled} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:enabled - */ - public static int MenuItem_android_enabled = 1; - /** -

This symbol is the offset where the {@link android.R.attr#icon} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:icon - */ - public static int MenuItem_android_icon = 0; - /** -

This symbol is the offset where the {@link android.R.attr#id} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:id - */ - public static int MenuItem_android_id = 2; - /** -

This symbol is the offset where the {@link android.R.attr#menuCategory} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:menuCategory - */ - public static int MenuItem_android_menuCategory = 5; - /** -

This symbol is the offset where the {@link android.R.attr#numericShortcut} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:numericShortcut - */ - public static int MenuItem_android_numericShortcut = 10; - /** -

This symbol is the offset where the {@link android.R.attr#onClick} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:onClick - */ - public static int MenuItem_android_onClick = 12; - /** -

This symbol is the offset where the {@link android.R.attr#orderInCategory} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:orderInCategory - */ - public static int MenuItem_android_orderInCategory = 6; - /** -

This symbol is the offset where the {@link android.R.attr#title} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:title - */ - public static int MenuItem_android_title = 7; - /** -

This symbol is the offset where the {@link android.R.attr#titleCondensed} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:titleCondensed - */ - public static int MenuItem_android_titleCondensed = 8; - /** -

This symbol is the offset where the {@link android.R.attr#visible} - attribute's value can be found in the {@link #MenuItem} array. - @attr name android:visible - */ - public static int MenuItem_android_visible = 4; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#showAsAction} - attribute's value can be found in the {@link #MenuItem} array. - - -

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

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

Includes the following attributes:

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

This symbol is the offset where the {@link android.R.attr#headerBackground} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:headerBackground - */ - public static int MenuView_android_headerBackground = 4; - /** -

This symbol is the offset where the {@link android.R.attr#horizontalDivider} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:horizontalDivider - */ - public static int MenuView_android_horizontalDivider = 2; - /** -

This symbol is the offset where the {@link android.R.attr#itemBackground} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:itemBackground - */ - public static int MenuView_android_itemBackground = 5; - /** -

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:itemIconDisabledAlpha - */ - public static int MenuView_android_itemIconDisabledAlpha = 6; - /** -

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:itemTextAppearance - */ - public static int MenuView_android_itemTextAppearance = 1; - /** -

This symbol is the offset where the {@link android.R.attr#verticalDivider} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:verticalDivider - */ - public static int MenuView_android_verticalDivider = 3; - /** -

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} - attribute's value can be found in the {@link #MenuView} array. - @attr name android:windowAnimationStyle - */ - public static int MenuView_android_windowAnimationStyle = 0; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#preserveIconSpacing} - attribute's value can be found in the {@link #MenuView} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:preserveIconSpacing - */ - public static int MenuView_preserveIconSpacing = 7; - /** Attributes that can be used with a PopupWindow. -

Includes the following attributes:

- - - - - - -
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor com.tuesda.walker.circlerefresh:overlapAnchor}
- @see #PopupWindow_android_popupBackground - @see #PopupWindow_overlapAnchor - */ - public static final int[] PopupWindow = { - 0x01010176, 0x7f010038 - }; - /** -

This symbol is the offset where the {@link android.R.attr#popupBackground} - attribute's value can be found in the {@link #PopupWindow} array. - @attr name android:popupBackground - */ - public static int PopupWindow_android_popupBackground = 0; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#overlapAnchor} - attribute's value can be found in the {@link #PopupWindow} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:overlapAnchor - */ - public static int PopupWindow_overlapAnchor = 1; - /** Attributes that can be used with a PopupWindowBackgroundState. -

Includes the following attributes:

- - - - - -
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor com.tuesda.walker.circlerefresh:state_above_anchor}
- @see #PopupWindowBackgroundState_state_above_anchor - */ - public static final int[] PopupWindowBackgroundState = { - 0x7f010039 - }; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#state_above_anchor} - attribute's value can be found in the {@link #PopupWindowBackgroundState} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:state_above_anchor - */ - public static int PopupWindowBackgroundState_state_above_anchor = 0; - /** Attributes that can be used with a SearchView. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon com.tuesda.walker.circlerefresh:closeIcon}
{@link #SearchView_commitIcon com.tuesda.walker.circlerefresh:commitIcon}
{@link #SearchView_goIcon com.tuesda.walker.circlerefresh:goIcon}
{@link #SearchView_iconifiedByDefault com.tuesda.walker.circlerefresh:iconifiedByDefault}
{@link #SearchView_layout com.tuesda.walker.circlerefresh:layout}
{@link #SearchView_queryBackground com.tuesda.walker.circlerefresh:queryBackground}
{@link #SearchView_queryHint com.tuesda.walker.circlerefresh:queryHint}
{@link #SearchView_searchHintIcon com.tuesda.walker.circlerefresh:searchHintIcon}
{@link #SearchView_searchIcon com.tuesda.walker.circlerefresh:searchIcon}
{@link #SearchView_submitBackground com.tuesda.walker.circlerefresh:submitBackground}
{@link #SearchView_suggestionRowLayout com.tuesda.walker.circlerefresh:suggestionRowLayout}
{@link #SearchView_voiceIcon com.tuesda.walker.circlerefresh:voiceIcon}
- @see #SearchView_android_focusable - @see #SearchView_android_imeOptions - @see #SearchView_android_inputType - @see #SearchView_android_maxWidth - @see #SearchView_closeIcon - @see #SearchView_commitIcon - @see #SearchView_goIcon - @see #SearchView_iconifiedByDefault - @see #SearchView_layout - @see #SearchView_queryBackground - @see #SearchView_queryHint - @see #SearchView_searchHintIcon - @see #SearchView_searchIcon - @see #SearchView_submitBackground - @see #SearchView_suggestionRowLayout - @see #SearchView_voiceIcon - */ - public static final int[] SearchView = { - 0x010100da, 0x0101011f, 0x01010220, 0x01010264, - 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, - 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, - 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045 - }; - /** -

This symbol is the offset where the {@link android.R.attr#focusable} - attribute's value can be found in the {@link #SearchView} array. - @attr name android:focusable - */ - public static int SearchView_android_focusable = 0; - /** -

This symbol is the offset where the {@link android.R.attr#imeOptions} - attribute's value can be found in the {@link #SearchView} array. - @attr name android:imeOptions - */ - public static int SearchView_android_imeOptions = 3; - /** -

This symbol is the offset where the {@link android.R.attr#inputType} - attribute's value can be found in the {@link #SearchView} array. - @attr name android:inputType - */ - public static int SearchView_android_inputType = 2; - /** -

This symbol is the offset where the {@link android.R.attr#maxWidth} - attribute's value can be found in the {@link #SearchView} array. - @attr name android:maxWidth - */ - public static int SearchView_android_maxWidth = 1; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#closeIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:closeIcon - */ - public static int SearchView_closeIcon = 7; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#commitIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:commitIcon - */ - public static int SearchView_commitIcon = 12; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#goIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:goIcon - */ - public static int SearchView_goIcon = 8; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#iconifiedByDefault} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:iconifiedByDefault - */ - public static int SearchView_iconifiedByDefault = 5; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#layout} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:layout - */ - public static int SearchView_layout = 4; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#queryBackground} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:queryBackground - */ - public static int SearchView_queryBackground = 14; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#queryHint} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:queryHint - */ - public static int SearchView_queryHint = 6; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#searchHintIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:searchHintIcon - */ - public static int SearchView_searchHintIcon = 10; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#searchIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:searchIcon - */ - public static int SearchView_searchIcon = 9; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#submitBackground} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:submitBackground - */ - public static int SearchView_submitBackground = 15; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#suggestionRowLayout} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:suggestionRowLayout - */ - public static int SearchView_suggestionRowLayout = 13; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#voiceIcon} - attribute's value can be found in the {@link #SearchView} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:voiceIcon - */ - public static int SearchView_voiceIcon = 11; - /** Attributes that can be used with a Spinner. -

Includes the following attributes:

- - - - - - - - - - - - - - - -
AttributeDescription
{@link #Spinner_android_background android:background}
{@link #Spinner_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #Spinner_android_dropDownSelector android:dropDownSelector}
{@link #Spinner_android_dropDownVerticalOffset android:dropDownVerticalOffset}
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_gravity android:gravity}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_disableChildrenWhenDisabled com.tuesda.walker.circlerefresh:disableChildrenWhenDisabled}
{@link #Spinner_popupPromptView com.tuesda.walker.circlerefresh:popupPromptView}
{@link #Spinner_prompt com.tuesda.walker.circlerefresh:prompt}
{@link #Spinner_spinnerMode com.tuesda.walker.circlerefresh:spinnerMode}
- @see #Spinner_android_background - @see #Spinner_android_dropDownHorizontalOffset - @see #Spinner_android_dropDownSelector - @see #Spinner_android_dropDownVerticalOffset - @see #Spinner_android_dropDownWidth - @see #Spinner_android_gravity - @see #Spinner_android_popupBackground - @see #Spinner_disableChildrenWhenDisabled - @see #Spinner_popupPromptView - @see #Spinner_prompt - @see #Spinner_spinnerMode - */ - public static final int[] Spinner = { - 0x010100af, 0x010100d4, 0x01010175, 0x01010176, - 0x01010262, 0x010102ac, 0x010102ad, 0x7f010046, - 0x7f010047, 0x7f010048, 0x7f010049 - }; - /** -

This symbol is the offset where the {@link android.R.attr#background} - attribute's value can be found in the {@link #Spinner} array. - @attr name android:background - */ - public static int Spinner_android_background = 1; - /** -

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} - attribute's value can be found in the {@link #Spinner} array. - @attr name android:dropDownHorizontalOffset - */ - public static int Spinner_android_dropDownHorizontalOffset = 5; - /** -

This symbol is the offset where the {@link android.R.attr#dropDownSelector} - attribute's value can be found in the {@link #Spinner} array. - @attr name android:dropDownSelector - */ - public static int Spinner_android_dropDownSelector = 2; - /** -

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} - attribute's value can be found in the {@link #Spinner} array. - @attr name android:dropDownVerticalOffset - */ - public static int Spinner_android_dropDownVerticalOffset = 6; - /** -

This symbol is the offset where the {@link android.R.attr#dropDownWidth} - attribute's value can be found in the {@link #Spinner} array. - @attr name android:dropDownWidth - */ - public static int Spinner_android_dropDownWidth = 4; - /** -

This symbol is the offset where the {@link android.R.attr#gravity} - attribute's value can be found in the {@link #Spinner} array. - @attr name android:gravity - */ - public static int Spinner_android_gravity = 0; - /** -

This symbol is the offset where the {@link android.R.attr#popupBackground} - attribute's value can be found in the {@link #Spinner} array. - @attr name android:popupBackground - */ - public static int Spinner_android_popupBackground = 3; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#disableChildrenWhenDisabled} - attribute's value can be found in the {@link #Spinner} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:disableChildrenWhenDisabled - */ - public static int Spinner_disableChildrenWhenDisabled = 10; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#popupPromptView} - attribute's value can be found in the {@link #Spinner} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:popupPromptView - */ - public static int Spinner_popupPromptView = 9; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#prompt} - attribute's value can be found in the {@link #Spinner} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:prompt - */ - public static int Spinner_prompt = 7; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#spinnerMode} - attribute's value can be found in the {@link #Spinner} array. - - -

Must be one of the following constant values.

- ---- - - -
ConstantValueDescription
dialog0
dropdown1
- @attr name com.tuesda.walker.circlerefresh:spinnerMode - */ - public static int Spinner_spinnerMode = 8; - /** Attributes that can be used with a SwitchCompat. -

Includes the following attributes:

- - - - - - - - - - - - - - -
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText com.tuesda.walker.circlerefresh:showText}
{@link #SwitchCompat_splitTrack com.tuesda.walker.circlerefresh:splitTrack}
{@link #SwitchCompat_switchMinWidth com.tuesda.walker.circlerefresh:switchMinWidth}
{@link #SwitchCompat_switchPadding com.tuesda.walker.circlerefresh:switchPadding}
{@link #SwitchCompat_switchTextAppearance com.tuesda.walker.circlerefresh:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding com.tuesda.walker.circlerefresh:thumbTextPadding}
{@link #SwitchCompat_track com.tuesda.walker.circlerefresh:track}
- @see #SwitchCompat_android_textOff - @see #SwitchCompat_android_textOn - @see #SwitchCompat_android_thumb - @see #SwitchCompat_showText - @see #SwitchCompat_splitTrack - @see #SwitchCompat_switchMinWidth - @see #SwitchCompat_switchPadding - @see #SwitchCompat_switchTextAppearance - @see #SwitchCompat_thumbTextPadding - @see #SwitchCompat_track - */ - public static final int[] SwitchCompat = { - 0x01010124, 0x01010125, 0x01010142, 0x7f01004a, - 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, - 0x7f01004f, 0x7f010050 - }; - /** -

This symbol is the offset where the {@link android.R.attr#textOff} - attribute's value can be found in the {@link #SwitchCompat} array. - @attr name android:textOff - */ - public static int SwitchCompat_android_textOff = 1; - /** -

This symbol is the offset where the {@link android.R.attr#textOn} - attribute's value can be found in the {@link #SwitchCompat} array. - @attr name android:textOn - */ - public static int SwitchCompat_android_textOn = 0; - /** -

This symbol is the offset where the {@link android.R.attr#thumb} - attribute's value can be found in the {@link #SwitchCompat} array. - @attr name android:thumb - */ - public static int SwitchCompat_android_thumb = 2; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#showText} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:showText - */ - public static int SwitchCompat_showText = 9; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#splitTrack} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:splitTrack - */ - public static int SwitchCompat_splitTrack = 8; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#switchMinWidth} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:switchMinWidth - */ - public static int SwitchCompat_switchMinWidth = 6; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#switchPadding} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:switchPadding - */ - public static int SwitchCompat_switchPadding = 7; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#switchTextAppearance} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:switchTextAppearance - */ - public static int SwitchCompat_switchTextAppearance = 5; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#thumbTextPadding} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:thumbTextPadding - */ - public static int SwitchCompat_thumbTextPadding = 4; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#track} - attribute's value can be found in the {@link #SwitchCompat} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:track - */ - public static int SwitchCompat_track = 3; - /** Attributes that can be used with a TextAppearance. -

Includes the following attributes:

- - - - - - - - - -
AttributeDescription
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_textAllCaps com.tuesda.walker.circlerefresh:textAllCaps}
- @see #TextAppearance_android_textColor - @see #TextAppearance_android_textSize - @see #TextAppearance_android_textStyle - @see #TextAppearance_android_typeface - @see #TextAppearance_textAllCaps - */ - public static final int[] TextAppearance = { - 0x01010095, 0x01010096, 0x01010097, 0x01010098, - 0x7f010024 - }; - /** -

This symbol is the offset where the {@link android.R.attr#textColor} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:textColor - */ - public static int TextAppearance_android_textColor = 3; - /** -

This symbol is the offset where the {@link android.R.attr#textSize} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:textSize - */ - public static int TextAppearance_android_textSize = 0; - /** -

This symbol is the offset where the {@link android.R.attr#textStyle} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:textStyle - */ - public static int TextAppearance_android_textStyle = 2; - /** -

This symbol is the offset where the {@link android.R.attr#typeface} - attribute's value can be found in the {@link #TextAppearance} array. - @attr name android:typeface - */ - public static int TextAppearance_android_typeface = 1; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#textAllCaps} - attribute's value can be found in the {@link #TextAppearance} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a boolean value, either "true" or "false". - @attr name com.tuesda.walker.circlerefresh:textAllCaps - */ - public static int TextAppearance_textAllCaps = 4; - /** Attributes that can be used with a Theme. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #Theme_actionBarDivider com.tuesda.walker.circlerefresh:actionBarDivider}
{@link #Theme_actionBarItemBackground com.tuesda.walker.circlerefresh:actionBarItemBackground}
{@link #Theme_actionBarPopupTheme com.tuesda.walker.circlerefresh:actionBarPopupTheme}
{@link #Theme_actionBarSize com.tuesda.walker.circlerefresh:actionBarSize}
{@link #Theme_actionBarSplitStyle com.tuesda.walker.circlerefresh:actionBarSplitStyle}
{@link #Theme_actionBarStyle com.tuesda.walker.circlerefresh:actionBarStyle}
{@link #Theme_actionBarTabBarStyle com.tuesda.walker.circlerefresh:actionBarTabBarStyle}
{@link #Theme_actionBarTabStyle com.tuesda.walker.circlerefresh:actionBarTabStyle}
{@link #Theme_actionBarTabTextStyle com.tuesda.walker.circlerefresh:actionBarTabTextStyle}
{@link #Theme_actionBarTheme com.tuesda.walker.circlerefresh:actionBarTheme}
{@link #Theme_actionBarWidgetTheme com.tuesda.walker.circlerefresh:actionBarWidgetTheme}
{@link #Theme_actionButtonStyle com.tuesda.walker.circlerefresh:actionButtonStyle}
{@link #Theme_actionDropDownStyle com.tuesda.walker.circlerefresh:actionDropDownStyle}
{@link #Theme_actionMenuTextAppearance com.tuesda.walker.circlerefresh:actionMenuTextAppearance}
{@link #Theme_actionMenuTextColor com.tuesda.walker.circlerefresh:actionMenuTextColor}
{@link #Theme_actionModeBackground com.tuesda.walker.circlerefresh:actionModeBackground}
{@link #Theme_actionModeCloseButtonStyle com.tuesda.walker.circlerefresh:actionModeCloseButtonStyle}
{@link #Theme_actionModeCloseDrawable com.tuesda.walker.circlerefresh:actionModeCloseDrawable}
{@link #Theme_actionModeCopyDrawable com.tuesda.walker.circlerefresh:actionModeCopyDrawable}
{@link #Theme_actionModeCutDrawable com.tuesda.walker.circlerefresh:actionModeCutDrawable}
{@link #Theme_actionModeFindDrawable com.tuesda.walker.circlerefresh:actionModeFindDrawable}
{@link #Theme_actionModePasteDrawable com.tuesda.walker.circlerefresh:actionModePasteDrawable}
{@link #Theme_actionModePopupWindowStyle com.tuesda.walker.circlerefresh:actionModePopupWindowStyle}
{@link #Theme_actionModeSelectAllDrawable com.tuesda.walker.circlerefresh:actionModeSelectAllDrawable}
{@link #Theme_actionModeShareDrawable com.tuesda.walker.circlerefresh:actionModeShareDrawable}
{@link #Theme_actionModeSplitBackground com.tuesda.walker.circlerefresh:actionModeSplitBackground}
{@link #Theme_actionModeStyle com.tuesda.walker.circlerefresh:actionModeStyle}
{@link #Theme_actionModeWebSearchDrawable com.tuesda.walker.circlerefresh:actionModeWebSearchDrawable}
{@link #Theme_actionOverflowButtonStyle com.tuesda.walker.circlerefresh:actionOverflowButtonStyle}
{@link #Theme_actionOverflowMenuStyle com.tuesda.walker.circlerefresh:actionOverflowMenuStyle}
{@link #Theme_activityChooserViewStyle com.tuesda.walker.circlerefresh:activityChooserViewStyle}
{@link #Theme_alertDialogButtonGroupStyle com.tuesda.walker.circlerefresh:alertDialogButtonGroupStyle}
{@link #Theme_alertDialogCenterButtons com.tuesda.walker.circlerefresh:alertDialogCenterButtons}
{@link #Theme_alertDialogStyle com.tuesda.walker.circlerefresh:alertDialogStyle}
{@link #Theme_alertDialogTheme com.tuesda.walker.circlerefresh:alertDialogTheme}
{@link #Theme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #Theme_android_windowIsFloating android:windowIsFloating}
{@link #Theme_autoCompleteTextViewStyle com.tuesda.walker.circlerefresh:autoCompleteTextViewStyle}
{@link #Theme_buttonBarButtonStyle com.tuesda.walker.circlerefresh:buttonBarButtonStyle}
{@link #Theme_buttonBarNegativeButtonStyle com.tuesda.walker.circlerefresh:buttonBarNegativeButtonStyle}
{@link #Theme_buttonBarNeutralButtonStyle com.tuesda.walker.circlerefresh:buttonBarNeutralButtonStyle}
{@link #Theme_buttonBarPositiveButtonStyle com.tuesda.walker.circlerefresh:buttonBarPositiveButtonStyle}
{@link #Theme_buttonBarStyle com.tuesda.walker.circlerefresh:buttonBarStyle}
{@link #Theme_buttonStyle com.tuesda.walker.circlerefresh:buttonStyle}
{@link #Theme_buttonStyleSmall com.tuesda.walker.circlerefresh:buttonStyleSmall}
{@link #Theme_checkboxStyle com.tuesda.walker.circlerefresh:checkboxStyle}
{@link #Theme_checkedTextViewStyle com.tuesda.walker.circlerefresh:checkedTextViewStyle}
{@link #Theme_colorAccent com.tuesda.walker.circlerefresh:colorAccent}
{@link #Theme_colorButtonNormal com.tuesda.walker.circlerefresh:colorButtonNormal}
{@link #Theme_colorControlActivated com.tuesda.walker.circlerefresh:colorControlActivated}
{@link #Theme_colorControlHighlight com.tuesda.walker.circlerefresh:colorControlHighlight}
{@link #Theme_colorControlNormal com.tuesda.walker.circlerefresh:colorControlNormal}
{@link #Theme_colorPrimary com.tuesda.walker.circlerefresh:colorPrimary}
{@link #Theme_colorPrimaryDark com.tuesda.walker.circlerefresh:colorPrimaryDark}
{@link #Theme_colorSwitchThumbNormal com.tuesda.walker.circlerefresh:colorSwitchThumbNormal}
{@link #Theme_dialogPreferredPadding com.tuesda.walker.circlerefresh:dialogPreferredPadding}
{@link #Theme_dialogTheme com.tuesda.walker.circlerefresh:dialogTheme}
{@link #Theme_dividerHorizontal com.tuesda.walker.circlerefresh:dividerHorizontal}
{@link #Theme_dividerVertical com.tuesda.walker.circlerefresh:dividerVertical}
{@link #Theme_dropDownListViewStyle com.tuesda.walker.circlerefresh:dropDownListViewStyle}
{@link #Theme_dropdownListPreferredItemHeight com.tuesda.walker.circlerefresh:dropdownListPreferredItemHeight}
{@link #Theme_editTextBackground com.tuesda.walker.circlerefresh:editTextBackground}
{@link #Theme_editTextColor com.tuesda.walker.circlerefresh:editTextColor}
{@link #Theme_editTextStyle com.tuesda.walker.circlerefresh:editTextStyle}
{@link #Theme_homeAsUpIndicator com.tuesda.walker.circlerefresh:homeAsUpIndicator}
{@link #Theme_listChoiceBackgroundIndicator com.tuesda.walker.circlerefresh:listChoiceBackgroundIndicator}
{@link #Theme_listDividerAlertDialog com.tuesda.walker.circlerefresh:listDividerAlertDialog}
{@link #Theme_listPopupWindowStyle com.tuesda.walker.circlerefresh:listPopupWindowStyle}
{@link #Theme_listPreferredItemHeight com.tuesda.walker.circlerefresh:listPreferredItemHeight}
{@link #Theme_listPreferredItemHeightLarge com.tuesda.walker.circlerefresh:listPreferredItemHeightLarge}
{@link #Theme_listPreferredItemHeightSmall com.tuesda.walker.circlerefresh:listPreferredItemHeightSmall}
{@link #Theme_listPreferredItemPaddingLeft com.tuesda.walker.circlerefresh:listPreferredItemPaddingLeft}
{@link #Theme_listPreferredItemPaddingRight com.tuesda.walker.circlerefresh:listPreferredItemPaddingRight}
{@link #Theme_panelBackground com.tuesda.walker.circlerefresh:panelBackground}
{@link #Theme_panelMenuListTheme com.tuesda.walker.circlerefresh:panelMenuListTheme}
{@link #Theme_panelMenuListWidth com.tuesda.walker.circlerefresh:panelMenuListWidth}
{@link #Theme_popupMenuStyle com.tuesda.walker.circlerefresh:popupMenuStyle}
{@link #Theme_popupWindowStyle com.tuesda.walker.circlerefresh:popupWindowStyle}
{@link #Theme_radioButtonStyle com.tuesda.walker.circlerefresh:radioButtonStyle}
{@link #Theme_ratingBarStyle com.tuesda.walker.circlerefresh:ratingBarStyle}
{@link #Theme_searchViewStyle com.tuesda.walker.circlerefresh:searchViewStyle}
{@link #Theme_selectableItemBackground com.tuesda.walker.circlerefresh:selectableItemBackground}
{@link #Theme_selectableItemBackgroundBorderless com.tuesda.walker.circlerefresh:selectableItemBackgroundBorderless}
{@link #Theme_spinnerDropDownItemStyle com.tuesda.walker.circlerefresh:spinnerDropDownItemStyle}
{@link #Theme_spinnerStyle com.tuesda.walker.circlerefresh:spinnerStyle}
{@link #Theme_switchStyle com.tuesda.walker.circlerefresh:switchStyle}
{@link #Theme_textAppearanceLargePopupMenu com.tuesda.walker.circlerefresh:textAppearanceLargePopupMenu}
{@link #Theme_textAppearanceListItem com.tuesda.walker.circlerefresh:textAppearanceListItem}
{@link #Theme_textAppearanceListItemSmall com.tuesda.walker.circlerefresh:textAppearanceListItemSmall}
{@link #Theme_textAppearanceSearchResultSubtitle com.tuesda.walker.circlerefresh:textAppearanceSearchResultSubtitle}
{@link #Theme_textAppearanceSearchResultTitle com.tuesda.walker.circlerefresh:textAppearanceSearchResultTitle}
{@link #Theme_textAppearanceSmallPopupMenu com.tuesda.walker.circlerefresh:textAppearanceSmallPopupMenu}
{@link #Theme_textColorAlertDialogListItem com.tuesda.walker.circlerefresh:textColorAlertDialogListItem}
{@link #Theme_textColorSearchUrl com.tuesda.walker.circlerefresh:textColorSearchUrl}
{@link #Theme_toolbarNavigationButtonStyle com.tuesda.walker.circlerefresh:toolbarNavigationButtonStyle}
{@link #Theme_toolbarStyle com.tuesda.walker.circlerefresh:toolbarStyle}
{@link #Theme_windowActionBar com.tuesda.walker.circlerefresh:windowActionBar}
{@link #Theme_windowActionBarOverlay com.tuesda.walker.circlerefresh:windowActionBarOverlay}
{@link #Theme_windowActionModeOverlay com.tuesda.walker.circlerefresh:windowActionModeOverlay}
{@link #Theme_windowFixedHeightMajor com.tuesda.walker.circlerefresh:windowFixedHeightMajor}
{@link #Theme_windowFixedHeightMinor com.tuesda.walker.circlerefresh:windowFixedHeightMinor}
{@link #Theme_windowFixedWidthMajor com.tuesda.walker.circlerefresh:windowFixedWidthMajor}
{@link #Theme_windowFixedWidthMinor com.tuesda.walker.circlerefresh:windowFixedWidthMinor}
{@link #Theme_windowMinWidthMajor com.tuesda.walker.circlerefresh:windowMinWidthMajor}
{@link #Theme_windowMinWidthMinor com.tuesda.walker.circlerefresh:windowMinWidthMinor}
{@link #Theme_windowNoTitle com.tuesda.walker.circlerefresh:windowNoTitle}
- @see #Theme_actionBarDivider - @see #Theme_actionBarItemBackground - @see #Theme_actionBarPopupTheme - @see #Theme_actionBarSize - @see #Theme_actionBarSplitStyle - @see #Theme_actionBarStyle - @see #Theme_actionBarTabBarStyle - @see #Theme_actionBarTabStyle - @see #Theme_actionBarTabTextStyle - @see #Theme_actionBarTheme - @see #Theme_actionBarWidgetTheme - @see #Theme_actionButtonStyle - @see #Theme_actionDropDownStyle - @see #Theme_actionMenuTextAppearance - @see #Theme_actionMenuTextColor - @see #Theme_actionModeBackground - @see #Theme_actionModeCloseButtonStyle - @see #Theme_actionModeCloseDrawable - @see #Theme_actionModeCopyDrawable - @see #Theme_actionModeCutDrawable - @see #Theme_actionModeFindDrawable - @see #Theme_actionModePasteDrawable - @see #Theme_actionModePopupWindowStyle - @see #Theme_actionModeSelectAllDrawable - @see #Theme_actionModeShareDrawable - @see #Theme_actionModeSplitBackground - @see #Theme_actionModeStyle - @see #Theme_actionModeWebSearchDrawable - @see #Theme_actionOverflowButtonStyle - @see #Theme_actionOverflowMenuStyle - @see #Theme_activityChooserViewStyle - @see #Theme_alertDialogButtonGroupStyle - @see #Theme_alertDialogCenterButtons - @see #Theme_alertDialogStyle - @see #Theme_alertDialogTheme - @see #Theme_android_windowAnimationStyle - @see #Theme_android_windowIsFloating - @see #Theme_autoCompleteTextViewStyle - @see #Theme_buttonBarButtonStyle - @see #Theme_buttonBarNegativeButtonStyle - @see #Theme_buttonBarNeutralButtonStyle - @see #Theme_buttonBarPositiveButtonStyle - @see #Theme_buttonBarStyle - @see #Theme_buttonStyle - @see #Theme_buttonStyleSmall - @see #Theme_checkboxStyle - @see #Theme_checkedTextViewStyle - @see #Theme_colorAccent - @see #Theme_colorButtonNormal - @see #Theme_colorControlActivated - @see #Theme_colorControlHighlight - @see #Theme_colorControlNormal - @see #Theme_colorPrimary - @see #Theme_colorPrimaryDark - @see #Theme_colorSwitchThumbNormal - @see #Theme_dialogPreferredPadding - @see #Theme_dialogTheme - @see #Theme_dividerHorizontal - @see #Theme_dividerVertical - @see #Theme_dropDownListViewStyle - @see #Theme_dropdownListPreferredItemHeight - @see #Theme_editTextBackground - @see #Theme_editTextColor - @see #Theme_editTextStyle - @see #Theme_homeAsUpIndicator - @see #Theme_listChoiceBackgroundIndicator - @see #Theme_listDividerAlertDialog - @see #Theme_listPopupWindowStyle - @see #Theme_listPreferredItemHeight - @see #Theme_listPreferredItemHeightLarge - @see #Theme_listPreferredItemHeightSmall - @see #Theme_listPreferredItemPaddingLeft - @see #Theme_listPreferredItemPaddingRight - @see #Theme_panelBackground - @see #Theme_panelMenuListTheme - @see #Theme_panelMenuListWidth - @see #Theme_popupMenuStyle - @see #Theme_popupWindowStyle - @see #Theme_radioButtonStyle - @see #Theme_ratingBarStyle - @see #Theme_searchViewStyle - @see #Theme_selectableItemBackground - @see #Theme_selectableItemBackgroundBorderless - @see #Theme_spinnerDropDownItemStyle - @see #Theme_spinnerStyle - @see #Theme_switchStyle - @see #Theme_textAppearanceLargePopupMenu - @see #Theme_textAppearanceListItem - @see #Theme_textAppearanceListItemSmall - @see #Theme_textAppearanceSearchResultSubtitle - @see #Theme_textAppearanceSearchResultTitle - @see #Theme_textAppearanceSmallPopupMenu - @see #Theme_textColorAlertDialogListItem - @see #Theme_textColorSearchUrl - @see #Theme_toolbarNavigationButtonStyle - @see #Theme_toolbarStyle - @see #Theme_windowActionBar - @see #Theme_windowActionBarOverlay - @see #Theme_windowActionModeOverlay - @see #Theme_windowFixedHeightMajor - @see #Theme_windowFixedHeightMinor - @see #Theme_windowFixedWidthMajor - @see #Theme_windowFixedWidthMinor - @see #Theme_windowMinWidthMajor - @see #Theme_windowMinWidthMinor - @see #Theme_windowNoTitle - */ - public static final int[] Theme = { - 0x01010057, 0x010100ae, 0x7f010051, 0x7f010052, - 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, - 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, - 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, - 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, - 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, - 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, - 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, - 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, - 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, - 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, - 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, - 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, - 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, - 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, - 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, - 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, - 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, - 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, - 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, - 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, - 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, - 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, - 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, - 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, - 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, - 0x7f0100b7, 0x7f0100b8 - }; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionBarDivider} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionBarDivider - */ - public static int Theme_actionBarDivider = 23; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionBarItemBackground} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionBarItemBackground - */ - public static int Theme_actionBarItemBackground = 24; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionBarPopupTheme} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionBarPopupTheme - */ - public static int Theme_actionBarPopupTheme = 17; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionBarSize} - attribute's value can be found in the {@link #Theme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. -

May be one of the following constant values.

- ---- - -
ConstantValueDescription
wrap_content0
- @attr name com.tuesda.walker.circlerefresh:actionBarSize - */ - public static int Theme_actionBarSize = 22; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionBarSplitStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionBarSplitStyle - */ - public static int Theme_actionBarSplitStyle = 19; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionBarStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionBarStyle - */ - public static int Theme_actionBarStyle = 18; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionBarTabBarStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionBarTabBarStyle - */ - public static int Theme_actionBarTabBarStyle = 13; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionBarTabStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionBarTabStyle - */ - public static int Theme_actionBarTabStyle = 12; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionBarTabTextStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionBarTabTextStyle - */ - public static int Theme_actionBarTabTextStyle = 14; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionBarTheme} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionBarTheme - */ - public static int Theme_actionBarTheme = 20; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionBarWidgetTheme} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionBarWidgetTheme - */ - public static int Theme_actionBarWidgetTheme = 21; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionButtonStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionButtonStyle - */ - public static int Theme_actionButtonStyle = 49; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionDropDownStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionDropDownStyle - */ - public static int Theme_actionDropDownStyle = 45; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionMenuTextAppearance} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionMenuTextAppearance - */ - public static int Theme_actionMenuTextAppearance = 25; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionMenuTextColor} - attribute's value can be found in the {@link #Theme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name com.tuesda.walker.circlerefresh:actionMenuTextColor - */ - public static int Theme_actionMenuTextColor = 26; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionModeBackground} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionModeBackground - */ - public static int Theme_actionModeBackground = 29; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionModeCloseButtonStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionModeCloseButtonStyle - */ - public static int Theme_actionModeCloseButtonStyle = 28; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionModeCloseDrawable} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionModeCloseDrawable - */ - public static int Theme_actionModeCloseDrawable = 31; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionModeCopyDrawable} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionModeCopyDrawable - */ - public static int Theme_actionModeCopyDrawable = 33; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionModeCutDrawable} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionModeCutDrawable - */ - public static int Theme_actionModeCutDrawable = 32; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionModeFindDrawable} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionModeFindDrawable - */ - public static int Theme_actionModeFindDrawable = 37; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionModePasteDrawable} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionModePasteDrawable - */ - public static int Theme_actionModePasteDrawable = 34; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionModePopupWindowStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionModePopupWindowStyle - */ - public static int Theme_actionModePopupWindowStyle = 39; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionModeSelectAllDrawable} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionModeSelectAllDrawable - */ - public static int Theme_actionModeSelectAllDrawable = 35; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionModeShareDrawable} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionModeShareDrawable - */ - public static int Theme_actionModeShareDrawable = 36; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionModeSplitBackground} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionModeSplitBackground - */ - public static int Theme_actionModeSplitBackground = 30; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionModeStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionModeStyle - */ - public static int Theme_actionModeStyle = 27; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionModeWebSearchDrawable} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionModeWebSearchDrawable - */ - public static int Theme_actionModeWebSearchDrawable = 38; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionOverflowButtonStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionOverflowButtonStyle - */ - public static int Theme_actionOverflowButtonStyle = 15; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#actionOverflowMenuStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:actionOverflowMenuStyle - */ - public static int Theme_actionOverflowMenuStyle = 16; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#activityChooserViewStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:activityChooserViewStyle - */ - public static int Theme_activityChooserViewStyle = 56; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#alertDialogButtonGroupStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:alertDialogButtonGroupStyle - */ - public static int Theme_alertDialogButtonGroupStyle = 89; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#alertDialogCenterButtons} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:alertDialogCenterButtons - */ - public static int Theme_alertDialogCenterButtons = 90; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#alertDialogStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:alertDialogStyle - */ - public static int Theme_alertDialogStyle = 88; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#alertDialogTheme} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:alertDialogTheme - */ - public static int Theme_alertDialogTheme = 91; - /** -

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} - attribute's value can be found in the {@link #Theme} array. - @attr name android:windowAnimationStyle - */ - public static int Theme_android_windowAnimationStyle = 1; - /** -

This symbol is the offset where the {@link android.R.attr#windowIsFloating} - attribute's value can be found in the {@link #Theme} array. - @attr name android:windowIsFloating - */ - public static int Theme_android_windowIsFloating = 0; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#autoCompleteTextViewStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:autoCompleteTextViewStyle - */ - public static int Theme_autoCompleteTextViewStyle = 96; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#buttonBarButtonStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:buttonBarButtonStyle - */ - public static int Theme_buttonBarButtonStyle = 51; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#buttonBarNegativeButtonStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:buttonBarNegativeButtonStyle - */ - public static int Theme_buttonBarNegativeButtonStyle = 94; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#buttonBarNeutralButtonStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:buttonBarNeutralButtonStyle - */ - public static int Theme_buttonBarNeutralButtonStyle = 95; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#buttonBarPositiveButtonStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:buttonBarPositiveButtonStyle - */ - public static int Theme_buttonBarPositiveButtonStyle = 93; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#buttonBarStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:buttonBarStyle - */ - public static int Theme_buttonBarStyle = 50; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#buttonStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:buttonStyle - */ - public static int Theme_buttonStyle = 97; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#buttonStyleSmall} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:buttonStyleSmall - */ - public static int Theme_buttonStyleSmall = 98; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#checkboxStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:checkboxStyle - */ - public static int Theme_checkboxStyle = 99; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#checkedTextViewStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:checkedTextViewStyle - */ - public static int Theme_checkedTextViewStyle = 100; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#colorAccent} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:colorAccent - */ - public static int Theme_colorAccent = 82; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#colorButtonNormal} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:colorButtonNormal - */ - public static int Theme_colorButtonNormal = 86; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#colorControlActivated} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:colorControlActivated - */ - public static int Theme_colorControlActivated = 84; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#colorControlHighlight} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:colorControlHighlight - */ - public static int Theme_colorControlHighlight = 85; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#colorControlNormal} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:colorControlNormal - */ - public static int Theme_colorControlNormal = 83; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#colorPrimary} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:colorPrimary - */ - public static int Theme_colorPrimary = 80; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#colorPrimaryDark} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:colorPrimaryDark - */ - public static int Theme_colorPrimaryDark = 81; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#colorSwitchThumbNormal} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:colorSwitchThumbNormal - */ - public static int Theme_colorSwitchThumbNormal = 87; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#dialogPreferredPadding} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:dialogPreferredPadding - */ - public static int Theme_dialogPreferredPadding = 43; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#dialogTheme} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:dialogTheme - */ - public static int Theme_dialogTheme = 42; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#dividerHorizontal} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:dividerHorizontal - */ - public static int Theme_dividerHorizontal = 55; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#dividerVertical} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:dividerVertical - */ - public static int Theme_dividerVertical = 54; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#dropDownListViewStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:dropDownListViewStyle - */ - public static int Theme_dropDownListViewStyle = 72; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#dropdownListPreferredItemHeight} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:dropdownListPreferredItemHeight - */ - public static int Theme_dropdownListPreferredItemHeight = 46; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#editTextBackground} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:editTextBackground - */ - public static int Theme_editTextBackground = 62; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#editTextColor} - attribute's value can be found in the {@link #Theme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name com.tuesda.walker.circlerefresh:editTextColor - */ - public static int Theme_editTextColor = 61; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#editTextStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:editTextStyle - */ - public static int Theme_editTextStyle = 101; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#homeAsUpIndicator} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:homeAsUpIndicator - */ - public static int Theme_homeAsUpIndicator = 48; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#listChoiceBackgroundIndicator} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:listChoiceBackgroundIndicator - */ - public static int Theme_listChoiceBackgroundIndicator = 79; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#listDividerAlertDialog} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:listDividerAlertDialog - */ - public static int Theme_listDividerAlertDialog = 44; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#listPopupWindowStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:listPopupWindowStyle - */ - public static int Theme_listPopupWindowStyle = 73; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#listPreferredItemHeight} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:listPreferredItemHeight - */ - public static int Theme_listPreferredItemHeight = 67; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#listPreferredItemHeightLarge} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:listPreferredItemHeightLarge - */ - public static int Theme_listPreferredItemHeightLarge = 69; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#listPreferredItemHeightSmall} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:listPreferredItemHeightSmall - */ - public static int Theme_listPreferredItemHeightSmall = 68; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#listPreferredItemPaddingLeft} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:listPreferredItemPaddingLeft - */ - public static int Theme_listPreferredItemPaddingLeft = 70; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#listPreferredItemPaddingRight} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:listPreferredItemPaddingRight - */ - public static int Theme_listPreferredItemPaddingRight = 71; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#panelBackground} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:panelBackground - */ - public static int Theme_panelBackground = 76; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#panelMenuListTheme} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:panelMenuListTheme - */ - public static int Theme_panelMenuListTheme = 78; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#panelMenuListWidth} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:panelMenuListWidth - */ - public static int Theme_panelMenuListWidth = 77; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#popupMenuStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:popupMenuStyle - */ - public static int Theme_popupMenuStyle = 59; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#popupWindowStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:popupWindowStyle - */ - public static int Theme_popupWindowStyle = 60; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#radioButtonStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:radioButtonStyle - */ - public static int Theme_radioButtonStyle = 102; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#ratingBarStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:ratingBarStyle - */ - public static int Theme_ratingBarStyle = 103; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#searchViewStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:searchViewStyle - */ - public static int Theme_searchViewStyle = 66; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#selectableItemBackground} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:selectableItemBackground - */ - public static int Theme_selectableItemBackground = 52; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#selectableItemBackgroundBorderless} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:selectableItemBackgroundBorderless - */ - public static int Theme_selectableItemBackgroundBorderless = 53; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#spinnerDropDownItemStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:spinnerDropDownItemStyle - */ - public static int Theme_spinnerDropDownItemStyle = 47; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#spinnerStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:spinnerStyle - */ - public static int Theme_spinnerStyle = 104; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#switchStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:switchStyle - */ - public static int Theme_switchStyle = 105; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#textAppearanceLargePopupMenu} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:textAppearanceLargePopupMenu - */ - public static int Theme_textAppearanceLargePopupMenu = 40; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#textAppearanceListItem} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:textAppearanceListItem - */ - public static int Theme_textAppearanceListItem = 74; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#textAppearanceListItemSmall} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:textAppearanceListItemSmall - */ - public static int Theme_textAppearanceListItemSmall = 75; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#textAppearanceSearchResultSubtitle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:textAppearanceSearchResultSubtitle - */ - public static int Theme_textAppearanceSearchResultSubtitle = 64; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#textAppearanceSearchResultTitle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:textAppearanceSearchResultTitle - */ - public static int Theme_textAppearanceSearchResultTitle = 63; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#textAppearanceSmallPopupMenu} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:textAppearanceSmallPopupMenu - */ - public static int Theme_textAppearanceSmallPopupMenu = 41; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#textColorAlertDialogListItem} - attribute's value can be found in the {@link #Theme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name com.tuesda.walker.circlerefresh:textColorAlertDialogListItem - */ - public static int Theme_textColorAlertDialogListItem = 92; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#textColorSearchUrl} - attribute's value can be found in the {@link #Theme} array. - - -

May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". - @attr name com.tuesda.walker.circlerefresh:textColorSearchUrl - */ - public static int Theme_textColorSearchUrl = 65; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#toolbarNavigationButtonStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:toolbarNavigationButtonStyle - */ - public static int Theme_toolbarNavigationButtonStyle = 58; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#toolbarStyle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:toolbarStyle - */ - public static int Theme_toolbarStyle = 57; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#windowActionBar} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:windowActionBar - */ - public static int Theme_windowActionBar = 2; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#windowActionBarOverlay} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:windowActionBarOverlay - */ - public static int Theme_windowActionBarOverlay = 4; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#windowActionModeOverlay} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:windowActionModeOverlay - */ - public static int Theme_windowActionModeOverlay = 5; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#windowFixedHeightMajor} - attribute's value can be found in the {@link #Theme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:windowFixedHeightMajor - */ - public static int Theme_windowFixedHeightMajor = 9; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#windowFixedHeightMinor} - attribute's value can be found in the {@link #Theme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:windowFixedHeightMinor - */ - public static int Theme_windowFixedHeightMinor = 7; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#windowFixedWidthMajor} - attribute's value can be found in the {@link #Theme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:windowFixedWidthMajor - */ - public static int Theme_windowFixedWidthMajor = 6; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#windowFixedWidthMinor} - attribute's value can be found in the {@link #Theme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:windowFixedWidthMinor - */ - public static int Theme_windowFixedWidthMinor = 8; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#windowMinWidthMajor} - attribute's value can be found in the {@link #Theme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:windowMinWidthMajor - */ - public static int Theme_windowMinWidthMajor = 10; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#windowMinWidthMinor} - attribute's value can be found in the {@link #Theme} array. - - -

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:windowMinWidthMinor - */ - public static int Theme_windowMinWidthMinor = 11; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#windowNoTitle} - attribute's value can be found in the {@link #Theme} array. - - -

Must be a boolean value, either "true" or "false". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:windowNoTitle - */ - public static int Theme_windowNoTitle = 3; - /** Attributes that can be used with a Toolbar. -

Includes the following attributes:

- - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_collapseContentDescription com.tuesda.walker.circlerefresh:collapseContentDescription}
{@link #Toolbar_collapseIcon com.tuesda.walker.circlerefresh:collapseIcon}
{@link #Toolbar_contentInsetEnd com.tuesda.walker.circlerefresh:contentInsetEnd}
{@link #Toolbar_contentInsetLeft com.tuesda.walker.circlerefresh:contentInsetLeft}
{@link #Toolbar_contentInsetRight com.tuesda.walker.circlerefresh:contentInsetRight}
{@link #Toolbar_contentInsetStart com.tuesda.walker.circlerefresh:contentInsetStart}
{@link #Toolbar_maxButtonHeight com.tuesda.walker.circlerefresh:maxButtonHeight}
{@link #Toolbar_navigationContentDescription com.tuesda.walker.circlerefresh:navigationContentDescription}
{@link #Toolbar_navigationIcon com.tuesda.walker.circlerefresh:navigationIcon}
{@link #Toolbar_popupTheme com.tuesda.walker.circlerefresh:popupTheme}
{@link #Toolbar_subtitle com.tuesda.walker.circlerefresh:subtitle}
{@link #Toolbar_subtitleTextAppearance com.tuesda.walker.circlerefresh:subtitleTextAppearance}
{@link #Toolbar_title com.tuesda.walker.circlerefresh:title}
{@link #Toolbar_titleMarginBottom com.tuesda.walker.circlerefresh:titleMarginBottom}
{@link #Toolbar_titleMarginEnd com.tuesda.walker.circlerefresh:titleMarginEnd}
{@link #Toolbar_titleMarginStart com.tuesda.walker.circlerefresh:titleMarginStart}
{@link #Toolbar_titleMarginTop com.tuesda.walker.circlerefresh:titleMarginTop}
{@link #Toolbar_titleMargins com.tuesda.walker.circlerefresh:titleMargins}
{@link #Toolbar_titleTextAppearance com.tuesda.walker.circlerefresh:titleTextAppearance}
- @see #Toolbar_android_gravity - @see #Toolbar_android_minHeight - @see #Toolbar_collapseContentDescription - @see #Toolbar_collapseIcon - @see #Toolbar_contentInsetEnd - @see #Toolbar_contentInsetLeft - @see #Toolbar_contentInsetRight - @see #Toolbar_contentInsetStart - @see #Toolbar_maxButtonHeight - @see #Toolbar_navigationContentDescription - @see #Toolbar_navigationIcon - @see #Toolbar_popupTheme - @see #Toolbar_subtitle - @see #Toolbar_subtitleTextAppearance - @see #Toolbar_title - @see #Toolbar_titleMarginBottom - @see #Toolbar_titleMarginEnd - @see #Toolbar_titleMarginStart - @see #Toolbar_titleMarginTop - @see #Toolbar_titleMargins - @see #Toolbar_titleTextAppearance - */ - public static final int[] Toolbar = { - 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, - 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, - 0x7f01001b, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, - 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, - 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, - 0x7f0100c4 - }; - /** -

This symbol is the offset where the {@link android.R.attr#gravity} - attribute's value can be found in the {@link #Toolbar} array. - @attr name android:gravity - */ - public static int Toolbar_android_gravity = 0; - /** -

This symbol is the offset where the {@link android.R.attr#minHeight} - attribute's value can be found in the {@link #Toolbar} array. - @attr name android:minHeight - */ - public static int Toolbar_android_minHeight = 1; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#collapseContentDescription} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:collapseContentDescription - */ - public static int Toolbar_collapseContentDescription = 18; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#collapseIcon} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:collapseIcon - */ - public static int Toolbar_collapseIcon = 17; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#contentInsetEnd} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:contentInsetEnd - */ - public static int Toolbar_contentInsetEnd = 5; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#contentInsetLeft} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:contentInsetLeft - */ - public static int Toolbar_contentInsetLeft = 6; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#contentInsetRight} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:contentInsetRight - */ - public static int Toolbar_contentInsetRight = 7; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#contentInsetStart} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:contentInsetStart - */ - public static int Toolbar_contentInsetStart = 4; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#maxButtonHeight} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:maxButtonHeight - */ - public static int Toolbar_maxButtonHeight = 16; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#navigationContentDescription} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:navigationContentDescription - */ - public static int Toolbar_navigationContentDescription = 20; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#navigationIcon} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:navigationIcon - */ - public static int Toolbar_navigationIcon = 19; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#popupTheme} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:popupTheme - */ - public static int Toolbar_popupTheme = 8; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#subtitle} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:subtitle - */ - public static int Toolbar_subtitle = 3; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#subtitleTextAppearance} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:subtitleTextAppearance - */ - public static int Toolbar_subtitleTextAppearance = 10; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#title} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:title - */ - public static int Toolbar_title = 2; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#titleMarginBottom} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:titleMarginBottom - */ - public static int Toolbar_titleMarginBottom = 15; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#titleMarginEnd} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:titleMarginEnd - */ - public static int Toolbar_titleMarginEnd = 13; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#titleMarginStart} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:titleMarginStart - */ - public static int Toolbar_titleMarginStart = 12; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#titleMarginTop} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:titleMarginTop - */ - public static int Toolbar_titleMarginTop = 14; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#titleMargins} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:titleMargins - */ - public static int Toolbar_titleMargins = 11; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#titleTextAppearance} - attribute's value can be found in the {@link #Toolbar} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:titleTextAppearance - */ - public static int Toolbar_titleTextAppearance = 9; - /** Attributes that can be used with a View. -

Includes the following attributes:

- - - - - - - - - - - -
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_backgroundTint com.tuesda.walker.circlerefresh:backgroundTint}
{@link #View_backgroundTintMode com.tuesda.walker.circlerefresh:backgroundTintMode}
{@link #View_paddingEnd com.tuesda.walker.circlerefresh:paddingEnd}
{@link #View_paddingStart com.tuesda.walker.circlerefresh:paddingStart}
{@link #View_theme com.tuesda.walker.circlerefresh:theme}
- @see #View_android_focusable - @see #View_android_theme - @see #View_backgroundTint - @see #View_backgroundTintMode - @see #View_paddingEnd - @see #View_paddingStart - @see #View_theme - */ - public static final int[] View = { - 0x01010000, 0x010100da, 0x7f0100c5, 0x7f0100c6, - 0x7f0100c7, 0x7f0100c8, 0x7f0100c9 - }; - /** -

This symbol is the offset where the {@link android.R.attr#focusable} - attribute's value can be found in the {@link #View} array. - @attr name android:focusable - */ - public static int View_android_focusable = 1; - /** -

This symbol is the offset where the {@link android.R.attr#theme} - attribute's value can be found in the {@link #View} array. - @attr name android:theme - */ - public static int View_android_theme = 0; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#backgroundTint} - attribute's value can be found in the {@link #View} array. - - -

Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:backgroundTint - */ - public static int View_backgroundTint = 5; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#backgroundTintMode} - attribute's value can be found in the {@link #View} array. - - -

Must be one of the following constant values.

- ---- - - - - - -
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
- @attr name com.tuesda.walker.circlerefresh:backgroundTintMode - */ - public static int View_backgroundTintMode = 6; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#paddingEnd} - attribute's value can be found in the {@link #View} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:paddingEnd - */ - public static int View_paddingEnd = 3; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#paddingStart} - attribute's value can be found in the {@link #View} array. - - -

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. - @attr name com.tuesda.walker.circlerefresh:paddingStart - */ - public static int View_paddingStart = 2; - /** -

This symbol is the offset where the {@link com.tuesda.walker.circlerefresh.R.attr#theme} - attribute's value can be found in the {@link #View} array. - - -

Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". - @attr name com.tuesda.walker.circlerefresh:theme - */ - public static int View_theme = 4; - /** Attributes that can be used with a ViewStubCompat. -

Includes the following attributes:

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

This symbol is the offset where the {@link android.R.attr#id} - attribute's value can be found in the {@link #ViewStubCompat} array. - @attr name android:id - */ - public static int ViewStubCompat_android_id = 0; - /** -

This symbol is the offset where the {@link android.R.attr#inflatedId} - attribute's value can be found in the {@link #ViewStubCompat} array. - @attr name android:inflatedId - */ - public static int ViewStubCompat_android_inflatedId = 2; - /** -

This symbol is the offset where the {@link android.R.attr#layout} - attribute's value can be found in the {@link #ViewStubCompat} array. - @attr name android:layout - */ - public static int ViewStubCompat_android_layout = 1; - }; -} diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-af.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-af.json new file mode 100644 index 0000000..2ecf6d8 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-af.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 103, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 99, + "endOffset": 254 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 99, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 259, + "endColumn": 105, + "endOffset": 360 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 105, + "endOffset": 596 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 365, + "endColumn": 84, + "endOffset": 445 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 601, + "endColumn": 84, + "endOffset": 681 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 450, + "endColumn": 102, + "endOffset": 548 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 102, + "endOffset": 784 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 553, + "endColumn": 117, + "endOffset": 666 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 789, + "endColumn": 117, + "endOffset": 902 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 671, + "endColumn": 106, + "endOffset": 773 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 106, + "endOffset": 1009 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 778, + "endColumn": 102, + "endOffset": 876 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 102, + "endOffset": 1112 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 881, + "endColumn": 96, + "endOffset": 973 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 96, + "endOffset": 1209 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 107, + "endOffset": 1081 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1214, + "endColumn": 107, + "endOffset": 1317 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1086, + "endColumn": 101, + "endOffset": 1183 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1322, + "endColumn": 101, + "endOffset": 1419 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1188, + "endColumn": 101, + "endOffset": 1285 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1424, + "endColumn": 101, + "endOffset": 1521 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1290, + "endColumn": 116, + "endOffset": 1402 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1526, + "endColumn": 116, + "endOffset": 1638 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-am.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-am.json new file mode 100644 index 0000000..d4b0434 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-am.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 101, + "endOffset": 152 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 101, + "endOffset": 388 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 157, + "endColumn": 98, + "endOffset": 251 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 98, + "endOffset": 487 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 256, + "endColumn": 105, + "endOffset": 357 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 492, + "endColumn": 105, + "endOffset": 593 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 362, + "endColumn": 85, + "endOffset": 443 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 85, + "endOffset": 679 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 448, + "endColumn": 102, + "endOffset": 546 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 684, + "endColumn": 102, + "endOffset": 782 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 551, + "endColumn": 112, + "endOffset": 659 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 787, + "endColumn": 112, + "endOffset": 895 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 664, + "endColumn": 99, + "endOffset": 759 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 900, + "endColumn": 99, + "endOffset": 995 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 764, + "endColumn": 99, + "endOffset": 859 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 99, + "endOffset": 1095 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 864, + "endColumn": 95, + "endOffset": 955 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1100, + "endColumn": 95, + "endOffset": 1191 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 960, + "endColumn": 102, + "endOffset": 1058 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1196, + "endColumn": 102, + "endOffset": 1294 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1063, + "endColumn": 98, + "endOffset": 1157 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1299, + "endColumn": 98, + "endOffset": 1393 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1162, + "endColumn": 106, + "endOffset": 1264 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1398, + "endColumn": 106, + "endOffset": 1500 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1269, + "endColumn": 115, + "endOffset": 1380 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1505, + "endColumn": 115, + "endOffset": 1616 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ar.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ar.json new file mode 100644 index 0000000..e3aac98 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ar.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 116, + "endOffset": 403 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 103, + "endOffset": 271 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 408, + "endColumn": 103, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 276, + "endColumn": 108, + "endOffset": 380 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 108, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 385, + "endColumn": 81, + "endOffset": 462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 81, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 467, + "endColumn": 100, + "endOffset": 563 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 100, + "endOffset": 799 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 568, + "endColumn": 113, + "endOffset": 677 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 804, + "endColumn": 113, + "endOffset": 913 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 682, + "endColumn": 104, + "endOffset": 782 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 918, + "endColumn": 104, + "endOffset": 1018 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 787, + "endColumn": 100, + "endOffset": 883 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1023, + "endColumn": 100, + "endOffset": 1119 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 888, + "endColumn": 95, + "endOffset": 979 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1124, + "endColumn": 95, + "endOffset": 1215 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 984, + "endColumn": 107, + "endOffset": 1087 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1220, + "endColumn": 107, + "endOffset": 1323 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 102, + "endOffset": 1190 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 102, + "endOffset": 1426 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1195, + "endColumn": 102, + "endOffset": 1293 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1431, + "endColumn": 102, + "endOffset": 1529 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1298, + "endColumn": 118, + "endOffset": 1412 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1534, + "endColumn": 118, + "endOffset": 1648 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-bg.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-bg.json new file mode 100644 index 0000000..47d0036 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-bg.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 114, + "endOffset": 165 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 114, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 106, + "endOffset": 272 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 106, + "endOffset": 508 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 104, + "endOffset": 377 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 513, + "endColumn": 104, + "endOffset": 613 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 382, + "endColumn": 85, + "endOffset": 463 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 618, + "endColumn": 85, + "endOffset": 699 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 468, + "endColumn": 104, + "endOffset": 568 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 704, + "endColumn": 104, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 573, + "endColumn": 120, + "endOffset": 689 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 120, + "endOffset": 925 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 694, + "endColumn": 113, + "endOffset": 803 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 930, + "endColumn": 113, + "endOffset": 1039 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 808, + "endColumn": 108, + "endOffset": 912 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1044, + "endColumn": 108, + "endOffset": 1148 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 99, + "endOffset": 1012 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1153, + "endColumn": 99, + "endOffset": 1248 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1017, + "endColumn": 113, + "endOffset": 1126 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1253, + "endColumn": 113, + "endOffset": 1362 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1131, + "endColumn": 105, + "endOffset": 1232 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1367, + "endColumn": 105, + "endOffset": 1468 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1237, + "endColumn": 107, + "endOffset": 1340 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1473, + "endColumn": 107, + "endOffset": 1576 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1345, + "endColumn": 122, + "endOffset": 1463 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1581, + "endColumn": 122, + "endOffset": 1699 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-bn-rBD.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-bn-rBD.json new file mode 100644 index 0000000..14ebccb --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-bn-rBD.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn-rBD/values-bn-rBD.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 108, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 111, + "endOffset": 271 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 111, + "endOffset": 511 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 276, + "endColumn": 105, + "endOffset": 377 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 105, + "endOffset": 617 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 382, + "endColumn": 93, + "endOffset": 471 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 622, + "endColumn": 93, + "endOffset": 711 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 476, + "endColumn": 104, + "endOffset": 576 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 716, + "endColumn": 104, + "endOffset": 816 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 581, + "endColumn": 129, + "endOffset": 706 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 821, + "endColumn": 129, + "endOffset": 946 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 711, + "endColumn": 109, + "endOffset": 816 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 951, + "endColumn": 109, + "endOffset": 1056 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 821, + "endColumn": 115, + "endOffset": 932 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1061, + "endColumn": 115, + "endOffset": 1172 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 937, + "endColumn": 106, + "endOffset": 1039 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1177, + "endColumn": 106, + "endOffset": 1279 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1044, + "endColumn": 109, + "endOffset": 1149 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1284, + "endColumn": 109, + "endOffset": 1389 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1154, + "endColumn": 105, + "endOffset": 1255 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1394, + "endColumn": 105, + "endOffset": 1495 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 109, + "endOffset": 1365 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1500, + "endColumn": 109, + "endOffset": 1605 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 124, + "endOffset": 1490 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1610, + "endColumn": 124, + "endOffset": 1730 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ca.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ca.json new file mode 100644 index 0000000..6f7c1df --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ca.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 117, + "endOffset": 404 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 105, + "endOffset": 274 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 409, + "endColumn": 105, + "endOffset": 510 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 279, + "endColumn": 106, + "endOffset": 381 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 515, + "endColumn": 106, + "endOffset": 617 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 386, + "endColumn": 82, + "endOffset": 464 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 622, + "endColumn": 82, + "endOffset": 700 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 469, + "endColumn": 107, + "endOffset": 572 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 705, + "endColumn": 107, + "endOffset": 808 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 577, + "endColumn": 125, + "endOffset": 698 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 813, + "endColumn": 125, + "endOffset": 934 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 110, + "endOffset": 809 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 939, + "endColumn": 110, + "endOffset": 1045 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 814, + "endColumn": 108, + "endOffset": 918 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 108, + "endOffset": 1154 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 923, + "endColumn": 97, + "endOffset": 1016 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1159, + "endColumn": 97, + "endOffset": 1252 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1021, + "endColumn": 109, + "endOffset": 1126 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1257, + "endColumn": 109, + "endOffset": 1362 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1131, + "endColumn": 103, + "endOffset": 1230 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1367, + "endColumn": 103, + "endOffset": 1466 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 107, + "endOffset": 1338 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1471, + "endColumn": 107, + "endOffset": 1574 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1343, + "endColumn": 122, + "endOffset": 1461 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1579, + "endColumn": 122, + "endOffset": 1697 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-cs.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-cs.json new file mode 100644 index 0000000..6ebfa45 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-cs.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 106, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 101, + "endOffset": 259 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 101, + "endOffset": 495 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 264, + "endColumn": 108, + "endOffset": 368 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 500, + "endColumn": 108, + "endOffset": 604 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 373, + "endColumn": 85, + "endOffset": 454 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 609, + "endColumn": 85, + "endOffset": 690 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 459, + "endColumn": 104, + "endOffset": 559 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 104, + "endOffset": 795 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 564, + "endColumn": 116, + "endOffset": 676 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 800, + "endColumn": 116, + "endOffset": 912 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 103, + "endOffset": 780 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 103, + "endOffset": 1016 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 785, + "endColumn": 108, + "endOffset": 889 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1021, + "endColumn": 108, + "endOffset": 1125 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 894, + "endColumn": 98, + "endOffset": 988 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1130, + "endColumn": 98, + "endOffset": 1224 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 993, + "endColumn": 105, + "endOffset": 1094 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1229, + "endColumn": 105, + "endOffset": 1330 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1099, + "endColumn": 109, + "endOffset": 1204 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1335, + "endColumn": 109, + "endOffset": 1440 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1209, + "endColumn": 106, + "endOffset": 1311 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1445, + "endColumn": 106, + "endOffset": 1547 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1316, + "endColumn": 121, + "endOffset": 1433 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1552, + "endColumn": 121, + "endOffset": 1669 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-da.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-da.json new file mode 100644 index 0000000..d41f651 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-da.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 102, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 98, + "endOffset": 252 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 98, + "endOffset": 488 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 257, + "endColumn": 111, + "endOffset": 364 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 493, + "endColumn": 111, + "endOffset": 600 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 369, + "endColumn": 82, + "endOffset": 447 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 605, + "endColumn": 82, + "endOffset": 683 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 452, + "endColumn": 99, + "endOffset": 547 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 99, + "endOffset": 783 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 552, + "endColumn": 112, + "endOffset": 660 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 112, + "endOffset": 896 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 665, + "endColumn": 108, + "endOffset": 769 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 901, + "endColumn": 108, + "endOffset": 1005 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 774, + "endColumn": 107, + "endOffset": 877 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 107, + "endOffset": 1113 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 882, + "endColumn": 95, + "endOffset": 973 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1118, + "endColumn": 95, + "endOffset": 1209 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 113, + "endOffset": 1087 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1214, + "endColumn": 113, + "endOffset": 1323 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 103, + "endOffset": 1191 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 103, + "endOffset": 1427 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1196, + "endColumn": 100, + "endOffset": 1292 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1432, + "endColumn": 100, + "endOffset": 1528 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1297, + "endColumn": 115, + "endOffset": 1408 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1533, + "endColumn": 115, + "endOffset": 1644 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-de.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-de.json new file mode 100644 index 0000000..c689558 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-de.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 104, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 97, + "endOffset": 253 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 97, + "endOffset": 489 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 111, + "endOffset": 365 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 111, + "endOffset": 601 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 370, + "endColumn": 85, + "endOffset": 451 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 85, + "endOffset": 687 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 456, + "endColumn": 104, + "endOffset": 556 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 104, + "endOffset": 792 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 561, + "endColumn": 114, + "endOffset": 671 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 114, + "endOffset": 907 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 676, + "endColumn": 110, + "endOffset": 782 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 110, + "endOffset": 1018 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 787, + "endColumn": 102, + "endOffset": 885 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1023, + "endColumn": 102, + "endOffset": 1121 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 890, + "endColumn": 98, + "endOffset": 984 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1126, + "endColumn": 98, + "endOffset": 1220 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 989, + "endColumn": 110, + "endOffset": 1095 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1225, + "endColumn": 110, + "endOffset": 1331 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1100, + "endColumn": 101, + "endOffset": 1197 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1336, + "endColumn": 101, + "endOffset": 1433 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1202, + "endColumn": 106, + "endOffset": 1304 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 106, + "endOffset": 1540 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1309, + "endColumn": 121, + "endOffset": 1426 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1545, + "endColumn": 121, + "endOffset": 1662 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-el.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-el.json new file mode 100644 index 0000000..b5e906d --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-el.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 117, + "endOffset": 404 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 110, + "endOffset": 279 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 409, + "endColumn": 110, + "endOffset": 515 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 284, + "endColumn": 116, + "endOffset": 396 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 520, + "endColumn": 116, + "endOffset": 632 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 401, + "endColumn": 84, + "endOffset": 481 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 637, + "endColumn": 84, + "endOffset": 717 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 486, + "endColumn": 104, + "endOffset": 586 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 722, + "endColumn": 104, + "endOffset": 822 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 591, + "endColumn": 125, + "endOffset": 712 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 827, + "endColumn": 125, + "endOffset": 948 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 110, + "endOffset": 823 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 953, + "endColumn": 110, + "endOffset": 1059 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 828, + "endColumn": 109, + "endOffset": 933 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1064, + "endColumn": 109, + "endOffset": 1169 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 938, + "endColumn": 101, + "endOffset": 1035 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1174, + "endColumn": 101, + "endOffset": 1271 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1040, + "endColumn": 110, + "endOffset": 1146 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1276, + "endColumn": 110, + "endOffset": 1382 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1151, + "endColumn": 108, + "endOffset": 1255 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1387, + "endColumn": 108, + "endOffset": 1491 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 107, + "endOffset": 1363 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1496, + "endColumn": 107, + "endOffset": 1599 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1368, + "endColumn": 122, + "endOffset": 1486 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1604, + "endColumn": 122, + "endOffset": 1722 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-en-rGB.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-en-rGB.json new file mode 100644 index 0000000..3dfcb9c --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-en-rGB.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 103, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 99, + "endOffset": 254 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 99, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 259, + "endColumn": 107, + "endOffset": 362 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 107, + "endOffset": 602 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 367, + "endColumn": 87, + "endOffset": 450 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 607, + "endColumn": 87, + "endOffset": 690 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 455, + "endColumn": 99, + "endOffset": 550 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 99, + "endOffset": 790 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 555, + "endColumn": 114, + "endOffset": 665 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 114, + "endOffset": 905 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 670, + "endColumn": 102, + "endOffset": 768 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 910, + "endColumn": 102, + "endOffset": 1008 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 773, + "endColumn": 103, + "endOffset": 872 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 103, + "endOffset": 1112 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 877, + "endColumn": 98, + "endOffset": 971 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 98, + "endOffset": 1211 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 976, + "endColumn": 104, + "endOffset": 1076 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1216, + "endColumn": 104, + "endOffset": 1316 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1081, + "endColumn": 102, + "endOffset": 1179 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1321, + "endColumn": 102, + "endOffset": 1419 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1184, + "endColumn": 103, + "endOffset": 1283 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1424, + "endColumn": 103, + "endOffset": 1523 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1288, + "endColumn": 118, + "endOffset": 1402 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1528, + "endColumn": 118, + "endOffset": 1642 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-en-rIN.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-en-rIN.json new file mode 100644 index 0000000..2298c28 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-en-rIN.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 103, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 99, + "endOffset": 254 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 99, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 259, + "endColumn": 107, + "endOffset": 362 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 107, + "endOffset": 602 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 367, + "endColumn": 87, + "endOffset": 450 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 607, + "endColumn": 87, + "endOffset": 690 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 455, + "endColumn": 99, + "endOffset": 550 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 99, + "endOffset": 790 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 555, + "endColumn": 114, + "endOffset": 665 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 114, + "endOffset": 905 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 670, + "endColumn": 102, + "endOffset": 768 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 910, + "endColumn": 102, + "endOffset": 1008 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 773, + "endColumn": 103, + "endOffset": 872 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 103, + "endOffset": 1112 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 877, + "endColumn": 98, + "endOffset": 971 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 98, + "endOffset": 1211 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 976, + "endColumn": 104, + "endOffset": 1076 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1216, + "endColumn": 104, + "endOffset": 1316 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1081, + "endColumn": 102, + "endOffset": 1179 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1321, + "endColumn": 102, + "endOffset": 1419 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1184, + "endColumn": 103, + "endOffset": 1283 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1424, + "endColumn": 103, + "endOffset": 1523 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1288, + "endColumn": 118, + "endOffset": 1402 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1528, + "endColumn": 118, + "endOffset": 1642 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-es-rUS.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-es-rUS.json new file mode 100644 index 0000000..97e4b50 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-es-rUS.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 119, + "endOffset": 410 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 108, + "endOffset": 279 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 415, + "endColumn": 108, + "endOffset": 519 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 284, + "endColumn": 107, + "endOffset": 387 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 524, + "endColumn": 107, + "endOffset": 627 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 84, + "endOffset": 472 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 632, + "endColumn": 84, + "endOffset": 712 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 477, + "endColumn": 100, + "endOffset": 573 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 100, + "endOffset": 813 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 122, + "endOffset": 696 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 818, + "endColumn": 122, + "endOffset": 936 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 701, + "endColumn": 111, + "endOffset": 808 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 941, + "endColumn": 111, + "endOffset": 1048 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 813, + "endColumn": 111, + "endOffset": 920 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1053, + "endColumn": 111, + "endOffset": 1160 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 925, + "endColumn": 100, + "endOffset": 1021 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1165, + "endColumn": 100, + "endOffset": 1261 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1026, + "endColumn": 107, + "endOffset": 1129 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 107, + "endOffset": 1369 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1134, + "endColumn": 106, + "endOffset": 1236 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1374, + "endColumn": 106, + "endOffset": 1476 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1241, + "endColumn": 106, + "endOffset": 1343 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1481, + "endColumn": 106, + "endOffset": 1583 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1348, + "endColumn": 121, + "endOffset": 1465 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1588, + "endColumn": 121, + "endOffset": 1705 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-es.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-es.json new file mode 100644 index 0000000..9c83cd9 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-es.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 116, + "endOffset": 403 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 112, + "endOffset": 280 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 408, + "endColumn": 112, + "endOffset": 516 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 285, + "endColumn": 107, + "endOffset": 388 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 521, + "endColumn": 107, + "endOffset": 624 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 84, + "endOffset": 473 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 629, + "endColumn": 84, + "endOffset": 709 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 478, + "endColumn": 100, + "endOffset": 574 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 714, + "endColumn": 100, + "endOffset": 810 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 579, + "endColumn": 127, + "endOffset": 702 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 815, + "endColumn": 127, + "endOffset": 938 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 106, + "endOffset": 809 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 943, + "endColumn": 106, + "endOffset": 1045 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 814, + "endColumn": 99, + "endOffset": 909 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 99, + "endOffset": 1145 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 914, + "endColumn": 98, + "endOffset": 1008 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1150, + "endColumn": 98, + "endOffset": 1244 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 107, + "endOffset": 1116 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1249, + "endColumn": 107, + "endOffset": 1352 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1121, + "endColumn": 106, + "endOffset": 1223 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1357, + "endColumn": 106, + "endOffset": 1459 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1228, + "endColumn": 106, + "endOffset": 1330 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1464, + "endColumn": 106, + "endOffset": 1566 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1335, + "endColumn": 121, + "endOffset": 1452 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1571, + "endColumn": 121, + "endOffset": 1688 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-et-rEE.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-et-rEE.json new file mode 100644 index 0000000..5554ba0 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-et-rEE.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et-rEE/values-et-rEE.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 116, + "endOffset": 407 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 106, + "endOffset": 274 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 412, + "endColumn": 106, + "endOffset": 514 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 279, + "endColumn": 110, + "endOffset": 385 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 519, + "endColumn": 110, + "endOffset": 625 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 85, + "endOffset": 471 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 630, + "endColumn": 85, + "endOffset": 711 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 476, + "endColumn": 101, + "endOffset": 573 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 716, + "endColumn": 101, + "endOffset": 813 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 116, + "endOffset": 690 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 818, + "endColumn": 116, + "endOffset": 930 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 110, + "endOffset": 801 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 935, + "endColumn": 110, + "endOffset": 1041 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 806, + "endColumn": 104, + "endOffset": 906 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 104, + "endOffset": 1146 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 911, + "endColumn": 98, + "endOffset": 1005 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1151, + "endColumn": 98, + "endOffset": 1245 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 109, + "endOffset": 1115 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1250, + "endColumn": 109, + "endOffset": 1355 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1120, + "endColumn": 100, + "endOffset": 1216 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1360, + "endColumn": 100, + "endOffset": 1456 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1221, + "endColumn": 102, + "endOffset": 1319 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1461, + "endColumn": 102, + "endOffset": 1559 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1324, + "endColumn": 127, + "endOffset": 1447 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1564, + "endColumn": 127, + "endOffset": 1687 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-eu-rES.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-eu-rES.json new file mode 100644 index 0000000..3b7e3cf --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-eu-rES.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-eu-rES/values-eu-rES.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 108, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 97, + "endOffset": 257 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 97, + "endOffset": 497 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 262, + "endColumn": 109, + "endOffset": 367 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 502, + "endColumn": 109, + "endOffset": 607 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 372, + "endColumn": 85, + "endOffset": 453 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 85, + "endOffset": 693 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 458, + "endColumn": 105, + "endOffset": 559 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 105, + "endOffset": 799 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 564, + "endColumn": 123, + "endOffset": 683 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 804, + "endColumn": 123, + "endOffset": 923 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 108, + "endOffset": 792 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 928, + "endColumn": 108, + "endOffset": 1032 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 109, + "endOffset": 902 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1037, + "endColumn": 109, + "endOffset": 1142 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 98, + "endOffset": 1001 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 98, + "endOffset": 1241 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1006, + "endColumn": 108, + "endOffset": 1110 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1246, + "endColumn": 108, + "endOffset": 1350 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1115, + "endColumn": 112, + "endOffset": 1223 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1355, + "endColumn": 112, + "endOffset": 1463 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1228, + "endColumn": 110, + "endOffset": 1334 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 110, + "endOffset": 1574 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 136, + "endOffset": 1471 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1579, + "endColumn": 136, + "endOffset": 1711 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-fa.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-fa.json new file mode 100644 index 0000000..75027be --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-fa.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 109, + "endOffset": 396 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 102, + "endOffset": 263 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 401, + "endColumn": 102, + "endOffset": 499 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 110, + "endOffset": 374 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 110, + "endOffset": 610 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 379, + "endColumn": 87, + "endOffset": 462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 87, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 467, + "endColumn": 102, + "endOffset": 565 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 102, + "endOffset": 801 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 570, + "endColumn": 114, + "endOffset": 680 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 806, + "endColumn": 114, + "endOffset": 916 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 685, + "endColumn": 111, + "endOffset": 792 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 111, + "endOffset": 1028 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 102, + "endOffset": 895 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1033, + "endColumn": 102, + "endOffset": 1131 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 900, + "endColumn": 97, + "endOffset": 993 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1136, + "endColumn": 97, + "endOffset": 1229 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 998, + "endColumn": 109, + "endOffset": 1103 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1234, + "endColumn": 109, + "endOffset": 1339 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1108, + "endColumn": 102, + "endOffset": 1206 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1344, + "endColumn": 102, + "endOffset": 1442 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1211, + "endColumn": 108, + "endOffset": 1315 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1447, + "endColumn": 108, + "endOffset": 1551 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1320, + "endColumn": 124, + "endOffset": 1440 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1556, + "endColumn": 124, + "endOffset": 1676 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-fi.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-fi.json new file mode 100644 index 0000000..fc4f277 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-fi.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 107, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 99, + "endOffset": 258 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 99, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 263, + "endColumn": 100, + "endOffset": 359 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 100, + "endOffset": 595 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 364, + "endColumn": 85, + "endOffset": 445 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 600, + "endColumn": 85, + "endOffset": 681 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 450, + "endColumn": 104, + "endOffset": 550 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 104, + "endOffset": 786 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 555, + "endColumn": 117, + "endOffset": 668 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 791, + "endColumn": 117, + "endOffset": 904 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 673, + "endColumn": 106, + "endOffset": 775 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 909, + "endColumn": 106, + "endOffset": 1011 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 780, + "endColumn": 102, + "endOffset": 878 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1016, + "endColumn": 102, + "endOffset": 1114 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 883, + "endColumn": 96, + "endOffset": 975 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1119, + "endColumn": 96, + "endOffset": 1211 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 980, + "endColumn": 105, + "endOffset": 1081 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1216, + "endColumn": 105, + "endOffset": 1317 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1086, + "endColumn": 98, + "endOffset": 1180 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1322, + "endColumn": 98, + "endOffset": 1416 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1185, + "endColumn": 103, + "endOffset": 1284 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1421, + "endColumn": 103, + "endOffset": 1520 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1289, + "endColumn": 118, + "endOffset": 1403 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1525, + "endColumn": 118, + "endOffset": 1639 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-fr-rCA.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-fr-rCA.json new file mode 100644 index 0000000..9e48632 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-fr-rCA.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 110, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 114, + "endOffset": 276 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 114, + "endOffset": 516 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 110, + "endOffset": 387 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 521, + "endColumn": 110, + "endOffset": 627 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 86, + "endOffset": 474 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 632, + "endColumn": 86, + "endOffset": 714 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 479, + "endColumn": 115, + "endOffset": 590 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 719, + "endColumn": 115, + "endOffset": 830 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 595, + "endColumn": 129, + "endOffset": 720 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 835, + "endColumn": 129, + "endOffset": 960 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 725, + "endColumn": 109, + "endOffset": 830 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 965, + "endColumn": 109, + "endOffset": 1070 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 835, + "endColumn": 111, + "endOffset": 942 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1075, + "endColumn": 111, + "endOffset": 1182 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 947, + "endColumn": 102, + "endOffset": 1045 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1187, + "endColumn": 102, + "endOffset": 1285 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 110, + "endOffset": 1156 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1290, + "endColumn": 110, + "endOffset": 1396 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1161, + "endColumn": 106, + "endOffset": 1263 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1401, + "endColumn": 106, + "endOffset": 1503 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1268, + "endColumn": 106, + "endOffset": 1370 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1508, + "endColumn": 106, + "endOffset": 1610 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1375, + "endColumn": 121, + "endOffset": 1492 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1615, + "endColumn": 121, + "endOffset": 1732 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-fr.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-fr.json new file mode 100644 index 0000000..912638c --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-fr.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 110, + "endOffset": 397 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 114, + "endOffset": 276 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 402, + "endColumn": 114, + "endOffset": 512 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 110, + "endOffset": 387 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 517, + "endColumn": 110, + "endOffset": 623 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 81, + "endOffset": 469 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 628, + "endColumn": 81, + "endOffset": 705 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 474, + "endColumn": 105, + "endOffset": 575 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 710, + "endColumn": 105, + "endOffset": 811 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 580, + "endColumn": 129, + "endOffset": 705 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 816, + "endColumn": 129, + "endOffset": 941 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 710, + "endColumn": 109, + "endOffset": 815 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 946, + "endColumn": 109, + "endOffset": 1051 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 820, + "endColumn": 111, + "endOffset": 927 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1056, + "endColumn": 111, + "endOffset": 1163 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 932, + "endColumn": 102, + "endOffset": 1030 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1168, + "endColumn": 102, + "endOffset": 1266 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1035, + "endColumn": 110, + "endOffset": 1141 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1271, + "endColumn": 110, + "endOffset": 1377 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1146, + "endColumn": 106, + "endOffset": 1248 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1382, + "endColumn": 106, + "endOffset": 1484 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1253, + "endColumn": 106, + "endOffset": 1355 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1489, + "endColumn": 106, + "endOffset": 1591 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1360, + "endColumn": 121, + "endOffset": 1477 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1596, + "endColumn": 121, + "endOffset": 1713 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-gl-rES.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-gl-rES.json new file mode 100644 index 0000000..77d779e --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-gl-rES.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl-rES/values-gl-rES.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 111, + "endOffset": 162 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 111, + "endOffset": 402 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 167, + "endColumn": 111, + "endOffset": 274 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 407, + "endColumn": 111, + "endOffset": 514 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 279, + "endColumn": 107, + "endOffset": 382 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 519, + "endColumn": 107, + "endOffset": 622 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 387, + "endColumn": 84, + "endOffset": 467 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 627, + "endColumn": 84, + "endOffset": 707 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 472, + "endColumn": 101, + "endOffset": 569 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 712, + "endColumn": 101, + "endOffset": 809 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 574, + "endColumn": 125, + "endOffset": 695 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 814, + "endColumn": 125, + "endOffset": 935 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 700, + "endColumn": 106, + "endOffset": 802 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 940, + "endColumn": 106, + "endOffset": 1042 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 807, + "endColumn": 108, + "endOffset": 911 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1047, + "endColumn": 108, + "endOffset": 1151 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 916, + "endColumn": 98, + "endOffset": 1010 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 98, + "endOffset": 1250 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1015, + "endColumn": 107, + "endOffset": 1118 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1255, + "endColumn": 107, + "endOffset": 1358 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1123, + "endColumn": 102, + "endOffset": 1221 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1363, + "endColumn": 102, + "endOffset": 1461 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1226, + "endColumn": 106, + "endOffset": 1328 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1466, + "endColumn": 106, + "endOffset": 1568 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1333, + "endColumn": 121, + "endOffset": 1450 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1573, + "endColumn": 121, + "endOffset": 1690 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-h720dp-v13.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-h720dp-v13.json new file mode 100644 index 0000000..ed32308 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-h720dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 66, + "endOffset": 117 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-h720dp-v13/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 294, + "endColumn": 66, + "endOffset": 356 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-hdpi-v4.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-hdpi-v4.json new file mode 100644 index 0000000..134be16 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-hdpi-v4.json @@ -0,0 +1,28 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 6, + "endColumn": 13, + "endOffset": 325 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hdpi-v4/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 297, + "endLine": 8, + "endColumn": 13, + "endOffset": 567 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-hi.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-hi.json new file mode 100644 index 0000000..989246f --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-hi.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 114, + "endOffset": 165 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 114, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 104, + "endOffset": 270 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 104, + "endOffset": 506 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 275, + "endColumn": 106, + "endOffset": 377 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 511, + "endColumn": 106, + "endOffset": 613 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 382, + "endColumn": 84, + "endOffset": 462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 618, + "endColumn": 84, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 467, + "endColumn": 101, + "endOffset": 564 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 101, + "endOffset": 800 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 569, + "endColumn": 121, + "endOffset": 686 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 805, + "endColumn": 121, + "endOffset": 922 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 691, + "endColumn": 108, + "endOffset": 795 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 927, + "endColumn": 108, + "endOffset": 1031 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 800, + "endColumn": 101, + "endOffset": 897 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1036, + "endColumn": 101, + "endOffset": 1133 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 902, + "endColumn": 97, + "endOffset": 995 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1138, + "endColumn": 97, + "endOffset": 1231 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 109, + "endOffset": 1105 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1236, + "endColumn": 109, + "endOffset": 1341 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1110, + "endColumn": 99, + "endOffset": 1205 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 99, + "endOffset": 1441 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1210, + "endColumn": 114, + "endOffset": 1320 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1446, + "endColumn": 114, + "endOffset": 1556 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1325, + "endColumn": 124, + "endOffset": 1445 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1561, + "endColumn": 124, + "endOffset": 1681 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-hr.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-hr.json new file mode 100644 index 0000000..027d526 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-hr.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 104, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 96, + "endOffset": 252 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 96, + "endOffset": 488 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 257, + "endColumn": 109, + "endOffset": 362 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 493, + "endColumn": 109, + "endOffset": 598 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 367, + "endColumn": 85, + "endOffset": 448 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 603, + "endColumn": 85, + "endOffset": 684 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 453, + "endColumn": 103, + "endOffset": 552 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 689, + "endColumn": 103, + "endOffset": 788 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 557, + "endColumn": 118, + "endOffset": 671 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 793, + "endColumn": 118, + "endOffset": 907 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 676, + "endColumn": 103, + "endOffset": 775 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 103, + "endOffset": 1011 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 780, + "endColumn": 112, + "endOffset": 888 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1016, + "endColumn": 112, + "endOffset": 1124 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 893, + "endColumn": 105, + "endOffset": 994 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1129, + "endColumn": 105, + "endOffset": 1230 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 999, + "endColumn": 104, + "endOffset": 1099 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 104, + "endOffset": 1335 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 112, + "endOffset": 1212 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1340, + "endColumn": 112, + "endOffset": 1448 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1217, + "endColumn": 106, + "endOffset": 1319 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1453, + "endColumn": 106, + "endOffset": 1555 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1324, + "endColumn": 122, + "endOffset": 1442 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1560, + "endColumn": 122, + "endOffset": 1678 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-hu.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-hu.json new file mode 100644 index 0000000..d5bc194 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-hu.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 107, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 104, + "endOffset": 263 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 104, + "endOffset": 499 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 114, + "endOffset": 378 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 114, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 383, + "endColumn": 83, + "endOffset": 462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 83, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 467, + "endColumn": 111, + "endOffset": 574 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 111, + "endOffset": 810 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 579, + "endColumn": 129, + "endOffset": 704 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 815, + "endColumn": 129, + "endOffset": 940 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 109, + "endOffset": 814 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 109, + "endOffset": 1050 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 819, + "endColumn": 110, + "endOffset": 925 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1055, + "endColumn": 110, + "endOffset": 1161 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 930, + "endColumn": 99, + "endOffset": 1025 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1166, + "endColumn": 99, + "endOffset": 1261 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1030, + "endColumn": 110, + "endOffset": 1136 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 110, + "endOffset": 1372 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1141, + "endColumn": 107, + "endOffset": 1244 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 107, + "endOffset": 1480 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1249, + "endColumn": 118, + "endOffset": 1363 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1485, + "endColumn": 118, + "endOffset": 1599 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1368, + "endColumn": 133, + "endOffset": 1497 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1604, + "endColumn": 133, + "endOffset": 1733 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-hy-rAM.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-hy-rAM.json new file mode 100644 index 0000000..471a9f5 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-hy-rAM.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hy-rAM/values-hy-rAM.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 102, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 100, + "endOffset": 254 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 100, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 259, + "endColumn": 109, + "endOffset": 364 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 109, + "endOffset": 604 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 369, + "endColumn": 89, + "endOffset": 454 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 609, + "endColumn": 89, + "endOffset": 694 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 459, + "endColumn": 105, + "endOffset": 560 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 699, + "endColumn": 105, + "endOffset": 800 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 565, + "endColumn": 114, + "endOffset": 675 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 805, + "endColumn": 114, + "endOffset": 915 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 680, + "endColumn": 106, + "endOffset": 782 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 920, + "endColumn": 106, + "endOffset": 1022 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 787, + "endColumn": 106, + "endOffset": 889 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1027, + "endColumn": 106, + "endOffset": 1129 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 894, + "endColumn": 98, + "endOffset": 988 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1134, + "endColumn": 98, + "endOffset": 1228 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 993, + "endColumn": 109, + "endOffset": 1098 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1233, + "endColumn": 109, + "endOffset": 1338 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1103, + "endColumn": 106, + "endOffset": 1205 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1343, + "endColumn": 106, + "endOffset": 1445 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1210, + "endColumn": 100, + "endOffset": 1306 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1450, + "endColumn": 100, + "endOffset": 1546 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1311, + "endColumn": 119, + "endOffset": 1426 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1551, + "endColumn": 119, + "endOffset": 1666 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-in.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-in.json new file mode 100644 index 0000000..448907f --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-in.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 109, + "endOffset": 396 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 101, + "endOffset": 262 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 401, + "endColumn": 101, + "endOffset": 498 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 104, + "endOffset": 367 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 104, + "endOffset": 603 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 372, + "endColumn": 86, + "endOffset": 454 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 608, + "endColumn": 86, + "endOffset": 690 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 459, + "endColumn": 103, + "endOffset": 558 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 103, + "endOffset": 794 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 563, + "endColumn": 115, + "endOffset": 674 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 799, + "endColumn": 115, + "endOffset": 910 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 679, + "endColumn": 102, + "endOffset": 777 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 915, + "endColumn": 102, + "endOffset": 1013 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 108, + "endOffset": 886 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1018, + "endColumn": 108, + "endOffset": 1122 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 891, + "endColumn": 100, + "endOffset": 987 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1127, + "endColumn": 100, + "endOffset": 1223 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 992, + "endColumn": 103, + "endOffset": 1091 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1228, + "endColumn": 103, + "endOffset": 1327 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1096, + "endColumn": 107, + "endOffset": 1199 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1332, + "endColumn": 107, + "endOffset": 1435 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1204, + "endColumn": 107, + "endOffset": 1307 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1440, + "endColumn": 107, + "endOffset": 1543 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1312, + "endColumn": 122, + "endOffset": 1430 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1548, + "endColumn": 122, + "endOffset": 1666 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-is-rIS.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-is-rIS.json new file mode 100644 index 0000000..b37ffa5 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-is-rIS.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-is-rIS/values-is-rIS.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 99, + "endOffset": 150 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 99, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 155, + "endColumn": 96, + "endOffset": 247 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 96, + "endOffset": 487 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 252, + "endColumn": 111, + "endOffset": 359 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 492, + "endColumn": 111, + "endOffset": 599 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 364, + "endColumn": 84, + "endOffset": 444 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 84, + "endOffset": 684 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 449, + "endColumn": 100, + "endOffset": 545 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 689, + "endColumn": 100, + "endOffset": 785 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 550, + "endColumn": 113, + "endOffset": 659 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 790, + "endColumn": 113, + "endOffset": 899 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 664, + "endColumn": 109, + "endOffset": 769 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 904, + "endColumn": 109, + "endOffset": 1009 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 774, + "endColumn": 107, + "endOffset": 877 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 107, + "endOffset": 1117 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 882, + "endColumn": 97, + "endOffset": 975 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 97, + "endOffset": 1215 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 980, + "endColumn": 108, + "endOffset": 1084 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1220, + "endColumn": 108, + "endOffset": 1324 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1089, + "endColumn": 98, + "endOffset": 1183 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1329, + "endColumn": 98, + "endOffset": 1423 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1188, + "endColumn": 102, + "endOffset": 1286 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1428, + "endColumn": 102, + "endOffset": 1526 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1291, + "endColumn": 117, + "endOffset": 1404 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1531, + "endColumn": 117, + "endOffset": 1644 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-it.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-it.json new file mode 100644 index 0000000..10be8fd --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-it.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 108, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 99, + "endOffset": 259 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 99, + "endOffset": 495 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 264, + "endColumn": 108, + "endOffset": 368 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 500, + "endColumn": 108, + "endOffset": 604 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 373, + "endColumn": 83, + "endOffset": 452 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 609, + "endColumn": 83, + "endOffset": 688 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 457, + "endColumn": 108, + "endOffset": 561 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 693, + "endColumn": 108, + "endOffset": 797 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 566, + "endColumn": 124, + "endOffset": 686 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 802, + "endColumn": 124, + "endOffset": 922 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 691, + "endColumn": 105, + "endOffset": 792 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 927, + "endColumn": 105, + "endOffset": 1028 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 107, + "endOffset": 900 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1033, + "endColumn": 107, + "endOffset": 1136 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 905, + "endColumn": 97, + "endOffset": 998 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1141, + "endColumn": 97, + "endOffset": 1234 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1003, + "endColumn": 103, + "endOffset": 1102 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1239, + "endColumn": 103, + "endOffset": 1338 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1107, + "endColumn": 104, + "endOffset": 1207 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1343, + "endColumn": 104, + "endOffset": 1443 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1212, + "endColumn": 106, + "endOffset": 1314 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1448, + "endColumn": 106, + "endOffset": 1550 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1319, + "endColumn": 121, + "endOffset": 1436 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1555, + "endColumn": 121, + "endOffset": 1672 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-iw.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-iw.json new file mode 100644 index 0000000..486d1b0 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-iw.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 103, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 98, + "endOffset": 253 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 98, + "endOffset": 489 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 107, + "endOffset": 361 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 107, + "endOffset": 597 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 366, + "endColumn": 83, + "endOffset": 445 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 83, + "endOffset": 681 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 450, + "endColumn": 100, + "endOffset": 546 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 100, + "endOffset": 782 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 551, + "endColumn": 113, + "endOffset": 660 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 787, + "endColumn": 113, + "endOffset": 896 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 665, + "endColumn": 101, + "endOffset": 762 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 901, + "endColumn": 101, + "endOffset": 998 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 767, + "endColumn": 103, + "endOffset": 866 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1003, + "endColumn": 103, + "endOffset": 1102 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 871, + "endColumn": 95, + "endOffset": 962 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1107, + "endColumn": 95, + "endOffset": 1198 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 967, + "endColumn": 102, + "endOffset": 1065 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1203, + "endColumn": 102, + "endOffset": 1301 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1070, + "endColumn": 100, + "endOffset": 1166 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1306, + "endColumn": 100, + "endOffset": 1402 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1171, + "endColumn": 99, + "endOffset": 1266 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1407, + "endColumn": 99, + "endOffset": 1502 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1271, + "endColumn": 115, + "endOffset": 1382 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1507, + "endColumn": 115, + "endOffset": 1618 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ja.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ja.json new file mode 100644 index 0000000..935bcfc --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ja.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 96, + "endOffset": 147 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 96, + "endOffset": 383 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 152, + "endColumn": 92, + "endOffset": 240 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 388, + "endColumn": 92, + "endOffset": 476 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 245, + "endColumn": 104, + "endOffset": 345 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 481, + "endColumn": 104, + "endOffset": 581 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 350, + "endColumn": 81, + "endOffset": 427 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 586, + "endColumn": 81, + "endOffset": 663 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 432, + "endColumn": 97, + "endOffset": 525 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 668, + "endColumn": 97, + "endOffset": 761 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 530, + "endColumn": 107, + "endOffset": 633 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 766, + "endColumn": 107, + "endOffset": 869 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 638, + "endColumn": 101, + "endOffset": 735 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 874, + "endColumn": 101, + "endOffset": 971 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 740, + "endColumn": 98, + "endOffset": 834 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 976, + "endColumn": 98, + "endOffset": 1070 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 839, + "endColumn": 94, + "endOffset": 929 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1075, + "endColumn": 94, + "endOffset": 1165 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 934, + "endColumn": 102, + "endOffset": 1032 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1170, + "endColumn": 102, + "endOffset": 1268 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1037, + "endColumn": 94, + "endOffset": 1127 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1273, + "endColumn": 94, + "endOffset": 1363 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 95, + "endOffset": 1223 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1368, + "endColumn": 95, + "endOffset": 1459 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1228, + "endColumn": 110, + "endOffset": 1334 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1464, + "endColumn": 110, + "endOffset": 1570 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ka-rGE.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ka-rGE.json new file mode 100644 index 0000000..36eb141 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ka-rGE.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka-rGE/values-ka-rGE.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 108, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 103, + "endOffset": 263 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 103, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 110, + "endOffset": 374 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 110, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 379, + "endColumn": 87, + "endOffset": 462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 87, + "endOffset": 702 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 467, + "endColumn": 104, + "endOffset": 567 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 104, + "endOffset": 807 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 572, + "endColumn": 112, + "endOffset": 680 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 112, + "endOffset": 920 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 685, + "endColumn": 112, + "endOffset": 793 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 925, + "endColumn": 112, + "endOffset": 1033 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 106, + "endOffset": 900 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1038, + "endColumn": 106, + "endOffset": 1140 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 905, + "endColumn": 97, + "endOffset": 998 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1145, + "endColumn": 97, + "endOffset": 1238 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1003, + "endColumn": 112, + "endOffset": 1111 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1243, + "endColumn": 112, + "endOffset": 1351 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1116, + "endColumn": 103, + "endOffset": 1215 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 103, + "endOffset": 1455 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1220, + "endColumn": 103, + "endOffset": 1319 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1460, + "endColumn": 103, + "endOffset": 1559 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1324, + "endColumn": 121, + "endOffset": 1441 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1564, + "endColumn": 121, + "endOffset": 1681 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-kk-rKZ.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-kk-rKZ.json new file mode 100644 index 0000000..08ceb90 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-kk-rKZ.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 111, + "endOffset": 162 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 111, + "endOffset": 402 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 167, + "endColumn": 102, + "endOffset": 265 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 407, + "endColumn": 102, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 270, + "endColumn": 109, + "endOffset": 375 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 109, + "endOffset": 615 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 380, + "endColumn": 88, + "endOffset": 464 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 88, + "endOffset": 704 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 469, + "endColumn": 105, + "endOffset": 570 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 105, + "endOffset": 810 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 575, + "endColumn": 118, + "endOffset": 689 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 815, + "endColumn": 118, + "endOffset": 929 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 694, + "endColumn": 102, + "endOffset": 792 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 934, + "endColumn": 102, + "endOffset": 1032 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 104, + "endOffset": 897 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1037, + "endColumn": 104, + "endOffset": 1137 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 902, + "endColumn": 97, + "endOffset": 995 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1142, + "endColumn": 97, + "endOffset": 1235 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 106, + "endOffset": 1102 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1240, + "endColumn": 106, + "endOffset": 1342 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1107, + "endColumn": 108, + "endOffset": 1211 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1347, + "endColumn": 108, + "endOffset": 1451 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1216, + "endColumn": 99, + "endOffset": 1311 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1456, + "endColumn": 99, + "endOffset": 1551 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1316, + "endColumn": 114, + "endOffset": 1426 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1556, + "endColumn": 114, + "endOffset": 1666 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-km-rKH.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-km-rKH.json new file mode 100644 index 0000000..121175e --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-km-rKH.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km-rKH/values-km-rKH.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 102, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 99, + "endOffset": 253 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 99, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 111, + "endOffset": 365 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 111, + "endOffset": 605 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 370, + "endColumn": 86, + "endOffset": 452 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 610, + "endColumn": 86, + "endOffset": 692 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 457, + "endColumn": 103, + "endOffset": 556 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 697, + "endColumn": 103, + "endOffset": 796 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 561, + "endColumn": 117, + "endOffset": 674 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 117, + "endOffset": 914 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 679, + "endColumn": 103, + "endOffset": 778 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 919, + "endColumn": 103, + "endOffset": 1018 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 783, + "endColumn": 104, + "endOffset": 883 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1023, + "endColumn": 104, + "endOffset": 1123 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 888, + "endColumn": 99, + "endOffset": 983 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1128, + "endColumn": 99, + "endOffset": 1223 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 988, + "endColumn": 109, + "endOffset": 1093 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1228, + "endColumn": 109, + "endOffset": 1333 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1098, + "endColumn": 106, + "endOffset": 1200 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1338, + "endColumn": 106, + "endOffset": 1440 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1205, + "endColumn": 107, + "endOffset": 1308 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1445, + "endColumn": 107, + "endOffset": 1548 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1313, + "endColumn": 122, + "endOffset": 1431 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1553, + "endColumn": 122, + "endOffset": 1671 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-kn-rIN.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-kn-rIN.json new file mode 100644 index 0000000..b122a32 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-kn-rIN.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kn-rIN/values-kn-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 117, + "endOffset": 408 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 111, + "endOffset": 280 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 413, + "endColumn": 111, + "endOffset": 520 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 285, + "endColumn": 112, + "endOffset": 393 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 525, + "endColumn": 112, + "endOffset": 633 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 87, + "endOffset": 481 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 638, + "endColumn": 87, + "endOffset": 721 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 486, + "endColumn": 106, + "endOffset": 588 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 726, + "endColumn": 106, + "endOffset": 828 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 126, + "endOffset": 715 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 833, + "endColumn": 126, + "endOffset": 955 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 720, + "endColumn": 115, + "endOffset": 831 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 960, + "endColumn": 115, + "endOffset": 1071 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 836, + "endColumn": 110, + "endOffset": 942 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1076, + "endColumn": 110, + "endOffset": 1182 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 947, + "endColumn": 98, + "endOffset": 1041 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1187, + "endColumn": 98, + "endOffset": 1281 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 112, + "endOffset": 1154 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1286, + "endColumn": 112, + "endOffset": 1394 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1159, + "endColumn": 103, + "endOffset": 1258 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1399, + "endColumn": 103, + "endOffset": 1498 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1263, + "endColumn": 113, + "endOffset": 1372 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1503, + "endColumn": 113, + "endOffset": 1612 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 125, + "endOffset": 1498 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1617, + "endColumn": 125, + "endOffset": 1738 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ko.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ko.json new file mode 100644 index 0000000..cc7a22e --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ko.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 94, + "endOffset": 381 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 93, + "endOffset": 239 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 386, + "endColumn": 93, + "endOffset": 475 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 244, + "endColumn": 101, + "endOffset": 341 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 480, + "endColumn": 101, + "endOffset": 577 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 346, + "endColumn": 81, + "endOffset": 423 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 582, + "endColumn": 81, + "endOffset": 659 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 428, + "endColumn": 97, + "endOffset": 521 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 664, + "endColumn": 97, + "endOffset": 757 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 526, + "endColumn": 105, + "endOffset": 627 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 762, + "endColumn": 105, + "endOffset": 863 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 632, + "endColumn": 97, + "endOffset": 725 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 868, + "endColumn": 97, + "endOffset": 961 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 730, + "endColumn": 94, + "endOffset": 820 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 966, + "endColumn": 94, + "endOffset": 1056 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 825, + "endColumn": 94, + "endOffset": 915 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1061, + "endColumn": 94, + "endOffset": 1151 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 920, + "endColumn": 99, + "endOffset": 1015 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 99, + "endOffset": 1251 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1020, + "endColumn": 95, + "endOffset": 1111 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1256, + "endColumn": 95, + "endOffset": 1347 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1116, + "endColumn": 98, + "endOffset": 1210 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1352, + "endColumn": 98, + "endOffset": 1446 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1215, + "endColumn": 114, + "endOffset": 1325 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1451, + "endColumn": 114, + "endOffset": 1561 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ky-rKG.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ky-rKG.json new file mode 100644 index 0000000..5672037 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ky-rKG.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ky-rKG/values-ky-rKG.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 103, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 94, + "endOffset": 249 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 94, + "endOffset": 489 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 254, + "endColumn": 118, + "endOffset": 368 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 118, + "endOffset": 608 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 373, + "endColumn": 83, + "endOffset": 452 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 613, + "endColumn": 83, + "endOffset": 692 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 457, + "endColumn": 106, + "endOffset": 559 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 697, + "endColumn": 106, + "endOffset": 799 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 564, + "endColumn": 116, + "endOffset": 676 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 804, + "endColumn": 116, + "endOffset": 916 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 109, + "endOffset": 786 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 109, + "endOffset": 1026 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 791, + "endColumn": 106, + "endOffset": 893 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1031, + "endColumn": 106, + "endOffset": 1133 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 898, + "endColumn": 97, + "endOffset": 991 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1138, + "endColumn": 97, + "endOffset": 1231 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 996, + "endColumn": 105, + "endOffset": 1097 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1236, + "endColumn": 105, + "endOffset": 1337 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1102, + "endColumn": 106, + "endOffset": 1204 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1342, + "endColumn": 106, + "endOffset": 1444 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1209, + "endColumn": 100, + "endOffset": 1305 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1449, + "endColumn": 100, + "endOffset": 1545 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1310, + "endColumn": 123, + "endOffset": 1429 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1550, + "endColumn": 123, + "endOffset": 1669 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-land.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-land.json new file mode 100644 index 0000000..d0434eb --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-land.json @@ -0,0 +1,140 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-land/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 61, + "endOffset": 348 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-land/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 590, + "endColumn": 71, + "endOffset": 657 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 189, + "endColumn": 69, + "endOffset": 254 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-land/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 908, + "endColumn": 69, + "endOffset": 973 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 259, + "endColumn": 69, + "endOffset": 324 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-land/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 69, + "endOffset": 1043 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 63, + "endOffset": 388 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-land/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1285, + "endColumn": 63, + "endOffset": 1344 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 393, + "endColumn": 70, + "endOffset": 459 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-land/values.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1595, + "endColumn": 70, + "endOffset": 1661 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 464, + "endColumn": 67, + "endOffset": 527 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-land/values.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1666, + "endColumn": 67, + "endOffset": 1729 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-large-v4.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-large-v4.json new file mode 100644 index 0000000..5aa0e88 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-large-v4.json @@ -0,0 +1,216 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 292, + "endColumn": 61, + "endOffset": 349 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 592, + "endColumn": 71, + "endOffset": 659 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 189, + "endColumn": 58, + "endOffset": 243 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 664, + "endColumn": 58, + "endOffset": 718 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 248, + "endColumn": 63, + "endOffset": 307 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 961, + "endColumn": 63, + "endOffset": 1020 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 312, + "endColumn": 66, + "endOffset": 374 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1025, + "endColumn": 66, + "endOffset": 1087 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 379, + "endColumn": 66, + "endOffset": 441 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 66, + "endOffset": 1154 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 446, + "endColumn": 65, + "endOffset": 507 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1159, + "endColumn": 65, + "endOffset": 1220 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 512, + "endColumn": 65, + "endOffset": 573 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1225, + "endColumn": 65, + "endOffset": 1286 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 578, + "endColumn": 54, + "endOffset": 628 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1291, + "endColumn": 54, + "endOffset": 1341 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 633, + "endColumn": 103, + "endOffset": 732 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1589, + "endColumn": 103, + "endOffset": 1688 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 737, + "endColumn": 115, + "endOffset": 848 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1693, + "endColumn": 115, + "endOffset": 1804 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-lo-rLA.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-lo-rLA.json new file mode 100644 index 0000000..9653a66 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-lo-rLA.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lo-rLA/values-lo-rLA.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 102, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 96, + "endOffset": 250 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 96, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 255, + "endColumn": 106, + "endOffset": 357 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 106, + "endOffset": 597 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 362, + "endColumn": 84, + "endOffset": 442 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 84, + "endOffset": 682 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 447, + "endColumn": 104, + "endOffset": 547 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 687, + "endColumn": 104, + "endOffset": 787 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 552, + "endColumn": 111, + "endOffset": 659 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 792, + "endColumn": 111, + "endOffset": 899 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 664, + "endColumn": 106, + "endOffset": 766 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 904, + "endColumn": 106, + "endOffset": 1006 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 771, + "endColumn": 96, + "endOffset": 863 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1011, + "endColumn": 96, + "endOffset": 1103 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 868, + "endColumn": 97, + "endOffset": 961 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1108, + "endColumn": 97, + "endOffset": 1201 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 966, + "endColumn": 104, + "endOffset": 1066 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1206, + "endColumn": 104, + "endOffset": 1306 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1071, + "endColumn": 102, + "endOffset": 1169 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1311, + "endColumn": 102, + "endOffset": 1409 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1174, + "endColumn": 103, + "endOffset": 1273 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1414, + "endColumn": 103, + "endOffset": 1513 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 121, + "endOffset": 1395 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1518, + "endColumn": 121, + "endOffset": 1635 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-lt.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-lt.json new file mode 100644 index 0000000..eaf1197 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-lt.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lt/values-lt.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 115, + "endOffset": 166 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 115, + "endOffset": 402 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 171, + "endColumn": 100, + "endOffset": 267 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 407, + "endColumn": 100, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 112, + "endOffset": 380 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 112, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 385, + "endColumn": 86, + "endOffset": 467 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 86, + "endOffset": 703 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 472, + "endColumn": 108, + "endOffset": 576 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 108, + "endOffset": 812 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 581, + "endColumn": 120, + "endOffset": 697 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 817, + "endColumn": 120, + "endOffset": 933 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 702, + "endColumn": 108, + "endOffset": 806 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 938, + "endColumn": 108, + "endOffset": 1042 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 811, + "endColumn": 108, + "endOffset": 915 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1047, + "endColumn": 108, + "endOffset": 1151 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 920, + "endColumn": 99, + "endOffset": 1015 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 99, + "endOffset": 1251 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1020, + "endColumn": 109, + "endOffset": 1125 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1256, + "endColumn": 109, + "endOffset": 1361 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1130, + "endColumn": 103, + "endOffset": 1229 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1366, + "endColumn": 103, + "endOffset": 1465 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1234, + "endColumn": 112, + "endOffset": 1342 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1470, + "endColumn": 112, + "endOffset": 1578 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1347, + "endColumn": 129, + "endOffset": 1472 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1583, + "endColumn": 129, + "endOffset": 1708 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-lv.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-lv.json new file mode 100644 index 0000000..051c9de --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-lv.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lv/values-lv.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 119, + "endOffset": 406 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 411, + "endColumn": 107, + "endOffset": 514 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 108, + "endOffset": 387 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 519, + "endColumn": 108, + "endOffset": 623 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 85, + "endOffset": 473 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 628, + "endColumn": 85, + "endOffset": 709 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 478, + "endColumn": 103, + "endOffset": 577 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 714, + "endColumn": 103, + "endOffset": 813 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 582, + "endColumn": 121, + "endOffset": 699 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 818, + "endColumn": 121, + "endOffset": 935 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 704, + "endColumn": 108, + "endOffset": 808 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 940, + "endColumn": 108, + "endOffset": 1044 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 813, + "endColumn": 111, + "endOffset": 920 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1049, + "endColumn": 111, + "endOffset": 1156 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 925, + "endColumn": 98, + "endOffset": 1019 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1161, + "endColumn": 98, + "endOffset": 1255 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1024, + "endColumn": 110, + "endOffset": 1130 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 110, + "endOffset": 1366 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1135, + "endColumn": 108, + "endOffset": 1239 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1371, + "endColumn": 108, + "endOffset": 1475 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1244, + "endColumn": 104, + "endOffset": 1344 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1480, + "endColumn": 104, + "endOffset": 1580 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1349, + "endColumn": 118, + "endOffset": 1463 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1585, + "endColumn": 118, + "endOffset": 1699 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-mk-rMK.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-mk-rMK.json new file mode 100644 index 0000000..316b0e0 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-mk-rMK.json @@ -0,0 +1,235 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mk-rMK/values-mk-rMK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 107, + "endOffset": 398 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 103, + "endOffset": 262 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 103, + "endOffset": 502 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 107, + "endOffset": 370 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 507, + "endColumn": 107, + "endOffset": 610 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 375, + "endColumn": 85, + "endOffset": 456 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 85, + "endOffset": 696 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 461, + "endColumn": 104, + "endOffset": 561 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 701, + "endColumn": 104, + "endOffset": 801 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 566, + "endColumn": 118, + "endOffset": 680 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 806, + "endColumn": 118, + "endOffset": 920 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 685, + "endColumn": 105, + "endOffset": 786 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 925, + "endColumn": 105, + "endOffset": 1026 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 791, + "endColumn": 106, + "endOffset": 893 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1031, + "endColumn": 106, + "endOffset": 1133 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 898, + "endColumn": 100, + "endOffset": 994 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1138, + "endColumn": 100, + "endOffset": 1234 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 999, + "endColumn": 106, + "endOffset": 1101 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1239, + "endColumn": 106, + "endOffset": 1341 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1106, + "endColumn": 110, + "endOffset": 1212 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 110, + "endOffset": 1452 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1217, + "endColumn": 103, + "endOffset": 1316 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1457, + "endColumn": 103, + "endOffset": 1556 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ml-rIN.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ml-rIN.json new file mode 100644 index 0000000..a03f084 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ml-rIN.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ml-rIN/values-ml-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 118, + "endOffset": 169 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 118, + "endOffset": 409 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 174, + "endColumn": 117, + "endOffset": 287 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 414, + "endColumn": 117, + "endOffset": 527 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 292, + "endColumn": 115, + "endOffset": 403 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 532, + "endColumn": 115, + "endOffset": 643 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 408, + "endColumn": 92, + "endOffset": 496 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 648, + "endColumn": 92, + "endOffset": 736 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 501, + "endColumn": 104, + "endOffset": 601 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 741, + "endColumn": 104, + "endOffset": 841 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 131, + "endOffset": 733 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 846, + "endColumn": 131, + "endOffset": 973 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 738, + "endColumn": 110, + "endOffset": 844 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 978, + "endColumn": 110, + "endOffset": 1084 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 849, + "endColumn": 105, + "endOffset": 950 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1089, + "endColumn": 105, + "endOffset": 1190 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 955, + "endColumn": 97, + "endOffset": 1048 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1195, + "endColumn": 97, + "endOffset": 1288 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1053, + "endColumn": 113, + "endOffset": 1162 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1293, + "endColumn": 113, + "endOffset": 1402 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1167, + "endColumn": 103, + "endOffset": 1266 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1407, + "endColumn": 103, + "endOffset": 1506 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1271, + "endColumn": 110, + "endOffset": 1377 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1511, + "endColumn": 110, + "endOffset": 1617 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1382, + "endColumn": 127, + "endOffset": 1505 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1622, + "endColumn": 127, + "endOffset": 1745 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-mn-rMN.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-mn-rMN.json new file mode 100644 index 0000000..3d778e4 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-mn-rMN.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mn-rMN/values-mn-rMN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 112, + "endOffset": 163 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 112, + "endOffset": 403 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 168, + "endColumn": 99, + "endOffset": 263 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 408, + "endColumn": 99, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 112, + "endOffset": 376 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 112, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 381, + "endColumn": 86, + "endOffset": 463 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 86, + "endOffset": 703 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 468, + "endColumn": 105, + "endOffset": 569 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 105, + "endOffset": 809 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 574, + "endColumn": 111, + "endOffset": 681 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 814, + "endColumn": 111, + "endOffset": 921 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 108, + "endOffset": 790 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 926, + "endColumn": 108, + "endOffset": 1030 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 103, + "endOffset": 894 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1035, + "endColumn": 103, + "endOffset": 1134 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 899, + "endColumn": 96, + "endOffset": 991 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1139, + "endColumn": 96, + "endOffset": 1231 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 996, + "endColumn": 107, + "endOffset": 1099 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1236, + "endColumn": 107, + "endOffset": 1339 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 100, + "endOffset": 1200 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1344, + "endColumn": 100, + "endOffset": 1440 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1205, + "endColumn": 102, + "endOffset": 1303 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1445, + "endColumn": 102, + "endOffset": 1543 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1308, + "endColumn": 121, + "endOffset": 1425 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1548, + "endColumn": 121, + "endOffset": 1665 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-mr-rIN.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-mr-rIN.json new file mode 100644 index 0000000..35dcac5 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-mr-rIN.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mr-rIN/values-mr-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 117, + "endOffset": 408 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 105, + "endOffset": 274 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 413, + "endColumn": 105, + "endOffset": 514 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 279, + "endColumn": 106, + "endOffset": 381 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 519, + "endColumn": 106, + "endOffset": 621 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 386, + "endColumn": 89, + "endOffset": 471 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 626, + "endColumn": 89, + "endOffset": 711 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 476, + "endColumn": 100, + "endOffset": 572 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 716, + "endColumn": 100, + "endOffset": 812 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 577, + "endColumn": 114, + "endOffset": 687 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 817, + "endColumn": 114, + "endOffset": 927 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 111, + "endOffset": 799 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 932, + "endColumn": 111, + "endOffset": 1039 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 804, + "endColumn": 101, + "endOffset": 901 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1044, + "endColumn": 101, + "endOffset": 1141 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 906, + "endColumn": 95, + "endOffset": 997 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1146, + "endColumn": 95, + "endOffset": 1237 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1002, + "endColumn": 108, + "endOffset": 1106 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1242, + "endColumn": 108, + "endOffset": 1346 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1111, + "endColumn": 100, + "endOffset": 1207 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1351, + "endColumn": 100, + "endOffset": 1447 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1212, + "endColumn": 114, + "endOffset": 1322 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1452, + "endColumn": 114, + "endOffset": 1562 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1327, + "endColumn": 122, + "endOffset": 1445 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1567, + "endColumn": 122, + "endOffset": 1685 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ms-rMY.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ms-rMY.json new file mode 100644 index 0000000..95e8e53 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ms-rMY.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ms-rMY/values-ms-rMY.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 110, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 104, + "endOffset": 266 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 104, + "endOffset": 506 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 107, + "endOffset": 374 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 511, + "endColumn": 107, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 379, + "endColumn": 86, + "endOffset": 461 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 86, + "endOffset": 701 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 466, + "endColumn": 103, + "endOffset": 565 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 706, + "endColumn": 103, + "endOffset": 805 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 570, + "endColumn": 110, + "endOffset": 676 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 110, + "endOffset": 916 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 111, + "endOffset": 788 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 111, + "endOffset": 1028 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 793, + "endColumn": 108, + "endOffset": 897 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1033, + "endColumn": 108, + "endOffset": 1137 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 902, + "endColumn": 96, + "endOffset": 994 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1142, + "endColumn": 96, + "endOffset": 1234 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 999, + "endColumn": 108, + "endOffset": 1103 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1239, + "endColumn": 108, + "endOffset": 1343 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1108, + "endColumn": 102, + "endOffset": 1206 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1348, + "endColumn": 102, + "endOffset": 1446 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1211, + "endColumn": 106, + "endOffset": 1313 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1451, + "endColumn": 106, + "endOffset": 1553 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1318, + "endColumn": 121, + "endOffset": 1435 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1558, + "endColumn": 121, + "endOffset": 1675 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-my-rMM.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-my-rMM.json new file mode 100644 index 0000000..9fe23b3 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-my-rMM.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-my-rMM/values-my-rMM.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 108, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 104, + "endOffset": 264 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 104, + "endOffset": 504 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 269, + "endColumn": 116, + "endOffset": 381 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 509, + "endColumn": 116, + "endOffset": 621 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 386, + "endColumn": 92, + "endOffset": 474 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 626, + "endColumn": 92, + "endOffset": 714 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 479, + "endColumn": 111, + "endOffset": 586 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 719, + "endColumn": 111, + "endOffset": 826 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 591, + "endColumn": 135, + "endOffset": 722 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 831, + "endColumn": 135, + "endOffset": 962 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 727, + "endColumn": 124, + "endOffset": 847 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 967, + "endColumn": 124, + "endOffset": 1087 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 852, + "endColumn": 111, + "endOffset": 959 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 111, + "endOffset": 1199 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 964, + "endColumn": 101, + "endOffset": 1061 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1204, + "endColumn": 101, + "endOffset": 1301 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1066, + "endColumn": 125, + "endOffset": 1187 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1306, + "endColumn": 125, + "endOffset": 1427 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1192, + "endColumn": 110, + "endOffset": 1298 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1432, + "endColumn": 110, + "endOffset": 1538 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1303, + "endColumn": 109, + "endOffset": 1408 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1543, + "endColumn": 109, + "endOffset": 1648 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1413, + "endColumn": 122, + "endOffset": 1531 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1653, + "endColumn": 122, + "endOffset": 1771 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-nb.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-nb.json new file mode 100644 index 0000000..8be006e --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-nb.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nb/values-nb.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 107, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 94, + "endOffset": 253 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 94, + "endOffset": 489 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 113, + "endOffset": 367 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 113, + "endOffset": 603 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 372, + "endColumn": 85, + "endOffset": 453 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 608, + "endColumn": 85, + "endOffset": 689 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 458, + "endColumn": 99, + "endOffset": 553 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 694, + "endColumn": 99, + "endOffset": 789 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 558, + "endColumn": 112, + "endOffset": 666 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 112, + "endOffset": 902 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 671, + "endColumn": 102, + "endOffset": 769 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 102, + "endOffset": 1005 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 774, + "endColumn": 98, + "endOffset": 868 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 98, + "endOffset": 1104 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 873, + "endColumn": 95, + "endOffset": 964 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1109, + "endColumn": 95, + "endOffset": 1200 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 969, + "endColumn": 103, + "endOffset": 1068 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1205, + "endColumn": 103, + "endOffset": 1304 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 97, + "endOffset": 1166 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1309, + "endColumn": 97, + "endOffset": 1402 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1171, + "endColumn": 100, + "endOffset": 1267 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1407, + "endColumn": 100, + "endOffset": 1503 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1272, + "endColumn": 115, + "endOffset": 1383 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1508, + "endColumn": 115, + "endOffset": 1619 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ne-rNP.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ne-rNP.json new file mode 100644 index 0000000..2a9dcd6 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ne-rNP.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ne-rNP/values-ne-rNP.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 104, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 103, + "endOffset": 259 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 103, + "endOffset": 499 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 264, + "endColumn": 107, + "endOffset": 367 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 107, + "endOffset": 607 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 372, + "endColumn": 90, + "endOffset": 458 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 90, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 463, + "endColumn": 106, + "endOffset": 565 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 106, + "endOffset": 805 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 570, + "endColumn": 126, + "endOffset": 692 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 126, + "endOffset": 932 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 697, + "endColumn": 109, + "endOffset": 802 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 937, + "endColumn": 109, + "endOffset": 1042 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 807, + "endColumn": 115, + "endOffset": 918 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1047, + "endColumn": 115, + "endOffset": 1158 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 923, + "endColumn": 102, + "endOffset": 1021 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 102, + "endOffset": 1261 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1026, + "endColumn": 114, + "endOffset": 1136 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 114, + "endOffset": 1376 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1141, + "endColumn": 101, + "endOffset": 1238 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1381, + "endColumn": 101, + "endOffset": 1478 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1243, + "endColumn": 114, + "endOffset": 1353 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1483, + "endColumn": 114, + "endOffset": 1593 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1358, + "endColumn": 130, + "endOffset": 1484 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1598, + "endColumn": 130, + "endOffset": 1724 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-nl.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-nl.json new file mode 100644 index 0000000..18ecb1e --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-nl.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nl/values-nl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 117, + "endOffset": 404 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 104, + "endOffset": 273 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 409, + "endColumn": 104, + "endOffset": 509 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 106, + "endOffset": 380 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 514, + "endColumn": 106, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 385, + "endColumn": 85, + "endOffset": 466 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 85, + "endOffset": 702 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 471, + "endColumn": 107, + "endOffset": 574 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 107, + "endOffset": 810 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 579, + "endColumn": 119, + "endOffset": 694 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 815, + "endColumn": 119, + "endOffset": 930 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 699, + "endColumn": 110, + "endOffset": 805 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 935, + "endColumn": 110, + "endOffset": 1041 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 103, + "endOffset": 909 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 103, + "endOffset": 1145 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 914, + "endColumn": 98, + "endOffset": 1008 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1150, + "endColumn": 98, + "endOffset": 1244 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 114, + "endOffset": 1123 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1249, + "endColumn": 114, + "endOffset": 1359 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1128, + "endColumn": 112, + "endOffset": 1236 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 112, + "endOffset": 1472 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1241, + "endColumn": 102, + "endOffset": 1339 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1477, + "endColumn": 102, + "endOffset": 1575 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1344, + "endColumn": 117, + "endOffset": 1457 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1580, + "endColumn": 117, + "endOffset": 1693 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-pl.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-pl.json new file mode 100644 index 0000000..02f2108 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-pl.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pl/values-pl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 115, + "endOffset": 166 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 115, + "endOffset": 402 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 171, + "endColumn": 101, + "endOffset": 268 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 407, + "endColumn": 101, + "endOffset": 504 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 107, + "endOffset": 376 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 509, + "endColumn": 107, + "endOffset": 612 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 381, + "endColumn": 85, + "endOffset": 462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 617, + "endColumn": 85, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 467, + "endColumn": 108, + "endOffset": 571 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 108, + "endOffset": 807 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 576, + "endColumn": 118, + "endOffset": 690 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 118, + "endOffset": 926 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 108, + "endOffset": 799 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 931, + "endColumn": 108, + "endOffset": 1035 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 804, + "endColumn": 108, + "endOffset": 908 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1040, + "endColumn": 108, + "endOffset": 1144 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 913, + "endColumn": 98, + "endOffset": 1007 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1149, + "endColumn": 98, + "endOffset": 1243 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1012, + "endColumn": 108, + "endOffset": 1116 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1248, + "endColumn": 108, + "endOffset": 1352 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1121, + "endColumn": 110, + "endOffset": 1227 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1357, + "endColumn": 110, + "endOffset": 1463 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1232, + "endColumn": 107, + "endOffset": 1335 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 107, + "endOffset": 1571 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1340, + "endColumn": 122, + "endOffset": 1458 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1576, + "endColumn": 122, + "endOffset": 1694 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-port.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-port.json new file mode 100644 index 0000000..fbf49d9 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-port.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-port/values-port.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 55, + "endOffset": 106 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-port/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 55, + "endOffset": 342 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-pt-rPT.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-pt-rPT.json new file mode 100644 index 0000000..5e7d70d --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-pt-rPT.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt-rPT/values-pt-rPT.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 119, + "endOffset": 410 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 105, + "endOffset": 276 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 415, + "endColumn": 105, + "endOffset": 516 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 106, + "endOffset": 383 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 521, + "endColumn": 106, + "endOffset": 623 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 388, + "endColumn": 88, + "endOffset": 472 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 628, + "endColumn": 88, + "endOffset": 712 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 477, + "endColumn": 100, + "endOffset": 573 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 100, + "endOffset": 813 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 123, + "endOffset": 697 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 818, + "endColumn": 123, + "endOffset": 937 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 702, + "endColumn": 106, + "endOffset": 804 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 942, + "endColumn": 106, + "endOffset": 1044 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 111, + "endOffset": 916 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1049, + "endColumn": 111, + "endOffset": 1156 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 101, + "endOffset": 1018 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1161, + "endColumn": 101, + "endOffset": 1258 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1023, + "endColumn": 107, + "endOffset": 1126 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1263, + "endColumn": 107, + "endOffset": 1366 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1131, + "endColumn": 106, + "endOffset": 1233 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1371, + "endColumn": 106, + "endOffset": 1473 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1238, + "endColumn": 106, + "endOffset": 1340 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1478, + "endColumn": 106, + "endOffset": 1580 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1345, + "endColumn": 121, + "endOffset": 1462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1585, + "endColumn": 121, + "endOffset": 1702 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-pt.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-pt.json new file mode 100644 index 0000000..5c51569 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-pt.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt/values-pt.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 119, + "endOffset": 406 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 105, + "endOffset": 276 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 411, + "endColumn": 105, + "endOffset": 512 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 106, + "endOffset": 383 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 517, + "endColumn": 106, + "endOffset": 619 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 388, + "endColumn": 88, + "endOffset": 472 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 624, + "endColumn": 88, + "endOffset": 708 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 477, + "endColumn": 100, + "endOffset": 573 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 713, + "endColumn": 100, + "endOffset": 809 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 124, + "endOffset": 698 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 814, + "endColumn": 124, + "endOffset": 934 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 106, + "endOffset": 805 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 939, + "endColumn": 106, + "endOffset": 1041 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 111, + "endOffset": 917 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 111, + "endOffset": 1153 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 922, + "endColumn": 101, + "endOffset": 1019 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1158, + "endColumn": 101, + "endOffset": 1255 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1024, + "endColumn": 107, + "endOffset": 1127 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 107, + "endOffset": 1363 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 106, + "endOffset": 1234 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1368, + "endColumn": 106, + "endOffset": 1470 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1239, + "endColumn": 109, + "endOffset": 1344 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 109, + "endOffset": 1580 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1349, + "endColumn": 124, + "endOffset": 1469 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1585, + "endColumn": 124, + "endOffset": 1705 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ro.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ro.json new file mode 100644 index 0000000..f7d8745 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ro.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ro/values-ro.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 120, + "endOffset": 171 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 120, + "endOffset": 407 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 176, + "endColumn": 103, + "endOffset": 275 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 412, + "endColumn": 103, + "endOffset": 511 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 112, + "endOffset": 388 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 112, + "endOffset": 624 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 87, + "endOffset": 476 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 629, + "endColumn": 87, + "endOffset": 712 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 481, + "endColumn": 111, + "endOffset": 588 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 111, + "endOffset": 824 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 120, + "endOffset": 709 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 829, + "endColumn": 120, + "endOffset": 945 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 714, + "endColumn": 111, + "endOffset": 821 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 950, + "endColumn": 111, + "endOffset": 1057 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 826, + "endColumn": 112, + "endOffset": 934 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 112, + "endOffset": 1170 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 939, + "endColumn": 99, + "endOffset": 1034 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1175, + "endColumn": 99, + "endOffset": 1270 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1039, + "endColumn": 113, + "endOffset": 1148 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1275, + "endColumn": 113, + "endOffset": 1384 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1153, + "endColumn": 104, + "endOffset": 1253 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1389, + "endColumn": 104, + "endOffset": 1489 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1258, + "endColumn": 105, + "endOffset": 1359 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1494, + "endColumn": 105, + "endOffset": 1595 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 120, + "endOffset": 1480 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1600, + "endColumn": 120, + "endOffset": 1716 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ru.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ru.json new file mode 100644 index 0000000..9cb6f20 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ru.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ru/values-ru.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 114, + "endOffset": 165 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 114, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 101, + "endOffset": 267 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 101, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 111, + "endOffset": 379 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 111, + "endOffset": 615 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 384, + "endColumn": 85, + "endOffset": 465 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 85, + "endOffset": 701 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 470, + "endColumn": 104, + "endOffset": 570 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 706, + "endColumn": 104, + "endOffset": 806 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 575, + "endColumn": 119, + "endOffset": 690 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 811, + "endColumn": 119, + "endOffset": 926 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 105, + "endOffset": 796 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 931, + "endColumn": 105, + "endOffset": 1032 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 107, + "endOffset": 904 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1037, + "endColumn": 107, + "endOffset": 1140 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 909, + "endColumn": 97, + "endOffset": 1002 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1145, + "endColumn": 97, + "endOffset": 1238 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1007, + "endColumn": 108, + "endOffset": 1111 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1243, + "endColumn": 108, + "endOffset": 1347 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1116, + "endColumn": 105, + "endOffset": 1217 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1352, + "endColumn": 105, + "endOffset": 1453 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1222, + "endColumn": 107, + "endOffset": 1325 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1458, + "endColumn": 107, + "endOffset": 1561 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1330, + "endColumn": 135, + "endOffset": 1461 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 135, + "endOffset": 1697 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-si-rLK.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-si-rLK.json new file mode 100644 index 0000000..155e85c --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-si-rLK.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-si-rLK/values-si-rLK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 109, + "endOffset": 400 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 106, + "endOffset": 267 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 405, + "endColumn": 106, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 106, + "endOffset": 374 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 106, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 379, + "endColumn": 87, + "endOffset": 462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 87, + "endOffset": 702 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 467, + "endColumn": 104, + "endOffset": 567 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 104, + "endOffset": 807 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 572, + "endColumn": 115, + "endOffset": 683 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 115, + "endOffset": 923 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 108, + "endOffset": 792 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 928, + "endColumn": 108, + "endOffset": 1032 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 104, + "endOffset": 897 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1037, + "endColumn": 104, + "endOffset": 1137 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 902, + "endColumn": 97, + "endOffset": 995 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1142, + "endColumn": 97, + "endOffset": 1235 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 109, + "endOffset": 1105 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1240, + "endColumn": 109, + "endOffset": 1345 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1110, + "endColumn": 98, + "endOffset": 1204 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1350, + "endColumn": 98, + "endOffset": 1444 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1209, + "endColumn": 105, + "endOffset": 1310 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1449, + "endColumn": 105, + "endOffset": 1550 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1315, + "endColumn": 120, + "endOffset": 1431 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1555, + "endColumn": 120, + "endOffset": 1671 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sk.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sk.json new file mode 100644 index 0000000..625e784 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sk.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sk/values-sk.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 106, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 99, + "endOffset": 257 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 99, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 262, + "endColumn": 110, + "endOffset": 368 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 110, + "endOffset": 604 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 373, + "endColumn": 85, + "endOffset": 454 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 609, + "endColumn": 85, + "endOffset": 690 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 459, + "endColumn": 107, + "endOffset": 562 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 107, + "endOffset": 798 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 567, + "endColumn": 117, + "endOffset": 680 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 117, + "endOffset": 916 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 685, + "endColumn": 104, + "endOffset": 785 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 104, + "endOffset": 1021 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 790, + "endColumn": 108, + "endOffset": 894 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1026, + "endColumn": 108, + "endOffset": 1130 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 899, + "endColumn": 98, + "endOffset": 993 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1135, + "endColumn": 98, + "endOffset": 1229 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 998, + "endColumn": 105, + "endOffset": 1099 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1234, + "endColumn": 105, + "endOffset": 1335 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 110, + "endOffset": 1210 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1340, + "endColumn": 110, + "endOffset": 1446 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1215, + "endColumn": 108, + "endOffset": 1319 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1451, + "endColumn": 108, + "endOffset": 1555 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1324, + "endColumn": 123, + "endOffset": 1443 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1560, + "endColumn": 123, + "endOffset": 1679 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sl.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sl.json new file mode 100644 index 0000000..de2ece5 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sl.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sl/values-sl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 106, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 106, + "endOffset": 264 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 106, + "endOffset": 500 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 269, + "endColumn": 107, + "endOffset": 372 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 505, + "endColumn": 107, + "endOffset": 608 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 377, + "endColumn": 86, + "endOffset": 459 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 613, + "endColumn": 86, + "endOffset": 695 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 464, + "endColumn": 102, + "endOffset": 562 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 700, + "endColumn": 102, + "endOffset": 798 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 567, + "endColumn": 118, + "endOffset": 681 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 118, + "endOffset": 917 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 107, + "endOffset": 789 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 922, + "endColumn": 107, + "endOffset": 1025 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 108, + "endOffset": 898 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1030, + "endColumn": 108, + "endOffset": 1134 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 903, + "endColumn": 99, + "endOffset": 998 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1139, + "endColumn": 99, + "endOffset": 1234 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1003, + "endColumn": 112, + "endOffset": 1111 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1239, + "endColumn": 112, + "endOffset": 1347 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1116, + "endColumn": 106, + "endOffset": 1218 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1352, + "endColumn": 106, + "endOffset": 1454 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1223, + "endColumn": 103, + "endOffset": 1322 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1459, + "endColumn": 103, + "endOffset": 1558 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1327, + "endColumn": 116, + "endOffset": 1439 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1563, + "endColumn": 116, + "endOffset": 1675 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sr.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sr.json new file mode 100644 index 0000000..81b89e6 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sr.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sr/values-sr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 108, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 102, + "endOffset": 262 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 102, + "endOffset": 498 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 105, + "endOffset": 368 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 105, + "endOffset": 604 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 373, + "endColumn": 85, + "endOffset": 454 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 609, + "endColumn": 85, + "endOffset": 690 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 459, + "endColumn": 103, + "endOffset": 558 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 103, + "endOffset": 794 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 563, + "endColumn": 117, + "endOffset": 676 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 799, + "endColumn": 117, + "endOffset": 912 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 104, + "endOffset": 781 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 104, + "endOffset": 1017 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 786, + "endColumn": 107, + "endOffset": 889 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1022, + "endColumn": 107, + "endOffset": 1125 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 894, + "endColumn": 100, + "endOffset": 990 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1130, + "endColumn": 100, + "endOffset": 1226 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 995, + "endColumn": 103, + "endOffset": 1094 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1231, + "endColumn": 103, + "endOffset": 1330 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1099, + "endColumn": 107, + "endOffset": 1202 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1335, + "endColumn": 107, + "endOffset": 1438 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1207, + "endColumn": 100, + "endOffset": 1303 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1443, + "endColumn": 100, + "endOffset": 1539 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1308, + "endColumn": 127, + "endOffset": 1431 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1544, + "endColumn": 127, + "endOffset": 1667 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sv.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sv.json new file mode 100644 index 0000000..9333dbb --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sv.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sv/values-sv.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 105, + "endOffset": 156 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 105, + "endOffset": 392 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 161, + "endColumn": 102, + "endOffset": 259 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 102, + "endOffset": 495 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 264, + "endColumn": 110, + "endOffset": 370 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 500, + "endColumn": 110, + "endOffset": 606 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 375, + "endColumn": 84, + "endOffset": 455 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 611, + "endColumn": 84, + "endOffset": 691 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 460, + "endColumn": 101, + "endOffset": 557 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 696, + "endColumn": 101, + "endOffset": 793 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 562, + "endColumn": 112, + "endOffset": 670 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 112, + "endOffset": 906 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 675, + "endColumn": 105, + "endOffset": 776 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 911, + "endColumn": 105, + "endOffset": 1012 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 781, + "endColumn": 99, + "endOffset": 876 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1017, + "endColumn": 99, + "endOffset": 1112 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 881, + "endColumn": 95, + "endOffset": 972 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 95, + "endOffset": 1208 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 977, + "endColumn": 104, + "endOffset": 1077 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1213, + "endColumn": 104, + "endOffset": 1313 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1082, + "endColumn": 101, + "endOffset": 1179 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1318, + "endColumn": 101, + "endOffset": 1415 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1184, + "endColumn": 101, + "endOffset": 1281 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1420, + "endColumn": 101, + "endOffset": 1517 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1286, + "endColumn": 116, + "endOffset": 1398 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1522, + "endColumn": 116, + "endOffset": 1634 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sw.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sw.json new file mode 100644 index 0000000..6324fe6 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sw.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw/values-sw.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 102, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 97, + "endOffset": 251 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 97, + "endOffset": 487 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 256, + "endColumn": 107, + "endOffset": 359 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 492, + "endColumn": 107, + "endOffset": 595 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 364, + "endColumn": 89, + "endOffset": 449 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 600, + "endColumn": 89, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 454, + "endColumn": 104, + "endOffset": 554 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 104, + "endOffset": 790 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 559, + "endColumn": 116, + "endOffset": 671 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 116, + "endOffset": 907 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 676, + "endColumn": 100, + "endOffset": 772 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 100, + "endOffset": 1008 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 777, + "endColumn": 108, + "endOffset": 881 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 108, + "endOffset": 1117 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 886, + "endColumn": 98, + "endOffset": 980 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 98, + "endOffset": 1216 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 985, + "endColumn": 106, + "endOffset": 1087 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1221, + "endColumn": 106, + "endOffset": 1323 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 108, + "endOffset": 1196 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 108, + "endOffset": 1432 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1201, + "endColumn": 104, + "endOffset": 1301 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 104, + "endOffset": 1537 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1306, + "endColumn": 118, + "endOffset": 1420 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1542, + "endColumn": 118, + "endOffset": 1656 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sw600dp-v13.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sw600dp-v13.json new file mode 100644 index 0000000..73e4706 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-sw600dp-v13.json @@ -0,0 +1,178 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 68, + "endOffset": 119 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 68, + "endOffset": 359 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 124, + "endColumn": 69, + "endOffset": 189 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 364, + "endColumn": 69, + "endOffset": 429 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 194, + "endColumn": 69, + "endOffset": 259 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 434, + "endColumn": 69, + "endOffset": 499 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 264, + "endColumn": 78, + "endOffset": 338 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 504, + "endColumn": 78, + "endOffset": 578 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 343, + "endColumn": 75, + "endOffset": 414 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 583, + "endColumn": 75, + "endOffset": 654 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 419, + "endColumn": 58, + "endOffset": 473 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 899, + "endColumn": 58, + "endOffset": 953 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 478, + "endColumn": 70, + "endOffset": 544 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1198, + "endColumn": 70, + "endOffset": 1264 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 549, + "endColumn": 67, + "endOffset": 612 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1269, + "endColumn": 67, + "endOffset": 1332 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 617, + "endColumn": 54, + "endOffset": 667 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1337, + "endColumn": 54, + "endOffset": 1387 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ta-rIN.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ta-rIN.json new file mode 100644 index 0000000..7e2a91e --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ta-rIN.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ta-rIN/values-ta-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 113, + "endOffset": 404 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 104, + "endOffset": 269 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 409, + "endColumn": 104, + "endOffset": 509 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 274, + "endColumn": 114, + "endOffset": 384 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 514, + "endColumn": 114, + "endOffset": 624 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 88, + "endOffset": 473 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 629, + "endColumn": 88, + "endOffset": 713 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 478, + "endColumn": 106, + "endOffset": 580 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 718, + "endColumn": 106, + "endOffset": 820 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 585, + "endColumn": 125, + "endOffset": 706 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 825, + "endColumn": 125, + "endOffset": 946 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 711, + "endColumn": 101, + "endOffset": 808 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 951, + "endColumn": 101, + "endOffset": 1048 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 813, + "endColumn": 103, + "endOffset": 912 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1053, + "endColumn": 103, + "endOffset": 1152 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 96, + "endOffset": 1009 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1157, + "endColumn": 96, + "endOffset": 1249 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 109, + "endOffset": 1119 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1254, + "endColumn": 109, + "endOffset": 1359 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1124, + "endColumn": 101, + "endOffset": 1221 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 101, + "endOffset": 1461 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1226, + "endColumn": 106, + "endOffset": 1328 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1466, + "endColumn": 106, + "endOffset": 1568 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1333, + "endColumn": 118, + "endOffset": 1447 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1573, + "endColumn": 118, + "endOffset": 1687 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-te-rIN.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-te-rIN.json new file mode 100644 index 0000000..afbdb0c --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-te-rIN.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-te-rIN/values-te-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 113, + "endOffset": 404 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 108, + "endOffset": 273 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 409, + "endColumn": 108, + "endOffset": 513 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 110, + "endOffset": 384 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 518, + "endColumn": 110, + "endOffset": 624 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 89, + "endOffset": 474 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 629, + "endColumn": 89, + "endOffset": 714 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 479, + "endColumn": 104, + "endOffset": 579 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 719, + "endColumn": 104, + "endOffset": 819 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 584, + "endColumn": 124, + "endOffset": 704 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 124, + "endOffset": 944 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 112, + "endOffset": 817 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 949, + "endColumn": 112, + "endOffset": 1057 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 822, + "endColumn": 107, + "endOffset": 925 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 107, + "endOffset": 1165 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 930, + "endColumn": 99, + "endOffset": 1025 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1170, + "endColumn": 99, + "endOffset": 1265 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1030, + "endColumn": 110, + "endOffset": 1136 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1270, + "endColumn": 110, + "endOffset": 1376 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1141, + "endColumn": 101, + "endOffset": 1238 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1381, + "endColumn": 101, + "endOffset": 1478 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1243, + "endColumn": 116, + "endOffset": 1355 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1483, + "endColumn": 116, + "endOffset": 1595 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1360, + "endColumn": 126, + "endOffset": 1482 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1600, + "endColumn": 126, + "endOffset": 1722 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-th.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-th.json new file mode 100644 index 0000000..f464b5b --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-th.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-th/values-th.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 104, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 97, + "endOffset": 253 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 97, + "endOffset": 489 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 107, + "endOffset": 361 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 107, + "endOffset": 597 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 366, + "endColumn": 88, + "endOffset": 450 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 88, + "endOffset": 686 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 455, + "endColumn": 101, + "endOffset": 552 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 691, + "endColumn": 101, + "endOffset": 788 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 557, + "endColumn": 109, + "endOffset": 662 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 793, + "endColumn": 109, + "endOffset": 898 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 667, + "endColumn": 107, + "endOffset": 770 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 903, + "endColumn": 107, + "endOffset": 1006 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 775, + "endColumn": 103, + "endOffset": 874 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1011, + "endColumn": 103, + "endOffset": 1110 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 879, + "endColumn": 97, + "endOffset": 972 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1115, + "endColumn": 97, + "endOffset": 1208 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 977, + "endColumn": 107, + "endOffset": 1080 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1213, + "endColumn": 107, + "endOffset": 1316 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1085, + "endColumn": 104, + "endOffset": 1185 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1321, + "endColumn": 104, + "endOffset": 1421 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1190, + "endColumn": 100, + "endOffset": 1286 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1426, + "endColumn": 100, + "endOffset": 1522 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1291, + "endColumn": 115, + "endOffset": 1402 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1527, + "endColumn": 115, + "endOffset": 1638 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-tl.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-tl.json new file mode 100644 index 0000000..070eeec --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-tl.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tl/values-tl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 118, + "endOffset": 169 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 118, + "endOffset": 405 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 174, + "endColumn": 107, + "endOffset": 277 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 410, + "endColumn": 107, + "endOffset": 513 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 116, + "endOffset": 394 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 518, + "endColumn": 116, + "endOffset": 630 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 87, + "endOffset": 482 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 635, + "endColumn": 87, + "endOffset": 718 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 487, + "endColumn": 105, + "endOffset": 588 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 723, + "endColumn": 105, + "endOffset": 824 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 120, + "endOffset": 709 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 829, + "endColumn": 120, + "endOffset": 945 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 714, + "endColumn": 108, + "endOffset": 818 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 950, + "endColumn": 108, + "endOffset": 1054 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 823, + "endColumn": 110, + "endOffset": 929 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1059, + "endColumn": 110, + "endOffset": 1165 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 934, + "endColumn": 100, + "endOffset": 1030 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1170, + "endColumn": 100, + "endOffset": 1266 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1035, + "endColumn": 109, + "endOffset": 1140 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1271, + "endColumn": 109, + "endOffset": 1376 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1145, + "endColumn": 116, + "endOffset": 1257 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1381, + "endColumn": 116, + "endOffset": 1493 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1262, + "endColumn": 107, + "endOffset": 1365 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1498, + "endColumn": 107, + "endOffset": 1601 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 122, + "endOffset": 1488 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1606, + "endColumn": 122, + "endOffset": 1724 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-tr.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-tr.json new file mode 100644 index 0000000..6db04d3 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-tr.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tr/values-tr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 104, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 98, + "endOffset": 254 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 98, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 259, + "endColumn": 111, + "endOffset": 366 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 111, + "endOffset": 602 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 371, + "endColumn": 89, + "endOffset": 456 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 607, + "endColumn": 89, + "endOffset": 692 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 461, + "endColumn": 105, + "endOffset": 562 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 697, + "endColumn": 105, + "endOffset": 798 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 567, + "endColumn": 119, + "endOffset": 682 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 119, + "endOffset": 918 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 687, + "endColumn": 106, + "endOffset": 789 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 923, + "endColumn": 106, + "endOffset": 1025 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 104, + "endOffset": 894 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1030, + "endColumn": 104, + "endOffset": 1130 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 899, + "endColumn": 95, + "endOffset": 990 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1135, + "endColumn": 95, + "endOffset": 1226 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 995, + "endColumn": 106, + "endOffset": 1097 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1231, + "endColumn": 106, + "endOffset": 1333 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1102, + "endColumn": 101, + "endOffset": 1199 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1338, + "endColumn": 101, + "endOffset": 1435 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1204, + "endColumn": 107, + "endOffset": 1307 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1440, + "endColumn": 107, + "endOffset": 1543 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1312, + "endColumn": 118, + "endOffset": 1426 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1548, + "endColumn": 118, + "endOffset": 1662 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-uk.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-uk.json new file mode 100644 index 0000000..f53b7e6 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-uk.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uk/values-uk.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 109, + "endOffset": 396 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 101, + "endOffset": 262 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 401, + "endColumn": 101, + "endOffset": 498 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 105, + "endOffset": 368 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 105, + "endOffset": 604 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 373, + "endColumn": 85, + "endOffset": 454 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 609, + "endColumn": 85, + "endOffset": 690 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 459, + "endColumn": 107, + "endOffset": 562 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 107, + "endOffset": 798 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 567, + "endColumn": 117, + "endOffset": 680 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 117, + "endOffset": 916 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 685, + "endColumn": 105, + "endOffset": 786 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 105, + "endOffset": 1022 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 791, + "endColumn": 106, + "endOffset": 893 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1027, + "endColumn": 106, + "endOffset": 1129 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 898, + "endColumn": 97, + "endOffset": 991 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1134, + "endColumn": 97, + "endOffset": 1227 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 996, + "endColumn": 107, + "endOffset": 1099 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1232, + "endColumn": 107, + "endOffset": 1335 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 105, + "endOffset": 1205 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1340, + "endColumn": 105, + "endOffset": 1441 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1210, + "endColumn": 108, + "endOffset": 1314 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1446, + "endColumn": 108, + "endOffset": 1550 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1319, + "endColumn": 123, + "endOffset": 1438 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1555, + "endColumn": 123, + "endOffset": 1674 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ur-rPK.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ur-rPK.json new file mode 100644 index 0000000..175a26a --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-ur-rPK.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ur-rPK/values-ur-rPK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 109, + "endOffset": 400 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 105, + "endOffset": 266 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 405, + "endColumn": 105, + "endOffset": 506 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 108, + "endOffset": 375 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 511, + "endColumn": 108, + "endOffset": 615 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 380, + "endColumn": 85, + "endOffset": 461 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 85, + "endOffset": 701 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 466, + "endColumn": 103, + "endOffset": 565 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 706, + "endColumn": 103, + "endOffset": 805 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 570, + "endColumn": 119, + "endOffset": 685 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 119, + "endOffset": 925 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 107, + "endOffset": 793 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 930, + "endColumn": 107, + "endOffset": 1033 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 108, + "endOffset": 902 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1038, + "endColumn": 108, + "endOffset": 1142 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 101, + "endOffset": 1004 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 101, + "endOffset": 1244 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1009, + "endColumn": 110, + "endOffset": 1115 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1249, + "endColumn": 110, + "endOffset": 1355 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1120, + "endColumn": 99, + "endOffset": 1215 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1360, + "endColumn": 99, + "endOffset": 1455 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1220, + "endColumn": 107, + "endOffset": 1323 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1460, + "endColumn": 107, + "endOffset": 1563 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 128, + "endOffset": 1452 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1568, + "endColumn": 128, + "endOffset": 1692 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-uz-rUZ.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-uz-rUZ.json new file mode 100644 index 0000000..55383ad --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-uz-rUZ.json @@ -0,0 +1,235 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 104, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 103, + "endOffset": 259 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 103, + "endOffset": 499 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 264, + "endColumn": 116, + "endOffset": 376 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 116, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 381, + "endColumn": 85, + "endOffset": 462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 85, + "endOffset": 702 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 467, + "endColumn": 110, + "endOffset": 573 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 110, + "endOffset": 813 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 115, + "endOffset": 689 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 818, + "endColumn": 115, + "endOffset": 929 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 694, + "endColumn": 108, + "endOffset": 798 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 934, + "endColumn": 108, + "endOffset": 1038 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 106, + "endOffset": 905 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1043, + "endColumn": 106, + "endOffset": 1145 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 910, + "endColumn": 98, + "endOffset": 1004 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1150, + "endColumn": 98, + "endOffset": 1244 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1009, + "endColumn": 107, + "endOffset": 1112 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1249, + "endColumn": 107, + "endOffset": 1352 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 104, + "endOffset": 1217 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1357, + "endColumn": 104, + "endOffset": 1457 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1222, + "endColumn": 104, + "endOffset": 1322 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1462, + "endColumn": 104, + "endOffset": 1562 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v11.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v11.json new file mode 100644 index 0000000..96992e9 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v11.json @@ -0,0 +1,356 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v11/values-v11.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 7, + "endColumn": 12, + "endOffset": 469 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 301, + "endLine": 9, + "endColumn": 12, + "endOffset": 715 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 474, + "endLine": 13, + "endColumn": 12, + "endOffset": 894 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 720, + "endLine": 15, + "endColumn": 12, + "endOffset": 1140 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 899, + "endLine": 19, + "endColumn": 12, + "endOffset": 1322 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1145, + "endLine": 21, + "endColumn": 12, + "endOffset": 1568 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1327, + "endLine": 25, + "endColumn": 12, + "endOffset": 1748 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1573, + "endLine": 27, + "endColumn": 12, + "endOffset": 1994 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1753, + "endLine": 31, + "endColumn": 12, + "endOffset": 2177 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1999, + "endLine": 33, + "endColumn": 12, + "endOffset": 2423 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2182, + "endLine": 37, + "endColumn": 12, + "endOffset": 2602 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2428, + "endLine": 39, + "endColumn": 12, + "endOffset": 2848 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2607, + "endColumn": 88, + "endOffset": 2691 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3094, + "endColumn": 88, + "endOffset": 3178 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2696, + "endColumn": 100, + "endOffset": 2792 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3183, + "endColumn": 100, + "endOffset": 3279 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2797, + "endLine": 44, + "endColumn": 12, + "endOffset": 3200 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3284, + "endLine": 48, + "endColumn": 12, + "endOffset": 3687 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3205, + "endLine": 49, + "endColumn": 12, + "endOffset": 3620 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3692, + "endLine": 53, + "endColumn": 12, + "endOffset": 4107 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3625, + "endLine": 51, + "endColumn": 12, + "endOffset": 3727 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4353, + "endLine": 57, + "endColumn": 12, + "endOffset": 4455 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3732, + "endLine": 53, + "endColumn": 12, + "endOffset": 3856 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4460, + "endLine": 59, + "endColumn": 12, + "endOffset": 4584 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3861, + "endLine": 58, + "endColumn": 12, + "endOffset": 4220 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4589, + "endLine": 64, + "endColumn": 12, + "endOffset": 4948 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4225, + "endColumn": 70, + "endOffset": 4291 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 67, + "startColumn": 4, + "startOffset": 5194, + "endColumn": 70, + "endOffset": 5260 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4296, + "endColumn": 82, + "endOffset": 4374 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 68, + "startColumn": 4, + "startOffset": 5265, + "endColumn": 82, + "endOffset": 5343 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4379, + "endLine": 111, + "endColumn": 12, + "endOffset": 8123 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 69, + "startColumn": 4, + "startOffset": 5348, + "endLine": 119, + "endColumn": 12, + "endOffset": 9092 + } + } + }, + { + "to": { + "startLine": 112, + "startColumn": 4, + "startOffset": 8128, + "endLine": 163, + "endColumn": 12, + "endOffset": 12012 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 120, + "startColumn": 4, + "startOffset": 9097, + "endLine": 171, + "endColumn": 12, + "endOffset": 12981 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v12.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v12.json new file mode 100644 index 0000000..6f3b42d --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v12.json @@ -0,0 +1,87 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v12/values-v12.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 70, + "endOffset": 121 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v12/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 296, + "endColumn": 70, + "endOffset": 362 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 126, + "endColumn": 82, + "endOffset": 204 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v12/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 367, + "endColumn": 82, + "endOffset": 445 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 209, + "endLine": 6, + "endColumn": 12, + "endOffset": 383 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v12/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 450, + "endLine": 8, + "endColumn": 12, + "endOffset": 624 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 388, + "endLine": 9, + "endColumn": 12, + "endOffset": 574 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v12/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 629, + "endLine": 11, + "endColumn": 12, + "endOffset": 815 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v14.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v14.json new file mode 100644 index 0000000..035eb41 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v14.json @@ -0,0 +1,108 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v14/values-v14.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 6, + "endColumn": 12, + "endOffset": 326 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v14/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 301, + "endLine": 8, + "endColumn": 12, + "endOffset": 572 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 331, + "endColumn": 70, + "endOffset": 397 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v14/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 818, + "endColumn": 70, + "endOffset": 884 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 402, + "endColumn": 82, + "endOffset": 480 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v14/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 889, + "endColumn": 82, + "endOffset": 967 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 485, + "endLine": 14, + "endColumn": 12, + "endOffset": 890 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v14/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 972, + "endLine": 18, + "endColumn": 12, + "endOffset": 1377 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 895, + "endLine": 20, + "endColumn": 12, + "endOffset": 1312 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v14/values.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1382, + "endLine": 24, + "endColumn": 12, + "endOffset": 1799 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v17.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v17.json new file mode 100644 index 0000000..94f170b --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v17.json @@ -0,0 +1,259 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 5, + "endColumn": 12, + "endOffset": 278 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endLine": 7, + "endColumn": 12, + "endOffset": 518 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 283, + "endLine": 9, + "endColumn": 12, + "endOffset": 615 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 523, + "endLine": 11, + "endColumn": 12, + "endOffset": 855 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 620, + "endLine": 12, + "endColumn": 12, + "endOffset": 765 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 860, + "endLine": 14, + "endColumn": 12, + "endOffset": 1005 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 770, + "endLine": 15, + "endColumn": 12, + "endOffset": 937 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1010, + "endLine": 17, + "endColumn": 12, + "endOffset": 1177 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 942, + "endLine": 19, + "endColumn": 12, + "endOffset": 1165 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1182, + "endLine": 21, + "endColumn": 12, + "endOffset": 1405 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1170, + "endLine": 23, + "endColumn": 12, + "endOffset": 1407 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1410, + "endLine": 25, + "endColumn": 12, + "endOffset": 1647 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1412, + "endLine": 26, + "endColumn": 12, + "endOffset": 1578 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1652, + "endLine": 28, + "endColumn": 12, + "endOffset": 1818 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1583, + "endLine": 29, + "endColumn": 12, + "endOffset": 1752 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1823, + "endLine": 31, + "endColumn": 12, + "endOffset": 1992 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 1757, + "endLine": 32, + "endColumn": 12, + "endOffset": 1921 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 1997, + "endLine": 34, + "endColumn": 12, + "endOffset": 2161 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 1926, + "endLine": 36, + "endColumn": 12, + "endOffset": 2194 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2166, + "endLine": 38, + "endColumn": 12, + "endOffset": 2434 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2199, + "endLine": 39, + "endColumn": 12, + "endOffset": 2394 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2439, + "endLine": 41, + "endColumn": 12, + "endOffset": 2634 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2399, + "endLine": 42, + "endColumn": 12, + "endOffset": 2642 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2639, + "endLine": 44, + "endColumn": 12, + "endOffset": 2882 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v18.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v18.json new file mode 100644 index 0000000..f5991b5 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v18.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 48, + "endOffset": 99 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v18/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 48, + "endOffset": 335 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v21.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v21.json new file mode 100644 index 0000000..b53b05b --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-v21.json @@ -0,0 +1,1645 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 90, + "endOffset": 141 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 301, + "endColumn": 90, + "endOffset": 387 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 146, + "endColumn": 102, + "endOffset": 244 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 102, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 249, + "endColumn": 102, + "endOffset": 347 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 102, + "endOffset": 593 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 352, + "endColumn": 104, + "endOffset": 452 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 104, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 457, + "endColumn": 106, + "endOffset": 559 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 106, + "endOffset": 805 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 564, + "endColumn": 108, + "endOffset": 668 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 108, + "endOffset": 914 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 673, + "endColumn": 108, + "endOffset": 777 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 919, + "endColumn": 108, + "endOffset": 1023 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 108, + "endOffset": 886 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1028, + "endColumn": 108, + "endOffset": 1132 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 891, + "endColumn": 108, + "endOffset": 995 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1137, + "endColumn": 108, + "endOffset": 1241 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 108, + "endOffset": 1104 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1246, + "endColumn": 108, + "endOffset": 1350 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1109, + "endColumn": 106, + "endOffset": 1211 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1355, + "endColumn": 106, + "endOffset": 1457 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1216, + "endColumn": 102, + "endOffset": 1314 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1462, + "endColumn": 102, + "endOffset": 1560 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1319, + "endColumn": 118, + "endOffset": 1433 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1565, + "endColumn": 118, + "endOffset": 1679 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1438, + "endLine": 16, + "endColumn": 12, + "endOffset": 1588 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1925, + "endLine": 20, + "endColumn": 12, + "endOffset": 2075 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1593, + "endLine": 18, + "endColumn": 12, + "endOffset": 1743 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2080, + "endLine": 22, + "endColumn": 12, + "endOffset": 2230 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1748, + "endColumn": 104, + "endOffset": 1848 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2481, + "endColumn": 104, + "endOffset": 2581 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1853, + "endColumn": 120, + "endOffset": 1969 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2586, + "endColumn": 120, + "endOffset": 2702 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1974, + "endColumn": 100, + "endOffset": 2070 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2707, + "endColumn": 100, + "endOffset": 2803 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2075, + "endLine": 23, + "endColumn": 12, + "endOffset": 2217 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3049, + "endLine": 31, + "endColumn": 12, + "endOffset": 3191 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2222, + "endLine": 25, + "endColumn": 12, + "endOffset": 2358 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3196, + "endLine": 33, + "endColumn": 12, + "endOffset": 3332 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2363, + "endColumn": 102, + "endOffset": 2461 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3583, + "endColumn": 102, + "endOffset": 3681 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2466, + "endColumn": 118, + "endOffset": 2580 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 3686, + "endColumn": 118, + "endOffset": 3800 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2585, + "endColumn": 106, + "endOffset": 2687 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3805, + "endColumn": 106, + "endOffset": 3907 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2692, + "endColumn": 102, + "endOffset": 2790 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3912, + "endColumn": 102, + "endOffset": 4010 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2795, + "endLine": 31, + "endColumn": 12, + "endOffset": 2937 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 4256, + "endLine": 43, + "endColumn": 12, + "endOffset": 4398 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2942, + "endLine": 33, + "endColumn": 12, + "endOffset": 3092 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 4403, + "endLine": 45, + "endColumn": 12, + "endOffset": 4553 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 3097, + "endLine": 35, + "endColumn": 12, + "endOffset": 3263 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 4558, + "endLine": 47, + "endColumn": 12, + "endOffset": 4724 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3268, + "endLine": 37, + "endColumn": 12, + "endOffset": 3412 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 4729, + "endLine": 49, + "endColumn": 12, + "endOffset": 4873 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3417, + "endLine": 39, + "endColumn": 12, + "endOffset": 3577 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4878, + "endLine": 51, + "endColumn": 12, + "endOffset": 5038 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3582, + "endLine": 41, + "endColumn": 12, + "endOffset": 3734 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 5043, + "endLine": 53, + "endColumn": 12, + "endOffset": 5195 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3739, + "endLine": 43, + "endColumn": 12, + "endOffset": 3885 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 5200, + "endLine": 55, + "endColumn": 12, + "endOffset": 5346 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3890, + "endLine": 45, + "endColumn": 12, + "endOffset": 4034 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 5351, + "endLine": 57, + "endColumn": 12, + "endOffset": 5495 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 4039, + "endLine": 47, + "endColumn": 12, + "endOffset": 4183 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 5500, + "endLine": 59, + "endColumn": 12, + "endOffset": 5644 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 4188, + "endColumn": 111, + "endOffset": 4295 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 5895, + "endColumn": 111, + "endOffset": 6002 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 4300, + "endColumn": 146, + "endOffset": 4442 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 65, + "startColumn": 4, + "startOffset": 6248, + "endColumn": 146, + "endOffset": 6390 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4447, + "endLine": 51, + "endColumn": 12, + "endOffset": 4595 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 66, + "startColumn": 4, + "startOffset": 6395, + "endLine": 67, + "endColumn": 12, + "endOffset": 6543 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4600, + "endLine": 53, + "endColumn": 12, + "endOffset": 4742 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 68, + "startColumn": 4, + "startOffset": 6548, + "endLine": 69, + "endColumn": 12, + "endOffset": 6690 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4747, + "endColumn": 74, + "endOffset": 4817 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 72, + "startColumn": 4, + "startOffset": 6936, + "endColumn": 74, + "endOffset": 7006 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4822, + "endColumn": 88, + "endOffset": 4906 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 73, + "startColumn": 4, + "startOffset": 7011, + "endColumn": 88, + "endOffset": 7095 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4911, + "endColumn": 86, + "endOffset": 4993 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 74, + "startColumn": 4, + "startOffset": 7100, + "endColumn": 86, + "endOffset": 7182 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4998, + "endColumn": 100, + "endOffset": 5094 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 75, + "startColumn": 4, + "startOffset": 7187, + "endColumn": 100, + "endOffset": 7283 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 5099, + "endLine": 105, + "endColumn": 12, + "endOffset": 8497 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 76, + "startColumn": 4, + "startOffset": 7288, + "endLine": 123, + "endColumn": 12, + "endOffset": 10686 + } + } + }, + { + "to": { + "startLine": 106, + "startColumn": 4, + "startOffset": 8502, + "endLine": 108, + "endColumn": 12, + "endOffset": 8683 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 124, + "startColumn": 4, + "startOffset": 10691, + "endLine": 126, + "endColumn": 12, + "endOffset": 10872 + } + } + }, + { + "to": { + "startLine": 109, + "startColumn": 4, + "startOffset": 8688, + "endLine": 156, + "endColumn": 12, + "endOffset": 12098 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 127, + "startColumn": 4, + "startOffset": 10877, + "endLine": 174, + "endColumn": 12, + "endOffset": 14287 + } + } + }, + { + "to": { + "startLine": 157, + "startColumn": 4, + "startOffset": 12103, + "endLine": 159, + "endColumn": 12, + "endOffset": 12296 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 175, + "startColumn": 4, + "startOffset": 14292, + "endLine": 177, + "endColumn": 12, + "endOffset": 14485 + } + } + }, + { + "to": { + "startLine": 160, + "startColumn": 4, + "startOffset": 12301, + "endLine": 161, + "endColumn": 12, + "endOffset": 12419 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 180, + "startColumn": 4, + "startOffset": 14731, + "endLine": 181, + "endColumn": 12, + "endOffset": 14849 + } + } + }, + { + "to": { + "startLine": 162, + "startColumn": 4, + "startOffset": 12424, + "endLine": 163, + "endColumn": 12, + "endOffset": 12542 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 182, + "startColumn": 4, + "startOffset": 14854, + "endLine": 183, + "endColumn": 12, + "endOffset": 14972 + } + } + }, + { + "to": { + "startLine": 164, + "startColumn": 4, + "startOffset": 12547, + "endLine": 165, + "endColumn": 12, + "endOffset": 12655 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 184, + "startColumn": 4, + "startOffset": 14977, + "endLine": 185, + "endColumn": 12, + "endOffset": 15085 + } + } + }, + { + "to": { + "startLine": 166, + "startColumn": 4, + "startOffset": 12660, + "endLine": 168, + "endColumn": 12, + "endOffset": 12838 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 186, + "startColumn": 4, + "startOffset": 15090, + "endLine": 188, + "endColumn": 12, + "endOffset": 15268 + } + } + }, + { + "to": { + "startLine": 169, + "startColumn": 4, + "startOffset": 12843, + "endLine": 170, + "endColumn": 12, + "endOffset": 12969 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 189, + "startColumn": 4, + "startOffset": 15273, + "endLine": 190, + "endColumn": 12, + "endOffset": 15399 + } + } + }, + { + "to": { + "startLine": 171, + "startColumn": 4, + "startOffset": 12974, + "endColumn": 116, + "endOffset": 13086 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 191, + "startColumn": 4, + "startOffset": 15404, + "endColumn": 116, + "endOffset": 15516 + } + } + }, + { + "to": { + "startLine": 172, + "startColumn": 4, + "startOffset": 13091, + "endColumn": 88, + "endOffset": 13175 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 192, + "startColumn": 4, + "startOffset": 15521, + "endColumn": 88, + "endOffset": 15605 + } + } + }, + { + "to": { + "startLine": 173, + "startColumn": 4, + "startOffset": 13180, + "endColumn": 110, + "endOffset": 13286 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 193, + "startColumn": 4, + "startOffset": 15610, + "endColumn": 110, + "endOffset": 15716 + } + } + }, + { + "to": { + "startLine": 174, + "startColumn": 4, + "startOffset": 13291, + "endColumn": 126, + "endOffset": 13413 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 194, + "startColumn": 4, + "startOffset": 15721, + "endColumn": 126, + "endOffset": 15843 + } + } + }, + { + "to": { + "startLine": 175, + "startColumn": 4, + "startOffset": 13418, + "endColumn": 100, + "endOffset": 13514 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 195, + "startColumn": 4, + "startOffset": 15848, + "endColumn": 100, + "endOffset": 15944 + } + } + }, + { + "to": { + "startLine": 176, + "startColumn": 4, + "startOffset": 13519, + "endColumn": 94, + "endOffset": 13609 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 196, + "startColumn": 4, + "startOffset": 15949, + "endColumn": 94, + "endOffset": 16039 + } + } + }, + { + "to": { + "startLine": 177, + "startColumn": 4, + "startOffset": 13614, + "endColumn": 122, + "endOffset": 13732 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 197, + "startColumn": 4, + "startOffset": 16044, + "endColumn": 122, + "endOffset": 16162 + } + } + }, + { + "to": { + "startLine": 178, + "startColumn": 4, + "startOffset": 13737, + "endColumn": 128, + "endOffset": 13861 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 198, + "startColumn": 4, + "startOffset": 16167, + "endColumn": 128, + "endOffset": 16291 + } + } + }, + { + "to": { + "startLine": 179, + "startColumn": 4, + "startOffset": 13866, + "endColumn": 116, + "endOffset": 13978 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 199, + "startColumn": 4, + "startOffset": 16296, + "endColumn": 116, + "endOffset": 16408 + } + } + }, + { + "to": { + "startLine": 180, + "startColumn": 4, + "startOffset": 13983, + "endLine": 181, + "endColumn": 12, + "endOffset": 14113 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 200, + "startColumn": 4, + "startOffset": 16413, + "endLine": 201, + "endColumn": 12, + "endOffset": 16543 + } + } + }, + { + "to": { + "startLine": 182, + "startColumn": 4, + "startOffset": 14118, + "endLine": 183, + "endColumn": 12, + "endOffset": 14256 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 202, + "startColumn": 4, + "startOffset": 16548, + "endLine": 203, + "endColumn": 12, + "endOffset": 16686 + } + } + }, + { + "to": { + "startLine": 184, + "startColumn": 4, + "startOffset": 14261, + "endLine": 185, + "endColumn": 12, + "endOffset": 14391 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 204, + "startColumn": 4, + "startOffset": 16691, + "endLine": 205, + "endColumn": 12, + "endOffset": 16821 + } + } + }, + { + "to": { + "startLine": 186, + "startColumn": 4, + "startOffset": 14396, + "endLine": 187, + "endColumn": 12, + "endOffset": 14510 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 206, + "startColumn": 4, + "startOffset": 16826, + "endLine": 207, + "endColumn": 12, + "endOffset": 16940 + } + } + }, + { + "to": { + "startLine": 188, + "startColumn": 4, + "startOffset": 14515, + "endLine": 191, + "endColumn": 12, + "endOffset": 14711 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 208, + "startColumn": 4, + "startOffset": 16945, + "endLine": 211, + "endColumn": 12, + "endOffset": 17141 + } + } + }, + { + "to": { + "startLine": 192, + "startColumn": 4, + "startOffset": 14716, + "endLine": 193, + "endColumn": 12, + "endOffset": 14830 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 212, + "startColumn": 4, + "startOffset": 17146, + "endLine": 213, + "endColumn": 12, + "endOffset": 17260 + } + } + }, + { + "to": { + "startLine": 194, + "startColumn": 4, + "startOffset": 14835, + "endColumn": 92, + "endOffset": 14923 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 214, + "startColumn": 4, + "startOffset": 17265, + "endColumn": 92, + "endOffset": 17353 + } + } + }, + { + "to": { + "startLine": 195, + "startColumn": 4, + "startOffset": 14928, + "endColumn": 110, + "endOffset": 15034 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 215, + "startColumn": 4, + "startOffset": 17358, + "endColumn": 110, + "endOffset": 17464 + } + } + }, + { + "to": { + "startLine": 196, + "startColumn": 4, + "startOffset": 15039, + "endColumn": 55, + "endOffset": 15090 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 216, + "startColumn": 4, + "startOffset": 17469, + "endColumn": 55, + "endOffset": 17520 + } + } + }, + { + "to": { + "startLine": 197, + "startColumn": 4, + "startOffset": 15095, + "endLine": 198, + "endColumn": 12, + "endOffset": 15197 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 217, + "startColumn": 4, + "startOffset": 17525, + "endLine": 218, + "endColumn": 12, + "endOffset": 17627 + } + } + }, + { + "to": { + "startLine": 199, + "startColumn": 4, + "startOffset": 15202, + "endLine": 202, + "endColumn": 12, + "endOffset": 15392 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 219, + "startColumn": 4, + "startOffset": 17632, + "endLine": 222, + "endColumn": 12, + "endOffset": 17822 + } + } + }, + { + "to": { + "startLine": 203, + "startColumn": 4, + "startOffset": 15397, + "endLine": 204, + "endColumn": 12, + "endOffset": 15503 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 223, + "startColumn": 4, + "startOffset": 17827, + "endLine": 224, + "endColumn": 12, + "endOffset": 17933 + } + } + }, + { + "to": { + "startLine": 205, + "startColumn": 4, + "startOffset": 15508, + "endLine": 206, + "endColumn": 12, + "endOffset": 15636 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 225, + "startColumn": 4, + "startOffset": 17938, + "endLine": 226, + "endColumn": 12, + "endOffset": 18066 + } + } + }, + { + "to": { + "startLine": 207, + "startColumn": 4, + "startOffset": 15641, + "endColumn": 94, + "endOffset": 15731 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 227, + "startColumn": 4, + "startOffset": 18071, + "endColumn": 94, + "endOffset": 18161 + } + } + }, + { + "to": { + "startLine": 208, + "startColumn": 4, + "startOffset": 15736, + "endColumn": 90, + "endOffset": 15822 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 228, + "startColumn": 4, + "startOffset": 18166, + "endColumn": 90, + "endOffset": 18252 + } + } + }, + { + "to": { + "startLine": 209, + "startColumn": 4, + "startOffset": 15827, + "endLine": 213, + "endColumn": 12, + "endOffset": 16131 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 229, + "startColumn": 4, + "startOffset": 18257, + "endLine": 233, + "endColumn": 12, + "endOffset": 18561 + } + } + }, + { + "to": { + "startLine": 214, + "startColumn": 4, + "startOffset": 16136, + "endColumn": 112, + "endOffset": 16244 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 234, + "startColumn": 4, + "startOffset": 18566, + "endColumn": 112, + "endOffset": 18674 + } + } + }, + { + "to": { + "startLine": 215, + "startColumn": 4, + "startOffset": 16249, + "endColumn": 116, + "endOffset": 16361 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 235, + "startColumn": 4, + "startOffset": 18679, + "endColumn": 116, + "endOffset": 18791 + } + } + }, + { + "to": { + "startLine": 216, + "startColumn": 4, + "startOffset": 16366, + "endLine": 217, + "endColumn": 12, + "endOffset": 16500 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 236, + "startColumn": 4, + "startOffset": 18796, + "endLine": 237, + "endColumn": 12, + "endOffset": 18930 + } + } + }, + { + "to": { + "startLine": 218, + "startColumn": 4, + "startOffset": 16505, + "endLine": 224, + "endColumn": 12, + "endOffset": 16853 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 240, + "startColumn": 4, + "startOffset": 19176, + "endLine": 246, + "endColumn": 12, + "endOffset": 19524 + } + } + }, + { + "to": { + "startLine": 225, + "startColumn": 4, + "startOffset": 16858, + "endLine": 231, + "endColumn": 12, + "endOffset": 17218 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 247, + "startColumn": 4, + "startOffset": 19529, + "endLine": 253, + "endColumn": 12, + "endOffset": 19889 + } + } + }, + { + "to": { + "startLine": 232, + "startColumn": 4, + "startOffset": 17223, + "endLine": 241, + "endColumn": 12, + "endOffset": 17903 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 254, + "startColumn": 4, + "startOffset": 19894, + "endLine": 263, + "endColumn": 12, + "endOffset": 20574 + } + } + }, + { + "to": { + "startLine": 242, + "startColumn": 4, + "startOffset": 17908, + "endLine": 251, + "endColumn": 12, + "endOffset": 18589 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 264, + "startColumn": 4, + "startOffset": 20579, + "endLine": 273, + "endColumn": 12, + "endOffset": 21260 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-vi.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-vi.json new file mode 100644 index 0000000..61dc7b8 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-vi.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 113, + "endOffset": 400 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 405, + "endColumn": 107, + "endOffset": 508 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 108, + "endOffset": 381 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 513, + "endColumn": 108, + "endOffset": 617 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 386, + "endColumn": 83, + "endOffset": 465 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 622, + "endColumn": 83, + "endOffset": 701 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 470, + "endColumn": 102, + "endOffset": 568 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 706, + "endColumn": 102, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 573, + "endColumn": 118, + "endOffset": 687 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 118, + "endOffset": 923 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 103, + "endOffset": 791 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 928, + "endColumn": 103, + "endOffset": 1027 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 796, + "endColumn": 108, + "endOffset": 900 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1032, + "endColumn": 108, + "endOffset": 1136 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 905, + "endColumn": 100, + "endOffset": 1001 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1141, + "endColumn": 100, + "endOffset": 1237 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1006, + "endColumn": 104, + "endOffset": 1106 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1242, + "endColumn": 104, + "endOffset": 1342 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1111, + "endColumn": 113, + "endOffset": 1220 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1347, + "endColumn": 113, + "endOffset": 1456 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1225, + "endColumn": 104, + "endOffset": 1325 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1461, + "endColumn": 104, + "endOffset": 1561 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1330, + "endColumn": 119, + "endOffset": 1445 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 119, + "endOffset": 1681 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w360dp-v13.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w360dp-v13.json new file mode 100644 index 0000000..98933ce --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w360dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-w360dp-v13/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 294, + "endColumn": 54, + "endOffset": 344 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w480dp-v13.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w480dp-v13.json new file mode 100644 index 0000000..3a43ecc --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w480dp-v13.json @@ -0,0 +1,45 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-w480dp-v13/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 293, + "endColumn": 61, + "endOffset": 350 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-w480dp-v13/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 594, + "endColumn": 71, + "endOffset": 661 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w500dp-v13.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w500dp-v13.json new file mode 100644 index 0000000..0884b54 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w500dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-w500dp-v13/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 294, + "endColumn": 54, + "endOffset": 344 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w600dp-v13.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w600dp-v13.json new file mode 100644 index 0000000..d38a547 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w600dp-v13.json @@ -0,0 +1,45 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 63, + "endOffset": 114 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-w600dp-v13/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 294, + "endColumn": 63, + "endOffset": 353 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 119, + "endColumn": 54, + "endOffset": 169 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-w600dp-v13/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 358, + "endColumn": 54, + "endOffset": 408 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w720dp-v13.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w720dp-v13.json new file mode 100644 index 0000000..fc45db0 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w720dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 76, + "endOffset": 127 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-w720dp-v13/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 293, + "endColumn": 76, + "endOffset": 365 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w820dp-v13.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w820dp-v13.json new file mode 100644 index 0000000..edca0ca --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-w820dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 57, + "endOffset": 108 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/values-w820dp-v13/values-w820dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 57, + "endOffset": 108 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-xlarge-land-v4.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-xlarge-land-v4.json new file mode 100644 index 0000000..323278f --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-xlarge-land-v4.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 63, + "endOffset": 114 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-xlarge-land-v4/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 299, + "endColumn": 63, + "endOffset": 358 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-xlarge-v4.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-xlarge-v4.json new file mode 100644 index 0000000..a424306 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-xlarge-v4.json @@ -0,0 +1,140 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 76, + "endOffset": 127 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-xlarge-v4/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 293, + "endColumn": 76, + "endOffset": 365 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 132, + "endColumn": 63, + "endOffset": 191 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-xlarge-v4/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 609, + "endColumn": 63, + "endOffset": 668 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 196, + "endColumn": 66, + "endOffset": 258 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-xlarge-v4/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 673, + "endColumn": 66, + "endOffset": 735 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 263, + "endColumn": 66, + "endOffset": 325 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-xlarge-v4/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 740, + "endColumn": 66, + "endOffset": 802 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 330, + "endColumn": 65, + "endOffset": 391 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-xlarge-v4/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 807, + "endColumn": 65, + "endOffset": 868 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 396, + "endColumn": 65, + "endOffset": 457 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-xlarge-v4/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 873, + "endColumn": 65, + "endOffset": 934 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 462, + "endColumn": 54, + "endOffset": 512 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-xlarge-v4/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 939, + "endColumn": 54, + "endOffset": 989 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rCN.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rCN.json new file mode 100644 index 0000000..c4aa6be --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rCN.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 95, + "endOffset": 146 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 95, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 151, + "endColumn": 94, + "endOffset": 241 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 94, + "endOffset": 481 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 246, + "endColumn": 99, + "endOffset": 341 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 486, + "endColumn": 99, + "endOffset": 581 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 346, + "endColumn": 81, + "endOffset": 423 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 586, + "endColumn": 81, + "endOffset": 663 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 428, + "endColumn": 96, + "endOffset": 520 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 668, + "endColumn": 96, + "endOffset": 760 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 525, + "endColumn": 105, + "endOffset": 626 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 765, + "endColumn": 105, + "endOffset": 866 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 631, + "endColumn": 95, + "endOffset": 722 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 871, + "endColumn": 95, + "endOffset": 962 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 727, + "endColumn": 95, + "endOffset": 818 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 967, + "endColumn": 95, + "endOffset": 1058 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 823, + "endColumn": 94, + "endOffset": 913 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1063, + "endColumn": 94, + "endOffset": 1153 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 918, + "endColumn": 96, + "endOffset": 1010 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1158, + "endColumn": 96, + "endOffset": 1250 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1015, + "endColumn": 94, + "endOffset": 1105 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1255, + "endColumn": 94, + "endOffset": 1345 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1110, + "endColumn": 97, + "endOffset": 1203 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1350, + "endColumn": 97, + "endOffset": 1443 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1208, + "endColumn": 111, + "endOffset": 1315 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1448, + "endColumn": 111, + "endOffset": 1555 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rHK.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rHK.json new file mode 100644 index 0000000..6643c25 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rHK.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 94, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 92, + "endOffset": 238 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 92, + "endOffset": 478 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 243, + "endColumn": 99, + "endOffset": 338 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 483, + "endColumn": 99, + "endOffset": 578 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 343, + "endColumn": 81, + "endOffset": 420 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 583, + "endColumn": 81, + "endOffset": 660 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 425, + "endColumn": 96, + "endOffset": 517 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 665, + "endColumn": 96, + "endOffset": 757 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 522, + "endColumn": 107, + "endOffset": 625 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 762, + "endColumn": 107, + "endOffset": 865 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 630, + "endColumn": 95, + "endOffset": 721 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 870, + "endColumn": 95, + "endOffset": 961 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 726, + "endColumn": 95, + "endOffset": 817 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 966, + "endColumn": 95, + "endOffset": 1057 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 822, + "endColumn": 94, + "endOffset": 912 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 94, + "endOffset": 1152 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 917, + "endColumn": 96, + "endOffset": 1009 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1157, + "endColumn": 96, + "endOffset": 1249 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 94, + "endOffset": 1104 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1254, + "endColumn": 94, + "endOffset": 1344 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1109, + "endColumn": 97, + "endOffset": 1202 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1349, + "endColumn": 97, + "endOffset": 1442 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1207, + "endColumn": 112, + "endOffset": 1315 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1447, + "endColumn": 112, + "endOffset": 1555 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rTW.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rTW.json new file mode 100644 index 0000000..cfbb820 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rTW.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 94, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 92, + "endOffset": 238 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 92, + "endOffset": 478 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 243, + "endColumn": 99, + "endOffset": 338 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 483, + "endColumn": 99, + "endOffset": 578 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 343, + "endColumn": 81, + "endOffset": 420 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 583, + "endColumn": 81, + "endOffset": 660 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 425, + "endColumn": 96, + "endOffset": 517 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 665, + "endColumn": 96, + "endOffset": 757 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 522, + "endColumn": 107, + "endOffset": 625 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 762, + "endColumn": 107, + "endOffset": 865 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 630, + "endColumn": 95, + "endOffset": 721 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 870, + "endColumn": 95, + "endOffset": 961 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 726, + "endColumn": 95, + "endOffset": 817 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 966, + "endColumn": 95, + "endOffset": 1057 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 822, + "endColumn": 94, + "endOffset": 912 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 94, + "endOffset": 1152 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 917, + "endColumn": 96, + "endOffset": 1009 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1157, + "endColumn": 96, + "endOffset": 1249 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 94, + "endOffset": 1104 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1254, + "endColumn": 94, + "endOffset": 1344 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1109, + "endColumn": 99, + "endOffset": 1204 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1349, + "endColumn": 99, + "endOffset": 1444 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1209, + "endColumn": 112, + "endOffset": 1317 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1449, + "endColumn": 112, + "endOffset": 1557 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-zu.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-zu.json new file mode 100644 index 0000000..ff70079 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values-zu.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 107, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 106, + "endOffset": 265 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 106, + "endOffset": 501 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 270, + "endColumn": 113, + "endOffset": 379 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 506, + "endColumn": 113, + "endOffset": 615 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 384, + "endColumn": 87, + "endOffset": 467 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 87, + "endOffset": 703 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 472, + "endColumn": 102, + "endOffset": 570 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 102, + "endOffset": 806 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 575, + "endColumn": 126, + "endOffset": 697 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 811, + "endColumn": 126, + "endOffset": 933 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 702, + "endColumn": 103, + "endOffset": 801 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 938, + "endColumn": 103, + "endOffset": 1037 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 806, + "endColumn": 105, + "endOffset": 907 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1042, + "endColumn": 105, + "endOffset": 1143 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 97, + "endOffset": 1005 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1148, + "endColumn": 97, + "endOffset": 1241 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 106, + "endOffset": 1112 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1246, + "endColumn": 106, + "endOffset": 1348 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 105, + "endOffset": 1218 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1353, + "endColumn": 105, + "endOffset": 1454 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1223, + "endColumn": 105, + "endOffset": 1324 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1459, + "endColumn": 105, + "endOffset": 1560 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1329, + "endColumn": 119, + "endOffset": 1444 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1565, + "endColumn": 119, + "endOffset": 1680 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values.json new file mode 100644 index 0000000..d60d433 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/multi/values.json @@ -0,0 +1,8607 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 286, + "endColumn": 54, + "endOffset": 336 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 110, + "endColumn": 44, + "endOffset": 150 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 341, + "endColumn": 44, + "endOffset": 381 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 155, + "endColumn": 48, + "endOffset": 199 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 386, + "endColumn": 48, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 204, + "endColumn": 40, + "endOffset": 240 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 435, + "endColumn": 40, + "endOffset": 471 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 245, + "endColumn": 54, + "endOffset": 295 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 707, + "endColumn": 54, + "endOffset": 757 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 300, + "endColumn": 62, + "endOffset": 358 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 762, + "endColumn": 62, + "endOffset": 820 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 363, + "endColumn": 75, + "endOffset": 434 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 825, + "endColumn": 75, + "endOffset": 896 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 439, + "endColumn": 61, + "endOffset": 496 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1133, + "endColumn": 61, + "endOffset": 1190 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 501, + "endColumn": 72, + "endOffset": 569 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1195, + "endColumn": 72, + "endOffset": 1263 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 574, + "endColumn": 67, + "endOffset": 637 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1268, + "endColumn": 67, + "endOffset": 1331 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 642, + "endColumn": 77, + "endOffset": 715 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1567, + "endColumn": 77, + "endOffset": 1640 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 720, + "endColumn": 80, + "endOffset": 796 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1877, + "endColumn": 80, + "endOffset": 1953 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 801, + "endColumn": 60, + "endOffset": 857 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1958, + "endColumn": 60, + "endOffset": 2014 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 862, + "endColumn": 74, + "endOffset": 932 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2019, + "endColumn": 74, + "endOffset": 2089 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 937, + "endColumn": 75, + "endOffset": 1008 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2094, + "endColumn": 75, + "endOffset": 2165 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 76, + "endOffset": 1085 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2411, + "endColumn": 76, + "endOffset": 2483 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 77, + "endOffset": 1163 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2488, + "endColumn": 77, + "endOffset": 2561 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1168, + "endColumn": 69, + "endOffset": 1233 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2566, + "endColumn": 69, + "endOffset": 2631 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1238, + "endColumn": 70, + "endOffset": 1304 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2636, + "endColumn": 70, + "endOffset": 2702 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1309, + "endColumn": 60, + "endOffset": 1365 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2707, + "endColumn": 60, + "endOffset": 2763 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 61, + "endOffset": 1427 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2768, + "endColumn": 61, + "endOffset": 2825 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1432, + "endColumn": 76, + "endOffset": 1504 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2830, + "endColumn": 76, + "endOffset": 2902 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1509, + "endColumn": 77, + "endOffset": 1582 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2907, + "endColumn": 77, + "endOffset": 2980 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1587, + "endColumn": 105, + "endOffset": 1688 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2985, + "endColumn": 105, + "endOffset": 3086 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1693, + "endColumn": 105, + "endOffset": 1794 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3091, + "endColumn": 105, + "endOffset": 3192 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1799, + "endColumn": 78, + "endOffset": 1873 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3197, + "endColumn": 78, + "endOffset": 3271 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1878, + "endColumn": 79, + "endOffset": 1953 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3276, + "endColumn": 79, + "endOffset": 3351 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1958, + "endColumn": 56, + "endOffset": 2010 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3356, + "endColumn": 56, + "endOffset": 3408 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2015, + "endColumn": 57, + "endOffset": 2068 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3413, + "endColumn": 57, + "endOffset": 3466 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2073, + "endColumn": 73, + "endOffset": 2142 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3471, + "endColumn": 73, + "endOffset": 3540 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2147, + "endColumn": 74, + "endOffset": 2217 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3545, + "endColumn": 74, + "endOffset": 3615 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2222, + "endColumn": 64, + "endOffset": 2282 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3620, + "endColumn": 64, + "endOffset": 3680 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2287, + "endColumn": 65, + "endOffset": 2348 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3685, + "endColumn": 65, + "endOffset": 3746 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2353, + "endColumn": 66, + "endOffset": 2415 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3751, + "endColumn": 66, + "endOffset": 3813 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2420, + "endColumn": 67, + "endOffset": 2483 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3818, + "endColumn": 67, + "endOffset": 3881 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2488, + "endColumn": 103, + "endOffset": 2587 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3886, + "endColumn": 103, + "endOffset": 3985 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2592, + "endColumn": 105, + "endOffset": 2693 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3990, + "endColumn": 105, + "endOffset": 4091 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2698, + "endColumn": 79, + "endOffset": 2773 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4096, + "endColumn": 79, + "endOffset": 4171 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2778, + "endColumn": 80, + "endOffset": 2854 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4176, + "endColumn": 80, + "endOffset": 4252 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2859, + "endColumn": 58, + "endOffset": 2913 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4257, + "endColumn": 58, + "endOffset": 4311 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2918, + "endColumn": 58, + "endOffset": 2972 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4316, + "endColumn": 58, + "endOffset": 4370 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 2977, + "endColumn": 58, + "endOffset": 3031 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4375, + "endColumn": 58, + "endOffset": 4429 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3036, + "endColumn": 58, + "endOffset": 3090 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4434, + "endColumn": 58, + "endOffset": 4488 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3095, + "endColumn": 58, + "endOffset": 3149 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4493, + "endColumn": 58, + "endOffset": 4547 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3154, + "endColumn": 62, + "endOffset": 3212 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4552, + "endColumn": 62, + "endOffset": 4610 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3217, + "endColumn": 63, + "endOffset": 3276 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4615, + "endColumn": 63, + "endOffset": 4674 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3281, + "endColumn": 57, + "endOffset": 3334 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4679, + "endColumn": 57, + "endOffset": 4732 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3339, + "endColumn": 58, + "endOffset": 3393 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4737, + "endColumn": 58, + "endOffset": 4791 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3398, + "endColumn": 70, + "endOffset": 3464 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4796, + "endColumn": 70, + "endOffset": 4862 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3469, + "endColumn": 71, + "endOffset": 3536 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 4867, + "endColumn": 71, + "endOffset": 4934 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3541, + "endColumn": 71, + "endOffset": 3608 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 64, + "startColumn": 4, + "startOffset": 4939, + "endColumn": 71, + "endOffset": 5006 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 3613, + "endColumn": 72, + "endOffset": 3681 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 65, + "startColumn": 4, + "startOffset": 5011, + "endColumn": 72, + "endOffset": 5079 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3686, + "endColumn": 56, + "endOffset": 3738 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 66, + "startColumn": 4, + "startOffset": 5084, + "endColumn": 56, + "endOffset": 5136 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3743, + "endColumn": 57, + "endOffset": 3796 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 67, + "startColumn": 4, + "startOffset": 5141, + "endColumn": 57, + "endOffset": 5194 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 3801, + "endColumn": 72, + "endOffset": 3869 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 68, + "startColumn": 4, + "startOffset": 5199, + "endColumn": 72, + "endOffset": 5267 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 3874, + "endColumn": 73, + "endOffset": 3943 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 69, + "startColumn": 4, + "startOffset": 5272, + "endColumn": 73, + "endOffset": 5341 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 3948, + "endColumn": 73, + "endOffset": 4017 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 70, + "startColumn": 4, + "startOffset": 5346, + "endColumn": 73, + "endOffset": 5415 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4022, + "endColumn": 74, + "endOffset": 4092 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 71, + "startColumn": 4, + "startOffset": 5420, + "endColumn": 74, + "endOffset": 5490 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4097, + "endColumn": 71, + "endOffset": 4164 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 72, + "startColumn": 4, + "startOffset": 5495, + "endColumn": 71, + "endOffset": 5562 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4169, + "endColumn": 72, + "endOffset": 4237 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 73, + "startColumn": 4, + "startOffset": 5567, + "endColumn": 72, + "endOffset": 5635 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4242, + "endColumn": 69, + "endOffset": 4307 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 74, + "startColumn": 4, + "startOffset": 5640, + "endColumn": 69, + "endOffset": 5705 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 4312, + "endColumn": 70, + "endOffset": 4378 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 75, + "startColumn": 4, + "startOffset": 5710, + "endColumn": 70, + "endOffset": 5776 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 19948, + "endColumn": 68, + "endOffset": 20012 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 103, + "startColumn": 4, + "startOffset": 21387, + "endColumn": 68, + "endOffset": 21451 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 20017, + "endColumn": 69, + "endOffset": 20082 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 104, + "startColumn": 4, + "startOffset": 21456, + "endColumn": 69, + "endOffset": 21521 + } + } + }, + { + "to": { + "startLine": 92, + "startColumn": 4, + "startOffset": 20087, + "endColumn": 69, + "endOffset": 20152 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 105, + "startColumn": 4, + "startOffset": 21526, + "endColumn": 69, + "endOffset": 21591 + } + } + }, + { + "to": { + "startLine": 93, + "startColumn": 4, + "startOffset": 20157, + "endColumn": 76, + "endOffset": 20229 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 106, + "startColumn": 4, + "startOffset": 21596, + "endColumn": 76, + "endOffset": 21668 + } + } + }, + { + "to": { + "startLine": 94, + "startColumn": 4, + "startOffset": 20234, + "endColumn": 78, + "endOffset": 20308 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 107, + "startColumn": 4, + "startOffset": 21673, + "endColumn": 78, + "endOffset": 21747 + } + } + }, + { + "to": { + "startLine": 95, + "startColumn": 4, + "startOffset": 20313, + "endColumn": 75, + "endOffset": 20384 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 108, + "startColumn": 4, + "startOffset": 21752, + "endColumn": 75, + "endOffset": 21823 + } + } + }, + { + "to": { + "startLine": 96, + "startColumn": 4, + "startOffset": 20389, + "endColumn": 76, + "endOffset": 20461 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 109, + "startColumn": 4, + "startOffset": 21828, + "endColumn": 76, + "endOffset": 21900 + } + } + }, + { + "to": { + "startLine": 97, + "startColumn": 4, + "startOffset": 20466, + "endColumn": 63, + "endOffset": 20525 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 112, + "startColumn": 4, + "startOffset": 22137, + "endColumn": 63, + "endOffset": 22196 + } + } + }, + { + "to": { + "startLine": 98, + "startColumn": 4, + "startOffset": 20530, + "endColumn": 64, + "endOffset": 20590 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 113, + "startColumn": 4, + "startOffset": 22201, + "endColumn": 64, + "endOffset": 22261 + } + } + }, + { + "to": { + "startLine": 99, + "startColumn": 4, + "startOffset": 20595, + "endColumn": 68, + "endOffset": 20659 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 114, + "startColumn": 4, + "startOffset": 22266, + "endColumn": 68, + "endOffset": 22330 + } + } + }, + { + "to": { + "startLine": 100, + "startColumn": 4, + "startOffset": 20664, + "endColumn": 76, + "endOffset": 20736 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 117, + "startColumn": 4, + "startOffset": 22576, + "endColumn": 76, + "endOffset": 22648 + } + } + }, + { + "to": { + "startLine": 101, + "startColumn": 4, + "startOffset": 20741, + "endColumn": 74, + "endOffset": 20811 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 118, + "startColumn": 4, + "startOffset": 22653, + "endColumn": 74, + "endOffset": 22723 + } + } + }, + { + "to": { + "startLine": 102, + "startColumn": 4, + "startOffset": 20816, + "endColumn": 68, + "endOffset": 20880 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 119, + "startColumn": 4, + "startOffset": 22728, + "endColumn": 68, + "endOffset": 22792 + } + } + }, + { + "to": { + "startLine": 103, + "startColumn": 4, + "startOffset": 20885, + "endColumn": 67, + "endOffset": 20948 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 120, + "startColumn": 4, + "startOffset": 22797, + "endColumn": 67, + "endOffset": 22860 + } + } + }, + { + "to": { + "startLine": 104, + "startColumn": 4, + "startOffset": 20953, + "endColumn": 76, + "endOffset": 21025 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 121, + "startColumn": 4, + "startOffset": 22865, + "endColumn": 76, + "endOffset": 22937 + } + } + }, + { + "to": { + "startLine": 105, + "startColumn": 4, + "startOffset": 21030, + "endColumn": 65, + "endOffset": 21091 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 124, + "startColumn": 4, + "startOffset": 23174, + "endColumn": 65, + "endOffset": 23235 + } + } + }, + { + "to": { + "startLine": 106, + "startColumn": 4, + "startOffset": 21096, + "endColumn": 96, + "endOffset": 21188 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 125, + "startColumn": 4, + "startOffset": 23240, + "endColumn": 96, + "endOffset": 23332 + } + } + }, + { + "to": { + "startLine": 107, + "startColumn": 4, + "startOffset": 21193, + "endColumn": 64, + "endOffset": 21253 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 126, + "startColumn": 4, + "startOffset": 23337, + "endColumn": 64, + "endOffset": 23397 + } + } + }, + { + "to": { + "startLine": 108, + "startColumn": 4, + "startOffset": 21258, + "endColumn": 68, + "endOffset": 21322 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 127, + "startColumn": 4, + "startOffset": 23402, + "endColumn": 68, + "endOffset": 23466 + } + } + }, + { + "to": { + "startLine": 109, + "startColumn": 4, + "startOffset": 21327, + "endColumn": 98, + "endOffset": 21421 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 128, + "startColumn": 4, + "startOffset": 23471, + "endColumn": 98, + "endOffset": 23565 + } + } + }, + { + "to": { + "startLine": 110, + "startColumn": 4, + "startOffset": 21426, + "endColumn": 58, + "endOffset": 21480 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 131, + "startColumn": 4, + "startOffset": 23802, + "endColumn": 58, + "endOffset": 23856 + } + } + }, + { + "to": { + "startLine": 111, + "startColumn": 4, + "startOffset": 21485, + "endColumn": 57, + "endOffset": 21538 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 134, + "startColumn": 4, + "startOffset": 24093, + "endColumn": 57, + "endOffset": 24146 + } + } + }, + { + "to": { + "startLine": 112, + "startColumn": 4, + "startOffset": 21543, + "endColumn": 56, + "endOffset": 21595 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 135, + "startColumn": 4, + "startOffset": 24151, + "endColumn": 56, + "endOffset": 24203 + } + } + }, + { + "to": { + "startLine": 113, + "startColumn": 4, + "startOffset": 21600, + "endColumn": 58, + "endOffset": 21654 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 136, + "startColumn": 4, + "startOffset": 24208, + "endColumn": 58, + "endOffset": 24262 + } + } + }, + { + "to": { + "startLine": 114, + "startColumn": 4, + "startOffset": 21659, + "endColumn": 71, + "endOffset": 21726 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 137, + "startColumn": 4, + "startOffset": 24267, + "endColumn": 71, + "endOffset": 24334 + } + } + }, + { + "to": { + "startLine": 115, + "startColumn": 4, + "startOffset": 21731, + "endColumn": 67, + "endOffset": 21794 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 138, + "startColumn": 4, + "startOffset": 24339, + "endColumn": 67, + "endOffset": 24402 + } + } + }, + { + "to": { + "startLine": 116, + "startColumn": 4, + "startOffset": 21799, + "endColumn": 67, + "endOffset": 21862 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 139, + "startColumn": 4, + "startOffset": 24407, + "endColumn": 67, + "endOffset": 24470 + } + } + }, + { + "to": { + "startLine": 117, + "startColumn": 4, + "startOffset": 21867, + "endColumn": 58, + "endOffset": 21921 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 140, + "startColumn": 4, + "startOffset": 24475, + "endColumn": 58, + "endOffset": 24529 + } + } + }, + { + "to": { + "startLine": 118, + "startColumn": 4, + "startOffset": 21926, + "endColumn": 62, + "endOffset": 21984 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 141, + "startColumn": 4, + "startOffset": 24534, + "endColumn": 62, + "endOffset": 24592 + } + } + }, + { + "to": { + "startLine": 119, + "startColumn": 4, + "startOffset": 21989, + "endColumn": 89, + "endOffset": 22074 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 144, + "startColumn": 4, + "startOffset": 24838, + "endColumn": 89, + "endOffset": 24923 + } + } + }, + { + "to": { + "startLine": 120, + "startColumn": 4, + "startOffset": 22079, + "endColumn": 90, + "endOffset": 22165 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 145, + "startColumn": 4, + "startOffset": 24928, + "endColumn": 90, + "endOffset": 25014 + } + } + }, + { + "to": { + "startLine": 121, + "startColumn": 4, + "startOffset": 22170, + "endColumn": 59, + "endOffset": 22225 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 148, + "startColumn": 4, + "startOffset": 25251, + "endColumn": 59, + "endOffset": 25306 + } + } + }, + { + "to": { + "startLine": 122, + "startColumn": 4, + "startOffset": 22230, + "endColumn": 65, + "endOffset": 22291 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 149, + "startColumn": 4, + "startOffset": 25311, + "endColumn": 65, + "endOffset": 25372 + } + } + }, + { + "to": { + "startLine": 123, + "startColumn": 4, + "startOffset": 22296, + "endColumn": 66, + "endOffset": 22358 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 150, + "startColumn": 4, + "startOffset": 25377, + "endColumn": 66, + "endOffset": 25439 + } + } + }, + { + "to": { + "startLine": 124, + "startColumn": 4, + "startOffset": 22363, + "endColumn": 65, + "endOffset": 22424 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 151, + "startColumn": 4, + "startOffset": 25444, + "endColumn": 65, + "endOffset": 25505 + } + } + }, + { + "to": { + "startLine": 125, + "startColumn": 4, + "startOffset": 22429, + "endColumn": 69, + "endOffset": 22494 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 152, + "startColumn": 4, + "startOffset": 25510, + "endColumn": 69, + "endOffset": 25575 + } + } + }, + { + "to": { + "startLine": 126, + "startColumn": 4, + "startOffset": 22499, + "endColumn": 63, + "endOffset": 22558 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 153, + "startColumn": 4, + "startOffset": 25580, + "endColumn": 63, + "endOffset": 25639 + } + } + }, + { + "to": { + "startLine": 127, + "startColumn": 4, + "startOffset": 22563, + "endColumn": 52, + "endOffset": 22611 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 156, + "startColumn": 4, + "startOffset": 25885, + "endColumn": 52, + "endOffset": 25933 + } + } + }, + { + "to": { + "startLine": 128, + "startColumn": 4, + "startOffset": 22616, + "endColumn": 112, + "endOffset": 22724 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 157, + "startColumn": 4, + "startOffset": 25938, + "endColumn": 112, + "endOffset": 26046 + } + } + }, + { + "to": { + "startLine": 129, + "startColumn": 4, + "startOffset": 22729, + "endColumn": 57, + "endOffset": 22782 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 160, + "startColumn": 4, + "startOffset": 26283, + "endColumn": 57, + "endOffset": 26336 + } + } + }, + { + "to": { + "startLine": 130, + "startColumn": 4, + "startOffset": 22787, + "endColumn": 64, + "endOffset": 22847 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 161, + "startColumn": 4, + "startOffset": 26341, + "endColumn": 64, + "endOffset": 26401 + } + } + }, + { + "to": { + "startLine": 131, + "startColumn": 4, + "startOffset": 22852, + "endColumn": 63, + "endOffset": 22911 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 162, + "startColumn": 4, + "startOffset": 26406, + "endColumn": 63, + "endOffset": 26465 + } + } + }, + { + "to": { + "startLine": 132, + "startColumn": 4, + "startOffset": 22916, + "endColumn": 48, + "endOffset": 22960 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 163, + "startColumn": 4, + "startOffset": 26470, + "endColumn": 48, + "endOffset": 26514 + } + } + }, + { + "to": { + "startLine": 133, + "startColumn": 4, + "startOffset": 22965, + "endColumn": 60, + "endOffset": 23021 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 166, + "startColumn": 4, + "startOffset": 26760, + "endColumn": 60, + "endOffset": 26816 + } + } + }, + { + "to": { + "startLine": 134, + "startColumn": 4, + "startOffset": 23026, + "endColumn": 60, + "endOffset": 23082 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 167, + "startColumn": 4, + "startOffset": 26821, + "endColumn": 60, + "endOffset": 26877 + } + } + }, + { + "to": { + "startLine": 135, + "startColumn": 4, + "startOffset": 23087, + "endColumn": 60, + "endOffset": 23143 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 168, + "startColumn": 4, + "startOffset": 26882, + "endColumn": 60, + "endOffset": 26938 + } + } + }, + { + "to": { + "startLine": 136, + "startColumn": 4, + "startOffset": 23148, + "endColumn": 61, + "endOffset": 23205 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 169, + "startColumn": 4, + "startOffset": 26943, + "endColumn": 61, + "endOffset": 27000 + } + } + }, + { + "to": { + "startLine": 137, + "startColumn": 4, + "startOffset": 23210, + "endColumn": 63, + "endOffset": 23269 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 170, + "startColumn": 4, + "startOffset": 27005, + "endColumn": 63, + "endOffset": 27064 + } + } + }, + { + "to": { + "startLine": 138, + "startColumn": 4, + "startOffset": 23274, + "endColumn": 63, + "endOffset": 23333 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 171, + "startColumn": 4, + "startOffset": 27069, + "endColumn": 63, + "endOffset": 27128 + } + } + }, + { + "to": { + "startLine": 139, + "startColumn": 4, + "startOffset": 23338, + "endColumn": 63, + "endOffset": 23397 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 172, + "startColumn": 4, + "startOffset": 27133, + "endColumn": 63, + "endOffset": 27192 + } + } + }, + { + "to": { + "startLine": 140, + "startColumn": 4, + "startOffset": 23402, + "endColumn": 64, + "endOffset": 23462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 173, + "startColumn": 4, + "startOffset": 27197, + "endColumn": 64, + "endOffset": 27257 + } + } + }, + { + "to": { + "startLine": 141, + "startColumn": 4, + "startOffset": 23467, + "endColumn": 62, + "endOffset": 23525 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 174, + "startColumn": 4, + "startOffset": 27262, + "endColumn": 62, + "endOffset": 27320 + } + } + }, + { + "to": { + "startLine": 142, + "startColumn": 4, + "startOffset": 23530, + "endColumn": 59, + "endOffset": 23585 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 175, + "startColumn": 4, + "startOffset": 27325, + "endColumn": 59, + "endOffset": 27380 + } + } + }, + { + "to": { + "startLine": 143, + "startColumn": 4, + "startOffset": 23590, + "endColumn": 60, + "endOffset": 23646 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 176, + "startColumn": 4, + "startOffset": 27385, + "endColumn": 60, + "endOffset": 27441 + } + } + }, + { + "to": { + "startLine": 144, + "startColumn": 4, + "startOffset": 23651, + "endColumn": 58, + "endOffset": 23705 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 177, + "startColumn": 4, + "startOffset": 27446, + "endColumn": 58, + "endOffset": 27500 + } + } + }, + { + "to": { + "startLine": 145, + "startColumn": 4, + "startOffset": 23710, + "endColumn": 59, + "endOffset": 23765 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 178, + "startColumn": 4, + "startOffset": 27505, + "endColumn": 59, + "endOffset": 27560 + } + } + }, + { + "to": { + "startLine": 146, + "startColumn": 4, + "startOffset": 23770, + "endColumn": 61, + "endOffset": 23827 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 179, + "startColumn": 4, + "startOffset": 27565, + "endColumn": 61, + "endOffset": 27622 + } + } + }, + { + "to": { + "startLine": 147, + "startColumn": 4, + "startOffset": 23832, + "endColumn": 70, + "endOffset": 23898 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 180, + "startColumn": 4, + "startOffset": 27627, + "endColumn": 70, + "endOffset": 27693 + } + } + }, + { + "to": { + "startLine": 148, + "startColumn": 4, + "startOffset": 23903, + "endColumn": 59, + "endOffset": 23958 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 181, + "startColumn": 4, + "startOffset": 27698, + "endColumn": 59, + "endOffset": 27753 + } + } + }, + { + "to": { + "startLine": 149, + "startColumn": 4, + "startOffset": 23963, + "endColumn": 67, + "endOffset": 24026 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 182, + "startColumn": 4, + "startOffset": 27758, + "endColumn": 67, + "endOffset": 27821 + } + } + }, + { + "to": { + "startLine": 150, + "startColumn": 4, + "startOffset": 24031, + "endColumn": 57, + "endOffset": 24084 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 255, + "endColumn": 57, + "endOffset": 308 + } + } + }, + { + "to": { + "startLine": 151, + "startColumn": 4, + "startOffset": 24089, + "endColumn": 55, + "endOffset": 24140 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 313, + "endColumn": 55, + "endOffset": 364 + } + } + }, + { + "to": { + "startLine": 152, + "startColumn": 4, + "startOffset": 24145, + "endColumn": 66, + "endOffset": 24207 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 185, + "startColumn": 4, + "startOffset": 28058, + "endColumn": 66, + "endOffset": 28120 + } + } + }, + { + "to": { + "startLine": 153, + "startColumn": 4, + "startOffset": 24212, + "endColumn": 67, + "endOffset": 24275 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 186, + "startColumn": 4, + "startOffset": 28125, + "endColumn": 67, + "endOffset": 28188 + } + } + }, + { + "to": { + "startLine": 154, + "startColumn": 4, + "startOffset": 24280, + "endColumn": 67, + "endOffset": 24343 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 187, + "startColumn": 4, + "startOffset": 28193, + "endColumn": 67, + "endOffset": 28256 + } + } + }, + { + "to": { + "startLine": 155, + "startColumn": 4, + "startOffset": 24348, + "endColumn": 67, + "endOffset": 24411 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 188, + "startColumn": 4, + "startOffset": 28261, + "endColumn": 67, + "endOffset": 28324 + } + } + }, + { + "to": { + "startLine": 156, + "startColumn": 4, + "startOffset": 24416, + "endColumn": 85, + "endOffset": 24497 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 191, + "startColumn": 4, + "startOffset": 28570, + "endColumn": 85, + "endOffset": 28651 + } + } + }, + { + "to": { + "startLine": 157, + "startColumn": 4, + "startOffset": 24502, + "endColumn": 86, + "endOffset": 24584 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 192, + "startColumn": 4, + "startOffset": 28656, + "endColumn": 86, + "endOffset": 28738 + } + } + }, + { + "to": { + "startLine": 158, + "startColumn": 4, + "startOffset": 24589, + "endColumn": 56, + "endOffset": 24641 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 195, + "startColumn": 4, + "startOffset": 28972, + "endColumn": 56, + "endOffset": 29024 + } + } + }, + { + "to": { + "startLine": 159, + "startColumn": 4, + "startOffset": 24646, + "endColumn": 47, + "endOffset": 24689 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 196, + "startColumn": 4, + "startOffset": 29029, + "endColumn": 47, + "endOffset": 29072 + } + } + }, + { + "to": { + "startLine": 160, + "startColumn": 4, + "startOffset": 24694, + "endColumn": 48, + "endOffset": 24738 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 197, + "startColumn": 4, + "startOffset": 29077, + "endColumn": 48, + "endOffset": 29121 + } + } + }, + { + "to": { + "startLine": 161, + "startColumn": 4, + "startOffset": 24743, + "endColumn": 50, + "endOffset": 24789 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 198, + "startColumn": 4, + "startOffset": 29126, + "endColumn": 50, + "endOffset": 29172 + } + } + }, + { + "to": { + "startLine": 162, + "startColumn": 4, + "startOffset": 24794, + "endColumn": 33, + "endOffset": 24823 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 199, + "startColumn": 4, + "startOffset": 29177, + "endColumn": 33, + "endOffset": 29206 + } + } + }, + { + "to": { + "startLine": 163, + "startColumn": 4, + "startOffset": 24828, + "endColumn": 46, + "endOffset": 24870 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 200, + "startColumn": 4, + "startOffset": 29211, + "endColumn": 46, + "endOffset": 29253 + } + } + }, + { + "to": { + "startLine": 164, + "startColumn": 4, + "startOffset": 24875, + "endColumn": 48, + "endOffset": 24919 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 201, + "startColumn": 4, + "startOffset": 29258, + "endColumn": 48, + "endOffset": 29302 + } + } + }, + { + "to": { + "startLine": 165, + "startColumn": 4, + "startOffset": 24924, + "endColumn": 45, + "endOffset": 24965 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 202, + "startColumn": 4, + "startOffset": 29307, + "endColumn": 45, + "endOffset": 29348 + } + } + }, + { + "to": { + "startLine": 166, + "startColumn": 4, + "startOffset": 24970, + "endColumn": 31, + "endOffset": 24997 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 203, + "startColumn": 4, + "startOffset": 29353, + "endColumn": 31, + "endOffset": 29380 + } + } + }, + { + "to": { + "startLine": 167, + "startColumn": 4, + "startOffset": 25002, + "endColumn": 63, + "endOffset": 25061 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 206, + "startColumn": 4, + "startOffset": 29617, + "endColumn": 63, + "endOffset": 29676 + } + } + }, + { + "to": { + "startLine": 168, + "startColumn": 4, + "startOffset": 25066, + "endColumn": 61, + "endOffset": 25123 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 207, + "startColumn": 4, + "startOffset": 29681, + "endColumn": 61, + "endOffset": 29738 + } + } + }, + { + "to": { + "startLine": 169, + "startColumn": 4, + "startOffset": 25128, + "endColumn": 54, + "endOffset": 25178 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 210, + "startColumn": 4, + "startOffset": 29975, + "endColumn": 54, + "endOffset": 30025 + } + } + }, + { + "to": { + "startLine": 170, + "startColumn": 4, + "startOffset": 25183, + "endColumn": 73, + "endOffset": 25252 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 213, + "startColumn": 4, + "startOffset": 30263, + "endColumn": 73, + "endOffset": 30332 + } + } + }, + { + "to": { + "startLine": 171, + "startColumn": 4, + "startOffset": 25257, + "endColumn": 77, + "endOffset": 25330 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 214, + "startColumn": 4, + "startOffset": 30337, + "endColumn": 77, + "endOffset": 30410 + } + } + }, + { + "to": { + "startLine": 172, + "startColumn": 4, + "startOffset": 25335, + "endColumn": 92, + "endOffset": 25423 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 215, + "startColumn": 4, + "startOffset": 30415, + "endColumn": 92, + "endOffset": 30503 + } + } + }, + { + "to": { + "startLine": 173, + "startColumn": 4, + "startOffset": 25428, + "endColumn": 69, + "endOffset": 25493 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 216, + "startColumn": 4, + "startOffset": 30508, + "endColumn": 69, + "endOffset": 30573 + } + } + }, + { + "to": { + "startLine": 174, + "startColumn": 4, + "startOffset": 25498, + "endColumn": 77, + "endOffset": 25571 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 217, + "startColumn": 4, + "startOffset": 30578, + "endColumn": 77, + "endOffset": 30651 + } + } + }, + { + "to": { + "startLine": 175, + "startColumn": 4, + "startOffset": 25576, + "endColumn": 53, + "endOffset": 25625 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 218, + "startColumn": 4, + "startOffset": 30656, + "endColumn": 53, + "endOffset": 30705 + } + } + }, + { + "to": { + "startLine": 176, + "startColumn": 4, + "startOffset": 25630, + "endColumn": 69, + "endOffset": 25695 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 219, + "startColumn": 4, + "startOffset": 30710, + "endColumn": 69, + "endOffset": 30775 + } + } + }, + { + "to": { + "startLine": 177, + "startColumn": 4, + "startOffset": 25700, + "endColumn": 84, + "endOffset": 25780 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 220, + "startColumn": 4, + "startOffset": 30780, + "endColumn": 84, + "endOffset": 30860 + } + } + }, + { + "to": { + "startLine": 178, + "startColumn": 4, + "startOffset": 25785, + "endColumn": 51, + "endOffset": 25832 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 221, + "startColumn": 4, + "startOffset": 30865, + "endColumn": 51, + "endOffset": 30912 + } + } + }, + { + "to": { + "startLine": 179, + "startColumn": 4, + "startOffset": 25837, + "endColumn": 72, + "endOffset": 25905 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 222, + "startColumn": 4, + "startOffset": 30917, + "endColumn": 72, + "endOffset": 30985 + } + } + }, + { + "to": { + "startLine": 180, + "startColumn": 4, + "startOffset": 25910, + "endColumn": 73, + "endOffset": 25979 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 223, + "startColumn": 4, + "startOffset": 30990, + "endColumn": 73, + "endOffset": 31059 + } + } + }, + { + "to": { + "startLine": 181, + "startColumn": 4, + "startOffset": 25984, + "endColumn": 68, + "endOffset": 26048 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 224, + "startColumn": 4, + "startOffset": 31064, + "endColumn": 68, + "endOffset": 31128 + } + } + }, + { + "to": { + "startLine": 182, + "startColumn": 4, + "startOffset": 26053, + "endColumn": 74, + "endOffset": 26123 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 225, + "startColumn": 4, + "startOffset": 31133, + "endColumn": 74, + "endOffset": 31203 + } + } + }, + { + "to": { + "startLine": 183, + "startColumn": 4, + "startOffset": 26128, + "endColumn": 73, + "endOffset": 26197 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 226, + "startColumn": 4, + "startOffset": 31208, + "endColumn": 73, + "endOffset": 31277 + } + } + }, + { + "to": { + "startLine": 184, + "startColumn": 4, + "startOffset": 26202, + "endColumn": 73, + "endOffset": 26271 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 227, + "startColumn": 4, + "startOffset": 31282, + "endColumn": 73, + "endOffset": 31351 + } + } + }, + { + "to": { + "startLine": 185, + "startColumn": 4, + "startOffset": 26276, + "endColumn": 88, + "endOffset": 26360 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 228, + "startColumn": 4, + "startOffset": 31356, + "endColumn": 88, + "endOffset": 31440 + } + } + }, + { + "to": { + "startLine": 186, + "startColumn": 4, + "startOffset": 26365, + "endColumn": 69, + "endOffset": 26430 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 229, + "startColumn": 4, + "startOffset": 31445, + "endColumn": 69, + "endOffset": 31510 + } + } + }, + { + "to": { + "startLine": 187, + "startColumn": 4, + "startOffset": 26435, + "endColumn": 52, + "endOffset": 26483 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 369, + "endColumn": 52, + "endOffset": 417 + } + } + }, + { + "to": { + "startLine": 188, + "startColumn": 4, + "startOffset": 26488, + "endColumn": 50, + "endOffset": 26534 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 422, + "endColumn": 50, + "endOffset": 468 + } + } + }, + { + "to": { + "startLine": 189, + "startColumn": 4, + "startOffset": 26539, + "endColumn": 52, + "endOffset": 26587 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 473, + "endColumn": 52, + "endOffset": 521 + } + } + }, + { + "to": { + "startLine": 190, + "startColumn": 4, + "startOffset": 26592, + "endColumn": 77, + "endOffset": 26665 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 232, + "startColumn": 4, + "startOffset": 31747, + "endColumn": 77, + "endOffset": 31820 + } + } + }, + { + "to": { + "startLine": 191, + "startColumn": 4, + "startOffset": 26670, + "endColumn": 89, + "endOffset": 26755 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 233, + "startColumn": 4, + "startOffset": 31825, + "endColumn": 89, + "endOffset": 31910 + } + } + }, + { + "to": { + "startLine": 192, + "startColumn": 4, + "startOffset": 26760, + "endColumn": 87, + "endOffset": 26843 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 234, + "startColumn": 4, + "startOffset": 31915, + "endColumn": 87, + "endOffset": 31998 + } + } + }, + { + "to": { + "startLine": 193, + "startColumn": 4, + "startOffset": 26848, + "endColumn": 95, + "endOffset": 26939 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 235, + "startColumn": 4, + "startOffset": 32003, + "endColumn": 95, + "endOffset": 32094 + } + } + }, + { + "to": { + "startLine": 194, + "startColumn": 4, + "startOffset": 26944, + "endLine": 196, + "endColumn": 12, + "endOffset": 27069 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 526, + "endLine": 10, + "endColumn": 12, + "endOffset": 651 + } + } + }, + { + "to": { + "startLine": 197, + "startColumn": 4, + "startOffset": 27074, + "endLine": 203, + "endColumn": 12, + "endOffset": 27570 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 238, + "startColumn": 4, + "startOffset": 32336, + "endLine": 244, + "endColumn": 12, + "endOffset": 32832 + } + } + }, + { + "to": { + "startLine": 204, + "startColumn": 4, + "startOffset": 27575, + "endColumn": 88, + "endOffset": 27659 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 245, + "startColumn": 4, + "startOffset": 32837, + "endColumn": 88, + "endOffset": 32921 + } + } + }, + { + "to": { + "startLine": 205, + "startColumn": 4, + "startOffset": 27664, + "endLine": 208, + "endColumn": 12, + "endOffset": 27906 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 246, + "startColumn": 4, + "startOffset": 32926, + "endLine": 249, + "endColumn": 12, + "endOffset": 33168 + } + } + }, + { + "to": { + "startLine": 209, + "startColumn": 4, + "startOffset": 27911, + "endLine": 212, + "endColumn": 12, + "endOffset": 28187 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 250, + "startColumn": 4, + "startOffset": 33173, + "endLine": 253, + "endColumn": 12, + "endOffset": 33449 + } + } + }, + { + "to": { + "startLine": 213, + "startColumn": 4, + "startOffset": 28192, + "endLine": 217, + "endColumn": 12, + "endOffset": 28472 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 254, + "startColumn": 4, + "startOffset": 33454, + "endLine": 258, + "endColumn": 12, + "endOffset": 33734 + } + } + }, + { + "to": { + "startLine": 218, + "startColumn": 4, + "startOffset": 28477, + "endLine": 223, + "endColumn": 12, + "endOffset": 28865 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 259, + "startColumn": 4, + "startOffset": 33739, + "endLine": 264, + "endColumn": 12, + "endOffset": 34127 + } + } + }, + { + "to": { + "startLine": 224, + "startColumn": 4, + "startOffset": 28870, + "endLine": 230, + "endColumn": 12, + "endOffset": 29342 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 267, + "startColumn": 4, + "startOffset": 34374, + "endLine": 273, + "endColumn": 12, + "endOffset": 34846 + } + } + }, + { + "to": { + "startLine": 231, + "startColumn": 4, + "startOffset": 29347, + "endLine": 234, + "endColumn": 12, + "endOffset": 29564 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 274, + "startColumn": 4, + "startOffset": 34851, + "endLine": 277, + "endColumn": 12, + "endOffset": 35068 + } + } + }, + { + "to": { + "startLine": 235, + "startColumn": 4, + "startOffset": 29569, + "endLine": 238, + "endColumn": 12, + "endOffset": 29786 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 278, + "startColumn": 4, + "startOffset": 35073, + "endLine": 281, + "endColumn": 12, + "endOffset": 35290 + } + } + }, + { + "to": { + "startLine": 239, + "startColumn": 4, + "startOffset": 29791, + "endLine": 243, + "endColumn": 12, + "endOffset": 30054 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 282, + "startColumn": 4, + "startOffset": 35295, + "endLine": 286, + "endColumn": 12, + "endOffset": 35558 + } + } + }, + { + "to": { + "startLine": 244, + "startColumn": 4, + "startOffset": 30059, + "endLine": 247, + "endColumn": 12, + "endOffset": 30281 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 287, + "startColumn": 4, + "startOffset": 35563, + "endLine": 290, + "endColumn": 12, + "endOffset": 35785 + } + } + }, + { + "to": { + "startLine": 248, + "startColumn": 4, + "startOffset": 30286, + "endLine": 251, + "endColumn": 12, + "endOffset": 30511 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 291, + "startColumn": 4, + "startOffset": 35790, + "endLine": 294, + "endColumn": 12, + "endOffset": 36015 + } + } + }, + { + "to": { + "startLine": 252, + "startColumn": 4, + "startOffset": 30516, + "endLine": 255, + "endColumn": 12, + "endOffset": 30741 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 295, + "startColumn": 4, + "startOffset": 36020, + "endLine": 298, + "endColumn": 12, + "endOffset": 36245 + } + } + }, + { + "to": { + "startLine": 256, + "startColumn": 4, + "startOffset": 30746, + "endLine": 259, + "endColumn": 12, + "endOffset": 30971 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 299, + "startColumn": 4, + "startOffset": 36250, + "endLine": 302, + "endColumn": 12, + "endOffset": 36475 + } + } + }, + { + "to": { + "startLine": 260, + "startColumn": 4, + "startOffset": 30976, + "endLine": 263, + "endColumn": 12, + "endOffset": 31201 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 303, + "startColumn": 4, + "startOffset": 36480, + "endLine": 306, + "endColumn": 12, + "endOffset": 36705 + } + } + }, + { + "to": { + "startLine": 264, + "startColumn": 4, + "startOffset": 31206, + "endLine": 267, + "endColumn": 12, + "endOffset": 31428 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 307, + "startColumn": 4, + "startOffset": 36710, + "endLine": 310, + "endColumn": 12, + "endOffset": 36932 + } + } + }, + { + "to": { + "startLine": 268, + "startColumn": 4, + "startOffset": 31433, + "endLine": 271, + "endColumn": 12, + "endOffset": 31667 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 311, + "startColumn": 4, + "startOffset": 36937, + "endLine": 314, + "endColumn": 12, + "endOffset": 37171 + } + } + }, + { + "to": { + "startLine": 272, + "startColumn": 4, + "startOffset": 31672, + "endLine": 275, + "endColumn": 12, + "endOffset": 31893 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 315, + "startColumn": 4, + "startOffset": 37176, + "endLine": 318, + "endColumn": 12, + "endOffset": 37397 + } + } + }, + { + "to": { + "startLine": 276, + "startColumn": 4, + "startOffset": 31898, + "endLine": 279, + "endColumn": 12, + "endOffset": 32138 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 319, + "startColumn": 4, + "startOffset": 37402, + "endLine": 322, + "endColumn": 12, + "endOffset": 37642 + } + } + }, + { + "to": { + "startLine": 280, + "startColumn": 4, + "startOffset": 32143, + "endLine": 281, + "endColumn": 12, + "endOffset": 32268 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 325, + "startColumn": 4, + "startOffset": 37884, + "endLine": 326, + "endColumn": 12, + "endOffset": 38009 + } + } + }, + { + "to": { + "startLine": 282, + "startColumn": 4, + "startOffset": 32273, + "endLine": 283, + "endColumn": 12, + "endOffset": 32398 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 327, + "startColumn": 4, + "startOffset": 38014, + "endLine": 328, + "endColumn": 12, + "endOffset": 38139 + } + } + }, + { + "to": { + "startLine": 284, + "startColumn": 4, + "startOffset": 32403, + "endLine": 287, + "endColumn": 12, + "endOffset": 32628 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 331, + "startColumn": 4, + "startOffset": 38386, + "endLine": 334, + "endColumn": 12, + "endOffset": 38611 + } + } + }, + { + "to": { + "startLine": 288, + "startColumn": 4, + "startOffset": 32633, + "endLine": 291, + "endColumn": 12, + "endOffset": 32876 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 335, + "startColumn": 4, + "startOffset": 38616, + "endLine": 338, + "endColumn": 12, + "endOffset": 38859 + } + } + }, + { + "to": { + "startLine": 292, + "startColumn": 4, + "startOffset": 32881, + "endLine": 295, + "endColumn": 12, + "endOffset": 33095 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 339, + "startColumn": 4, + "startOffset": 38864, + "endLine": 342, + "endColumn": 12, + "endOffset": 39078 + } + } + }, + { + "to": { + "startLine": 296, + "startColumn": 4, + "startOffset": 33100, + "endLine": 300, + "endColumn": 12, + "endOffset": 33378 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 345, + "startColumn": 4, + "startOffset": 39320, + "endLine": 349, + "endColumn": 12, + "endOffset": 39598 + } + } + }, + { + "to": { + "startLine": 301, + "startColumn": 4, + "startOffset": 33383, + "endLine": 304, + "endColumn": 12, + "endOffset": 33586 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 350, + "startColumn": 4, + "startOffset": 39603, + "endLine": 353, + "endColumn": 12, + "endOffset": 39806 + } + } + }, + { + "to": { + "startLine": 305, + "startColumn": 4, + "startOffset": 33591, + "endLine": 307, + "endColumn": 12, + "endOffset": 33717 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 354, + "startColumn": 4, + "startOffset": 39811, + "endLine": 356, + "endColumn": 12, + "endOffset": 39937 + } + } + }, + { + "to": { + "startLine": 308, + "startColumn": 4, + "startOffset": 33722, + "endLine": 311, + "endColumn": 12, + "endOffset": 33944 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 359, + "startColumn": 4, + "startOffset": 40184, + "endLine": 362, + "endColumn": 12, + "endOffset": 40406 + } + } + }, + { + "to": { + "startLine": 312, + "startColumn": 4, + "startOffset": 33949, + "endLine": 315, + "endColumn": 12, + "endOffset": 34190 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 363, + "startColumn": 4, + "startOffset": 40411, + "endLine": 366, + "endColumn": 12, + "endOffset": 40652 + } + } + }, + { + "to": { + "startLine": 316, + "startColumn": 4, + "startOffset": 34195, + "endLine": 319, + "endColumn": 12, + "endOffset": 34415 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 367, + "startColumn": 4, + "startOffset": 40657, + "endLine": 370, + "endColumn": 12, + "endOffset": 40877 + } + } + }, + { + "to": { + "startLine": 320, + "startColumn": 4, + "startOffset": 34420, + "endLine": 323, + "endColumn": 12, + "endOffset": 34664 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 371, + "startColumn": 4, + "startOffset": 40882, + "endLine": 374, + "endColumn": 12, + "endOffset": 41126 + } + } + }, + { + "to": { + "startLine": 324, + "startColumn": 4, + "startOffset": 34669, + "endLine": 327, + "endColumn": 12, + "endOffset": 34885 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 375, + "startColumn": 4, + "startOffset": 41131, + "endLine": 378, + "endColumn": 12, + "endOffset": 41347 + } + } + }, + { + "to": { + "startLine": 328, + "startColumn": 4, + "startOffset": 34890, + "endLine": 331, + "endColumn": 12, + "endOffset": 35130 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 379, + "startColumn": 4, + "startOffset": 41352, + "endLine": 382, + "endColumn": 12, + "endOffset": 41592 + } + } + }, + { + "to": { + "startLine": 332, + "startColumn": 4, + "startOffset": 35135, + "endLine": 336, + "endColumn": 12, + "endOffset": 35425 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 385, + "startColumn": 4, + "startOffset": 41834, + "endLine": 389, + "endColumn": 12, + "endOffset": 42124 + } + } + }, + { + "to": { + "startLine": 337, + "startColumn": 4, + "startOffset": 35430, + "endLine": 339, + "endColumn": 12, + "endOffset": 35647 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 390, + "startColumn": 4, + "startOffset": 42129, + "endLine": 392, + "endColumn": 12, + "endOffset": 42346 + } + } + }, + { + "to": { + "startLine": 340, + "startColumn": 4, + "startOffset": 35652, + "endLine": 342, + "endColumn": 12, + "endOffset": 35885 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 393, + "startColumn": 4, + "startOffset": 42351, + "endLine": 395, + "endColumn": 12, + "endOffset": 42584 + } + } + }, + { + "to": { + "startLine": 343, + "startColumn": 4, + "startOffset": 35890, + "endLine": 345, + "endColumn": 12, + "endOffset": 36099 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 396, + "startColumn": 4, + "startOffset": 42589, + "endLine": 398, + "endColumn": 12, + "endOffset": 42798 + } + } + }, + { + "to": { + "startLine": 346, + "startColumn": 4, + "startOffset": 36104, + "endLine": 348, + "endColumn": 12, + "endOffset": 36329 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 399, + "startColumn": 4, + "startOffset": 42803, + "endLine": 401, + "endColumn": 12, + "endOffset": 43028 + } + } + }, + { + "to": { + "startLine": 349, + "startColumn": 4, + "startOffset": 36334, + "endLine": 351, + "endColumn": 12, + "endOffset": 36552 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 402, + "startColumn": 4, + "startOffset": 43033, + "endLine": 404, + "endColumn": 12, + "endOffset": 43251 + } + } + }, + { + "to": { + "startLine": 352, + "startColumn": 4, + "startOffset": 36557, + "endLine": 354, + "endColumn": 12, + "endOffset": 36767 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 405, + "startColumn": 4, + "startOffset": 43256, + "endLine": 407, + "endColumn": 12, + "endOffset": 43466 + } + } + }, + { + "to": { + "startLine": 355, + "startColumn": 4, + "startOffset": 36772, + "endLine": 357, + "endColumn": 12, + "endOffset": 36975 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 408, + "startColumn": 4, + "startOffset": 43471, + "endLine": 410, + "endColumn": 12, + "endOffset": 43674 + } + } + }, + { + "to": { + "startLine": 358, + "startColumn": 4, + "startOffset": 36980, + "endLine": 359, + "endColumn": 12, + "endOffset": 37099 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 411, + "startColumn": 4, + "startOffset": 43679, + "endLine": 412, + "endColumn": 12, + "endOffset": 43798 + } + } + }, + { + "to": { + "startLine": 360, + "startColumn": 4, + "startOffset": 37104, + "endLine": 361, + "endColumn": 12, + "endOffset": 37223 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 413, + "startColumn": 4, + "startOffset": 43803, + "endLine": 414, + "endColumn": 12, + "endOffset": 43922 + } + } + }, + { + "to": { + "startLine": 362, + "startColumn": 4, + "startOffset": 37228, + "endColumn": 104, + "endOffset": 37328 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 415, + "startColumn": 4, + "startOffset": 43927, + "endColumn": 104, + "endOffset": 44027 + } + } + }, + { + "to": { + "startLine": 363, + "startColumn": 4, + "startOffset": 37333, + "endColumn": 116, + "endOffset": 37445 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 416, + "startColumn": 4, + "startOffset": 44032, + "endColumn": 116, + "endOffset": 44144 + } + } + }, + { + "to": { + "startLine": 364, + "startColumn": 4, + "startOffset": 37450, + "endLine": 366, + "endColumn": 12, + "endOffset": 37659 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 417, + "startColumn": 4, + "startOffset": 44149, + "endLine": 419, + "endColumn": 12, + "endOffset": 44358 + } + } + }, + { + "to": { + "startLine": 367, + "startColumn": 4, + "startOffset": 37664, + "endLine": 368, + "endColumn": 12, + "endOffset": 37805 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 420, + "startColumn": 4, + "startOffset": 44363, + "endLine": 421, + "endColumn": 12, + "endOffset": 44504 + } + } + }, + { + "to": { + "startLine": 369, + "startColumn": 4, + "startOffset": 37810, + "endLine": 370, + "endColumn": 12, + "endOffset": 37945 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 422, + "startColumn": 4, + "startOffset": 44509, + "endLine": 423, + "endColumn": 12, + "endOffset": 44644 + } + } + }, + { + "to": { + "startLine": 371, + "startColumn": 4, + "startOffset": 37950, + "endLine": 372, + "endColumn": 12, + "endOffset": 38031 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 426, + "startColumn": 4, + "startOffset": 44886, + "endLine": 427, + "endColumn": 12, + "endOffset": 44967 + } + } + }, + { + "to": { + "startLine": 373, + "startColumn": 4, + "startOffset": 38036, + "endLine": 377, + "endColumn": 12, + "endOffset": 38379 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 428, + "startColumn": 4, + "startOffset": 44972, + "endLine": 432, + "endColumn": 12, + "endOffset": 45315 + } + } + }, + { + "to": { + "startLine": 378, + "startColumn": 4, + "startOffset": 38384, + "endColumn": 87, + "endOffset": 38467 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 433, + "startColumn": 4, + "startOffset": 45320, + "endColumn": 87, + "endOffset": 45403 + } + } + }, + { + "to": { + "startLine": 379, + "startColumn": 4, + "startOffset": 38472, + "endLine": 382, + "endColumn": 12, + "endOffset": 38697 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 434, + "startColumn": 4, + "startOffset": 45408, + "endLine": 437, + "endColumn": 12, + "endOffset": 45633 + } + } + }, + { + "to": { + "startLine": 383, + "startColumn": 4, + "startOffset": 38702, + "endLine": 388, + "endColumn": 12, + "endOffset": 39099 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 438, + "startColumn": 4, + "startOffset": 45638, + "endLine": 443, + "endColumn": 12, + "endOffset": 46035 + } + } + }, + { + "to": { + "startLine": 389, + "startColumn": 4, + "startOffset": 39104, + "endLine": 392, + "endColumn": 12, + "endOffset": 39332 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 444, + "startColumn": 4, + "startOffset": 46040, + "endLine": 447, + "endColumn": 12, + "endOffset": 46268 + } + } + }, + { + "to": { + "startLine": 393, + "startColumn": 4, + "startOffset": 39337, + "endColumn": 81, + "endOffset": 39414 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 448, + "startColumn": 4, + "startOffset": 46273, + "endColumn": 81, + "endOffset": 46350 + } + } + }, + { + "to": { + "startLine": 394, + "startColumn": 4, + "startOffset": 39419, + "endLine": 395, + "endColumn": 12, + "endOffset": 39512 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 449, + "startColumn": 4, + "startOffset": 46355, + "endLine": 450, + "endColumn": 12, + "endOffset": 46448 + } + } + }, + { + "to": { + "startLine": 396, + "startColumn": 4, + "startOffset": 39517, + "endLine": 406, + "endColumn": 12, + "endOffset": 40129 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 451, + "startColumn": 4, + "startOffset": 46453, + "endLine": 461, + "endColumn": 12, + "endOffset": 47065 + } + } + }, + { + "to": { + "startLine": 407, + "startColumn": 4, + "startOffset": 40134, + "endColumn": 99, + "endOffset": 40229 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 462, + "startColumn": 4, + "startOffset": 47070, + "endColumn": 99, + "endOffset": 47165 + } + } + }, + { + "to": { + "startLine": 408, + "startColumn": 4, + "startOffset": 40234, + "endLine": 411, + "endColumn": 12, + "endOffset": 40465 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 463, + "startColumn": 4, + "startOffset": 47170, + "endLine": 466, + "endColumn": 12, + "endOffset": 47401 + } + } + }, + { + "to": { + "startLine": 412, + "startColumn": 4, + "startOffset": 40470, + "endLine": 417, + "endColumn": 12, + "endOffset": 40873 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 467, + "startColumn": 4, + "startOffset": 47406, + "endLine": 472, + "endColumn": 12, + "endOffset": 47809 + } + } + }, + { + "to": { + "startLine": 418, + "startColumn": 4, + "startOffset": 40878, + "endLine": 421, + "endColumn": 12, + "endOffset": 41112 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 473, + "startColumn": 4, + "startOffset": 47814, + "endLine": 476, + "endColumn": 12, + "endOffset": 48048 + } + } + }, + { + "to": { + "startLine": 422, + "startColumn": 4, + "startOffset": 41117, + "endColumn": 93, + "endOffset": 41206 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 477, + "startColumn": 4, + "startOffset": 48053, + "endColumn": 93, + "endOffset": 48142 + } + } + }, + { + "to": { + "startLine": 423, + "startColumn": 4, + "startOffset": 41211, + "endColumn": 57, + "endOffset": 41264 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 478, + "startColumn": 4, + "startOffset": 48147, + "endColumn": 57, + "endOffset": 48200 + } + } + }, + { + "to": { + "startLine": 424, + "startColumn": 4, + "startOffset": 41269, + "endLine": 427, + "endColumn": 12, + "endOffset": 41501 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 479, + "startColumn": 4, + "startOffset": 48205, + "endLine": 482, + "endColumn": 12, + "endOffset": 48437 + } + } + }, + { + "to": { + "startLine": 428, + "startColumn": 4, + "startOffset": 41506, + "endLine": 454, + "endColumn": 12, + "endOffset": 43501 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 483, + "startColumn": 4, + "startOffset": 48442, + "endLine": 509, + "endColumn": 12, + "endOffset": 50437 + } + } + }, + { + "to": { + "startLine": 455, + "startColumn": 4, + "startOffset": 43506, + "endLine": 458, + "endColumn": 12, + "endOffset": 43743 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 510, + "startColumn": 4, + "startOffset": 50442, + "endLine": 513, + "endColumn": 12, + "endOffset": 50679 + } + } + }, + { + "to": { + "startLine": 459, + "startColumn": 4, + "startOffset": 43748, + "endLine": 486, + "endColumn": 12, + "endOffset": 45921 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 514, + "startColumn": 4, + "startOffset": 50684, + "endLine": 541, + "endColumn": 12, + "endOffset": 52857 + } + } + }, + { + "to": { + "startLine": 487, + "startColumn": 4, + "startOffset": 45926, + "endLine": 631, + "endColumn": 12, + "endOffset": 55108 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 542, + "startColumn": 4, + "startOffset": 52862, + "endLine": 686, + "endColumn": 12, + "endOffset": 62044 + } + } + }, + { + "to": { + "startLine": 632, + "startColumn": 4, + "startOffset": 55113, + "endLine": 652, + "endColumn": 12, + "endOffset": 56307 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 687, + "startColumn": 4, + "startOffset": 62049, + "endLine": 707, + "endColumn": 12, + "endOffset": 63243 + } + } + }, + { + "to": { + "startLine": 653, + "startColumn": 4, + "startOffset": 56312, + "endLine": 797, + "endColumn": 12, + "endOffset": 65604 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 708, + "startColumn": 4, + "startOffset": 63248, + "endLine": 852, + "endColumn": 12, + "endOffset": 72540 + } + } + }, + { + "to": { + "startLine": 798, + "startColumn": 4, + "startOffset": 65609, + "endLine": 818, + "endColumn": 12, + "endOffset": 66817 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 853, + "startColumn": 4, + "startOffset": 72545, + "endLine": 873, + "endColumn": 12, + "endOffset": 73753 + } + } + }, + { + "to": { + "startLine": 819, + "startColumn": 4, + "startOffset": 66822, + "endLine": 839, + "endColumn": 12, + "endOffset": 67940 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 876, + "startColumn": 4, + "startOffset": 73995, + "endLine": 896, + "endColumn": 12, + "endOffset": 75113 + } + } + }, + { + "to": { + "startLine": 840, + "startColumn": 4, + "startOffset": 67945, + "endLine": 844, + "endColumn": 12, + "endOffset": 68196 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 897, + "startColumn": 4, + "startOffset": 75118, + "endLine": 901, + "endColumn": 12, + "endOffset": 75369 + } + } + }, + { + "to": { + "startLine": 845, + "startColumn": 4, + "startOffset": 68201, + "endLine": 849, + "endColumn": 12, + "endOffset": 68432 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 902, + "startColumn": 4, + "startOffset": 75374, + "endLine": 906, + "endColumn": 12, + "endOffset": 75605 + } + } + }, + { + "to": { + "startLine": 850, + "startColumn": 4, + "startOffset": 68437, + "endLine": 859, + "endColumn": 12, + "endOffset": 68979 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 907, + "startColumn": 4, + "startOffset": 75610, + "endLine": 916, + "endColumn": 12, + "endOffset": 76152 + } + } + }, + { + "to": { + "startLine": 860, + "startColumn": 4, + "startOffset": 68984, + "endLine": 868, + "endColumn": 12, + "endOffset": 69473 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 917, + "startColumn": 4, + "startOffset": 76157, + "endLine": 925, + "endColumn": 12, + "endOffset": 76646 + } + } + }, + { + "to": { + "startLine": 869, + "startColumn": 4, + "startOffset": 69478, + "endLine": 879, + "endColumn": 12, + "endOffset": 70146 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 926, + "startColumn": 4, + "startOffset": 76651, + "endLine": 936, + "endColumn": 12, + "endOffset": 77319 + } + } + }, + { + "to": { + "startLine": 880, + "startColumn": 4, + "startOffset": 70151, + "endLine": 883, + "endColumn": 12, + "endOffset": 70361 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 937, + "startColumn": 4, + "startOffset": 77324, + "endLine": 940, + "endColumn": 12, + "endOffset": 77534 + } + } + }, + { + "to": { + "startLine": 884, + "startColumn": 4, + "startOffset": 70366, + "endLine": 890, + "endColumn": 12, + "endOffset": 70889 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 941, + "startColumn": 4, + "startOffset": 77539, + "endLine": 947, + "endColumn": 12, + "endOffset": 78062 + } + } + }, + { + "to": { + "startLine": 891, + "startColumn": 4, + "startOffset": 70894, + "endLine": 898, + "endColumn": 12, + "endOffset": 71453 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 948, + "startColumn": 4, + "startOffset": 78067, + "endLine": 955, + "endColumn": 12, + "endOffset": 78626 + } + } + }, + { + "to": { + "startLine": 899, + "startColumn": 4, + "startOffset": 71458, + "endLine": 905, + "endColumn": 12, + "endOffset": 71828 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 956, + "startColumn": 4, + "startOffset": 78631, + "endLine": 962, + "endColumn": 12, + "endOffset": 79001 + } + } + }, + { + "to": { + "startLine": 906, + "startColumn": 4, + "startOffset": 71833, + "endLine": 912, + "endColumn": 12, + "endOffset": 72361 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 963, + "startColumn": 4, + "startOffset": 79006, + "endLine": 969, + "endColumn": 12, + "endOffset": 79534 + } + } + }, + { + "to": { + "startLine": 913, + "startColumn": 4, + "startOffset": 72366, + "endLine": 921, + "endColumn": 12, + "endOffset": 72899 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 970, + "startColumn": 4, + "startOffset": 79539, + "endLine": 978, + "endColumn": 12, + "endOffset": 80072 + } + } + }, + { + "to": { + "startLine": 922, + "startColumn": 4, + "startOffset": 72904, + "endLine": 924, + "endColumn": 12, + "endOffset": 73056 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 979, + "startColumn": 4, + "startOffset": 80077, + "endLine": 981, + "endColumn": 12, + "endOffset": 80229 + } + } + }, + { + "to": { + "startLine": 925, + "startColumn": 4, + "startOffset": 73061, + "endLine": 927, + "endColumn": 12, + "endOffset": 73200 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 982, + "startColumn": 4, + "startOffset": 80234, + "endLine": 984, + "endColumn": 12, + "endOffset": 80373 + } + } + }, + { + "to": { + "startLine": 928, + "startColumn": 4, + "startOffset": 73205, + "endLine": 932, + "endColumn": 12, + "endOffset": 73520 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 985, + "startColumn": 4, + "startOffset": 80378, + "endLine": 989, + "endColumn": 12, + "endOffset": 80693 + } + } + }, + { + "to": { + "startLine": 933, + "startColumn": 4, + "startOffset": 73525, + "endLine": 936, + "endColumn": 12, + "endOffset": 73690 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 990, + "startColumn": 4, + "startOffset": 80698, + "endLine": 993, + "endColumn": 12, + "endOffset": 80863 + } + } + }, + { + "to": { + "startLine": 937, + "startColumn": 4, + "startOffset": 73695, + "endLine": 939, + "endColumn": 12, + "endOffset": 73831 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 994, + "startColumn": 4, + "startOffset": 80868, + "endLine": 996, + "endColumn": 12, + "endOffset": 81004 + } + } + }, + { + "to": { + "startLine": 940, + "startColumn": 4, + "startOffset": 73836, + "endLine": 942, + "endColumn": 12, + "endOffset": 73960 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 997, + "startColumn": 4, + "startOffset": 81009, + "endLine": 999, + "endColumn": 12, + "endOffset": 81133 + } + } + }, + { + "to": { + "startLine": 943, + "startColumn": 4, + "startOffset": 73965, + "endLine": 946, + "endColumn": 12, + "endOffset": 74259 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1000, + "startColumn": 4, + "startOffset": 81138, + "endLine": 1003, + "endColumn": 12, + "endOffset": 81432 + } + } + }, + { + "to": { + "startLine": 947, + "startColumn": 4, + "startOffset": 74264, + "endLine": 950, + "endColumn": 12, + "endOffset": 74562 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1004, + "startColumn": 4, + "startOffset": 81437, + "endLine": 1007, + "endColumn": 12, + "endOffset": 81735 + } + } + }, + { + "to": { + "startLine": 951, + "startColumn": 4, + "startOffset": 74567, + "endLine": 958, + "endColumn": 12, + "endOffset": 75123 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1008, + "startColumn": 4, + "startOffset": 81740, + "endLine": 1015, + "endColumn": 12, + "endOffset": 82296 + } + } + }, + { + "to": { + "startLine": 959, + "startColumn": 4, + "startOffset": 75128, + "endLine": 963, + "endColumn": 12, + "endOffset": 75385 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1016, + "startColumn": 4, + "startOffset": 82301, + "endLine": 1020, + "endColumn": 12, + "endOffset": 82558 + } + } + }, + { + "to": { + "startLine": 964, + "startColumn": 4, + "startOffset": 75390, + "endLine": 970, + "endColumn": 12, + "endOffset": 75735 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1021, + "startColumn": 4, + "startOffset": 82563, + "endLine": 1027, + "endColumn": 12, + "endOffset": 82908 + } + } + }, + { + "to": { + "startLine": 971, + "startColumn": 4, + "startOffset": 75740, + "endLine": 976, + "endColumn": 12, + "endOffset": 76088 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1028, + "startColumn": 4, + "startOffset": 82913, + "endLine": 1033, + "endColumn": 12, + "endOffset": 83261 + } + } + }, + { + "to": { + "startLine": 977, + "startColumn": 4, + "startOffset": 76093, + "endLine": 981, + "endColumn": 12, + "endOffset": 76415 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1034, + "startColumn": 4, + "startOffset": 83266, + "endLine": 1038, + "endColumn": 12, + "endOffset": 83588 + } + } + }, + { + "to": { + "startLine": 982, + "startColumn": 4, + "startOffset": 76420, + "endLine": 985, + "endColumn": 12, + "endOffset": 76721 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1039, + "startColumn": 4, + "startOffset": 83593, + "endLine": 1042, + "endColumn": 12, + "endOffset": 83894 + } + } + }, + { + "to": { + "startLine": 986, + "startColumn": 4, + "startOffset": 76726, + "endLine": 990, + "endColumn": 12, + "endOffset": 76983 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1043, + "startColumn": 4, + "startOffset": 83899, + "endLine": 1047, + "endColumn": 12, + "endOffset": 84156 + } + } + }, + { + "to": { + "startLine": 991, + "startColumn": 4, + "startOffset": 76988, + "endLine": 992, + "endColumn": 12, + "endOffset": 77108 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1048, + "startColumn": 4, + "startOffset": 84161, + "endLine": 1049, + "endColumn": 12, + "endOffset": 84281 + } + } + }, + { + "to": { + "startLine": 993, + "startColumn": 4, + "startOffset": 77113, + "endLine": 994, + "endColumn": 12, + "endOffset": 77235 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1050, + "startColumn": 4, + "startOffset": 84286, + "endLine": 1051, + "endColumn": 12, + "endOffset": 84408 + } + } + }, + { + "to": { + "startLine": 995, + "startColumn": 4, + "startOffset": 77240, + "endLine": 997, + "endColumn": 12, + "endOffset": 77474 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1052, + "startColumn": 4, + "startOffset": 84413, + "endLine": 1054, + "endColumn": 12, + "endOffset": 84647 + } + } + }, + { + "to": { + "startLine": 998, + "startColumn": 4, + "startOffset": 77479, + "endLine": 1000, + "endColumn": 12, + "endOffset": 77685 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1055, + "startColumn": 4, + "startOffset": 84652, + "endLine": 1057, + "endColumn": 12, + "endOffset": 84858 + } + } + }, + { + "to": { + "startLine": 1001, + "startColumn": 4, + "startOffset": 77690, + "endLine": 1002, + "endColumn": 12, + "endOffset": 77804 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1058, + "startColumn": 4, + "startOffset": 84863, + "endLine": 1059, + "endColumn": 12, + "endOffset": 84977 + } + } + }, + { + "to": { + "startLine": 1003, + "startColumn": 4, + "startOffset": 77809, + "endLine": 1006, + "endColumn": 12, + "endOffset": 77997 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1060, + "startColumn": 4, + "startOffset": 84982, + "endLine": 1063, + "endColumn": 12, + "endOffset": 85170 + } + } + }, + { + "to": { + "startLine": 1007, + "startColumn": 4, + "startOffset": 78002, + "endLine": 1013, + "endColumn": 12, + "endOffset": 78452 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1064, + "startColumn": 4, + "startOffset": 85175, + "endLine": 1070, + "endColumn": 12, + "endOffset": 85625 + } + } + }, + { + "to": { + "startLine": 1014, + "startColumn": 4, + "startOffset": 78457, + "endLine": 1017, + "endColumn": 12, + "endOffset": 78701 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1071, + "startColumn": 4, + "startOffset": 85630, + "endLine": 1074, + "endColumn": 12, + "endOffset": 85874 + } + } + }, + { + "to": { + "startLine": 1018, + "startColumn": 4, + "startOffset": 78706, + "endLine": 1020, + "endColumn": 12, + "endOffset": 78823 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1075, + "startColumn": 4, + "startOffset": 85879, + "endLine": 1077, + "endColumn": 12, + "endOffset": 85996 + } + } + }, + { + "to": { + "startLine": 1021, + "startColumn": 4, + "startOffset": 78828, + "endLine": 1024, + "endColumn": 12, + "endOffset": 79082 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1078, + "startColumn": 4, + "startOffset": 86001, + "endLine": 1081, + "endColumn": 12, + "endOffset": 86255 + } + } + }, + { + "to": { + "startLine": 1025, + "startColumn": 4, + "startOffset": 79087, + "endLine": 1026, + "endColumn": 12, + "endOffset": 79195 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1082, + "startColumn": 4, + "startOffset": 86260, + "endLine": 1083, + "endColumn": 12, + "endOffset": 86368 + } + } + }, + { + "to": { + "startLine": 1027, + "startColumn": 4, + "startOffset": 79200, + "endLine": 1030, + "endColumn": 12, + "endOffset": 79382 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1084, + "startColumn": 4, + "startOffset": 86373, + "endLine": 1087, + "endColumn": 12, + "endOffset": 86555 + } + } + }, + { + "to": { + "startLine": 1031, + "startColumn": 4, + "startOffset": 79387, + "endLine": 1032, + "endColumn": 12, + "endOffset": 79484 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1088, + "startColumn": 4, + "startOffset": 86560, + "endLine": 1089, + "endColumn": 12, + "endOffset": 86657 + } + } + }, + { + "to": { + "startLine": 1033, + "startColumn": 4, + "startOffset": 79489, + "endLine": 1038, + "endColumn": 12, + "endOffset": 79928 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1090, + "startColumn": 4, + "startOffset": 86662, + "endLine": 1095, + "endColumn": 12, + "endOffset": 87101 + } + } + }, + { + "to": { + "startLine": 1039, + "startColumn": 4, + "startOffset": 79933, + "endLine": 1040, + "endColumn": 12, + "endOffset": 80052 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1096, + "startColumn": 4, + "startOffset": 87106, + "endLine": 1097, + "endColumn": 12, + "endOffset": 87225 + } + } + }, + { + "to": { + "startLine": 1041, + "startColumn": 4, + "startOffset": 80057, + "endLine": 1044, + "endColumn": 12, + "endOffset": 80337 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1098, + "startColumn": 4, + "startOffset": 87230, + "endLine": 1101, + "endColumn": 12, + "endOffset": 87510 + } + } + }, + { + "to": { + "startLine": 1045, + "startColumn": 4, + "startOffset": 80342, + "endLine": 1056, + "endColumn": 12, + "endOffset": 81224 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1102, + "startColumn": 4, + "startOffset": 87515, + "endLine": 1113, + "endColumn": 12, + "endOffset": 88397 + } + } + }, + { + "to": { + "startLine": 1057, + "startColumn": 4, + "startOffset": 81229, + "endLine": 1062, + "endColumn": 12, + "endOffset": 81511 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1114, + "startColumn": 4, + "startOffset": 88402, + "endLine": 1119, + "endColumn": 12, + "endOffset": 88684 + } + } + }, + { + "to": { + "startLine": 1063, + "startColumn": 4, + "startOffset": 81516, + "endLine": 1067, + "endColumn": 12, + "endOffset": 81841 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1120, + "startColumn": 4, + "startOffset": 88689, + "endLine": 1124, + "endColumn": 12, + "endOffset": 89014 + } + } + }, + { + "to": { + "startLine": 1068, + "startColumn": 4, + "startOffset": 81846, + "endLine": 1082, + "endColumn": 12, + "endOffset": 82761 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1125, + "startColumn": 4, + "startOffset": 89019, + "endLine": 1139, + "endColumn": 12, + "endOffset": 89934 + } + } + }, + { + "to": { + "startLine": 1083, + "startColumn": 4, + "startOffset": 82766, + "endLine": 1085, + "endColumn": 12, + "endOffset": 82933 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1140, + "startColumn": 4, + "startOffset": 89939, + "endLine": 1142, + "endColumn": 12, + "endOffset": 90106 + } + } + }, + { + "to": { + "startLine": 1086, + "startColumn": 4, + "startOffset": 82938, + "endLine": 1090, + "endColumn": 12, + "endOffset": 83269 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1143, + "startColumn": 4, + "startOffset": 90111, + "endLine": 1147, + "endColumn": 12, + "endOffset": 90442 + } + } + }, + { + "to": { + "startLine": 1091, + "startColumn": 4, + "startOffset": 83274, + "endLine": 1100, + "endColumn": 12, + "endOffset": 83935 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1148, + "startColumn": 4, + "startOffset": 90447, + "endLine": 1157, + "endColumn": 12, + "endOffset": 91108 + } + } + }, + { + "to": { + "startLine": 1101, + "startColumn": 4, + "startOffset": 83940, + "endLine": 1105, + "endColumn": 12, + "endOffset": 84220 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1158, + "startColumn": 4, + "startOffset": 91113, + "endLine": 1162, + "endColumn": 12, + "endOffset": 91393 + } + } + }, + { + "to": { + "startLine": 1106, + "startColumn": 4, + "startOffset": 84225, + "endLine": 1143, + "endColumn": 12, + "endOffset": 87109 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1165, + "startColumn": 4, + "startOffset": 91635, + "endLine": 1202, + "endColumn": 12, + "endOffset": 94519 + } + } + }, + { + "to": { + "startLine": 1144, + "startColumn": 4, + "startOffset": 87114, + "endLine": 1182, + "endColumn": 12, + "endOffset": 90139 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1203, + "startColumn": 4, + "startOffset": 94524, + "endLine": 1241, + "endColumn": 12, + "endOffset": 97549 + } + } + }, + { + "to": { + "startLine": 1183, + "startColumn": 4, + "startOffset": 90144, + "endLine": 1192, + "endColumn": 12, + "endOffset": 90779 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1242, + "startColumn": 4, + "startOffset": 97554, + "endLine": 1251, + "endColumn": 12, + "endOffset": 98189 + } + } + }, + { + "to": { + "startLine": 1193, + "startColumn": 4, + "startOffset": 90784, + "endLine": 1201, + "endColumn": 12, + "endOffset": 91403 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1252, + "startColumn": 4, + "startOffset": 98194, + "endLine": 1260, + "endColumn": 12, + "endOffset": 98813 + } + } + }, + { + "to": { + "startLine": 1202, + "startColumn": 4, + "startOffset": 91408, + "endLine": 1205, + "endColumn": 12, + "endOffset": 91632 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1263, + "startColumn": 4, + "startOffset": 99054, + "endLine": 1266, + "endColumn": 12, + "endOffset": 99278 + } + } + }, + { + "to": { + "startLine": 1206, + "startColumn": 4, + "startOffset": 91637, + "endLine": 1209, + "endColumn": 12, + "endOffset": 91970 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1267, + "startColumn": 4, + "startOffset": 99283, + "endLine": 1270, + "endColumn": 12, + "endOffset": 99616 + } + } + }, + { + "to": { + "startLine": 1210, + "startColumn": 4, + "startOffset": 91975, + "endLine": 1212, + "endColumn": 12, + "endOffset": 92122 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1271, + "startColumn": 4, + "startOffset": 99621, + "endLine": 1273, + "endColumn": 12, + "endOffset": 99768 + } + } + }, + { + "to": { + "startLine": 1213, + "startColumn": 4, + "startOffset": 92127, + "endLine": 1215, + "endColumn": 12, + "endOffset": 92293 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1274, + "startColumn": 4, + "startOffset": 99773, + "endLine": 1276, + "endColumn": 12, + "endOffset": 99939 + } + } + }, + { + "to": { + "startLine": 1216, + "startColumn": 4, + "startOffset": 92298, + "endLine": 1218, + "endColumn": 12, + "endOffset": 92460 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1277, + "startColumn": 4, + "startOffset": 99944, + "endLine": 1279, + "endColumn": 12, + "endOffset": 100106 + } + } + }, + { + "to": { + "startLine": 1219, + "startColumn": 4, + "startOffset": 92465, + "endLine": 1222, + "endColumn": 12, + "endOffset": 92703 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1280, + "startColumn": 4, + "startOffset": 100111, + "endLine": 1283, + "endColumn": 12, + "endOffset": 100349 + } + } + }, + { + "to": { + "startLine": 1223, + "startColumn": 4, + "startOffset": 92708, + "endLine": 1225, + "endColumn": 12, + "endOffset": 92873 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1284, + "startColumn": 4, + "startOffset": 100354, + "endLine": 1286, + "endColumn": 12, + "endOffset": 100519 + } + } + }, + { + "to": { + "startLine": 1226, + "startColumn": 4, + "startOffset": 92878, + "endLine": 1228, + "endColumn": 12, + "endOffset": 93046 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1287, + "startColumn": 4, + "startOffset": 100524, + "endLine": 1289, + "endColumn": 12, + "endOffset": 100692 + } + } + }, + { + "to": { + "startLine": 1229, + "startColumn": 4, + "startOffset": 93051, + "endLine": 1231, + "endColumn": 12, + "endOffset": 93217 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1290, + "startColumn": 4, + "startOffset": 100697, + "endLine": 1292, + "endColumn": 12, + "endOffset": 100863 + } + } + }, + { + "to": { + "startLine": 1232, + "startColumn": 4, + "startOffset": 93222, + "endLine": 1235, + "endColumn": 12, + "endOffset": 93491 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1293, + "startColumn": 4, + "startOffset": 100868, + "endLine": 1296, + "endColumn": 12, + "endOffset": 101137 + } + } + }, + { + "to": { + "startLine": 1236, + "startColumn": 4, + "startOffset": 93496, + "endLine": 1238, + "endColumn": 12, + "endOffset": 93690 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1297, + "startColumn": 4, + "startOffset": 101142, + "endLine": 1299, + "endColumn": 12, + "endOffset": 101336 + } + } + }, + { + "to": { + "startLine": 1239, + "startColumn": 4, + "startOffset": 93695, + "endLine": 1241, + "endColumn": 12, + "endOffset": 93937 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1300, + "startColumn": 4, + "startOffset": 101341, + "endLine": 1302, + "endColumn": 12, + "endOffset": 101583 + } + } + }, + { + "to": { + "startLine": 1242, + "startColumn": 4, + "startOffset": 93942, + "endColumn": 83, + "endOffset": 94021 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1305, + "startColumn": 4, + "startOffset": 101820, + "endColumn": 83, + "endOffset": 101899 + } + } + }, + { + "to": { + "startLine": 1243, + "startColumn": 4, + "startOffset": 94026, + "endColumn": 95, + "endOffset": 94117 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1306, + "startColumn": 4, + "startOffset": 101904, + "endColumn": 95, + "endOffset": 101995 + } + } + }, + { + "to": { + "startLine": 1244, + "startColumn": 4, + "startOffset": 94122, + "endColumn": 95, + "endOffset": 94213 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1307, + "startColumn": 4, + "startOffset": 102000, + "endColumn": 95, + "endOffset": 102091 + } + } + }, + { + "to": { + "startLine": 1245, + "startColumn": 4, + "startOffset": 94218, + "endColumn": 97, + "endOffset": 94311 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1308, + "startColumn": 4, + "startOffset": 102096, + "endColumn": 97, + "endOffset": 102189 + } + } + }, + { + "to": { + "startLine": 1246, + "startColumn": 4, + "startOffset": 94316, + "endColumn": 99, + "endOffset": 94411 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1309, + "startColumn": 4, + "startOffset": 102194, + "endColumn": 99, + "endOffset": 102289 + } + } + }, + { + "to": { + "startLine": 1247, + "startColumn": 4, + "startOffset": 94416, + "endColumn": 101, + "endOffset": 94513 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1310, + "startColumn": 4, + "startOffset": 102294, + "endColumn": 101, + "endOffset": 102391 + } + } + }, + { + "to": { + "startLine": 1248, + "startColumn": 4, + "startOffset": 94518, + "endColumn": 101, + "endOffset": 94615 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1311, + "startColumn": 4, + "startOffset": 102396, + "endColumn": 101, + "endOffset": 102493 + } + } + }, + { + "to": { + "startLine": 1249, + "startColumn": 4, + "startOffset": 94620, + "endColumn": 101, + "endOffset": 94717 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1312, + "startColumn": 4, + "startOffset": 102498, + "endColumn": 101, + "endOffset": 102595 + } + } + }, + { + "to": { + "startLine": 1250, + "startColumn": 4, + "startOffset": 94722, + "endColumn": 101, + "endOffset": 94819 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1313, + "startColumn": 4, + "startOffset": 102600, + "endColumn": 101, + "endOffset": 102697 + } + } + }, + { + "to": { + "startLine": 1251, + "startColumn": 4, + "startOffset": 94824, + "endColumn": 101, + "endOffset": 94921 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1314, + "startColumn": 4, + "startOffset": 102702, + "endColumn": 101, + "endOffset": 102799 + } + } + }, + { + "to": { + "startLine": 1252, + "startColumn": 4, + "startOffset": 94926, + "endColumn": 99, + "endOffset": 95021 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1315, + "startColumn": 4, + "startOffset": 102804, + "endColumn": 99, + "endOffset": 102899 + } + } + }, + { + "to": { + "startLine": 1253, + "startColumn": 4, + "startOffset": 95026, + "endColumn": 95, + "endOffset": 95117 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1316, + "startColumn": 4, + "startOffset": 102904, + "endColumn": 95, + "endOffset": 102995 + } + } + }, + { + "to": { + "startLine": 1254, + "startColumn": 4, + "startOffset": 95122, + "endColumn": 111, + "endOffset": 95229 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1317, + "startColumn": 4, + "startOffset": 103000, + "endColumn": 111, + "endOffset": 103107 + } + } + }, + { + "to": { + "startLine": 1255, + "startColumn": 4, + "startOffset": 95234, + "endColumn": 128, + "endOffset": 95358 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1318, + "startColumn": 4, + "startOffset": 103112, + "endColumn": 128, + "endOffset": 103236 + } + } + }, + { + "to": { + "startLine": 1256, + "startColumn": 4, + "startOffset": 95363, + "endColumn": 122, + "endOffset": 95481 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1319, + "startColumn": 4, + "startOffset": 103241, + "endColumn": 122, + "endOffset": 103359 + } + } + }, + { + "to": { + "startLine": 1257, + "startColumn": 4, + "startOffset": 95486, + "endLine": 1258, + "endColumn": 12, + "endOffset": 95635 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1320, + "startColumn": 4, + "startOffset": 103364, + "endLine": 1321, + "endColumn": 12, + "endOffset": 103513 + } + } + }, + { + "to": { + "startLine": 1259, + "startColumn": 4, + "startOffset": 95640, + "endLine": 1260, + "endColumn": 12, + "endOffset": 95789 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1322, + "startColumn": 4, + "startOffset": 103518, + "endLine": 1323, + "endColumn": 12, + "endOffset": 103667 + } + } + }, + { + "to": { + "startLine": 1261, + "startColumn": 4, + "startOffset": 95794, + "endColumn": 97, + "endOffset": 95887 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1324, + "startColumn": 4, + "startOffset": 103672, + "endColumn": 97, + "endOffset": 103765 + } + } + }, + { + "to": { + "startLine": 1262, + "startColumn": 4, + "startOffset": 95892, + "endColumn": 113, + "endOffset": 96001 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1325, + "startColumn": 4, + "startOffset": 103770, + "endColumn": 113, + "endOffset": 103879 + } + } + }, + { + "to": { + "startLine": 1263, + "startColumn": 4, + "startOffset": 96006, + "endColumn": 93, + "endOffset": 96095 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1326, + "startColumn": 4, + "startOffset": 103884, + "endColumn": 93, + "endOffset": 103973 + } + } + }, + { + "to": { + "startLine": 1264, + "startColumn": 4, + "startOffset": 96100, + "endLine": 1265, + "endColumn": 12, + "endOffset": 96235 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1327, + "startColumn": 4, + "startOffset": 103978, + "endLine": 1328, + "endColumn": 12, + "endOffset": 104113 + } + } + }, + { + "to": { + "startLine": 1266, + "startColumn": 4, + "startOffset": 96240, + "endLine": 1267, + "endColumn": 12, + "endOffset": 96369 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1329, + "startColumn": 4, + "startOffset": 104118, + "endLine": 1330, + "endColumn": 12, + "endOffset": 104247 + } + } + }, + { + "to": { + "startLine": 1268, + "startColumn": 4, + "startOffset": 96374, + "endColumn": 95, + "endOffset": 96465 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1331, + "startColumn": 4, + "startOffset": 104252, + "endColumn": 95, + "endOffset": 104343 + } + } + }, + { + "to": { + "startLine": 1269, + "startColumn": 4, + "startOffset": 96470, + "endColumn": 111, + "endOffset": 96577 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1332, + "startColumn": 4, + "startOffset": 104348, + "endColumn": 111, + "endOffset": 104455 + } + } + }, + { + "to": { + "startLine": 1270, + "startColumn": 4, + "startOffset": 96582, + "endColumn": 99, + "endOffset": 96677 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1333, + "startColumn": 4, + "startOffset": 104460, + "endColumn": 99, + "endOffset": 104555 + } + } + }, + { + "to": { + "startLine": 1271, + "startColumn": 4, + "startOffset": 96682, + "endColumn": 115, + "endOffset": 96793 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1334, + "startColumn": 4, + "startOffset": 104560, + "endColumn": 115, + "endOffset": 104671 + } + } + }, + { + "to": { + "startLine": 1272, + "startColumn": 4, + "startOffset": 96798, + "endColumn": 95, + "endOffset": 96889 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1335, + "startColumn": 4, + "startOffset": 104676, + "endColumn": 95, + "endOffset": 104767 + } + } + }, + { + "to": { + "startLine": 1273, + "startColumn": 4, + "startOffset": 96894, + "endColumn": 111, + "endOffset": 97001 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1336, + "startColumn": 4, + "startOffset": 104772, + "endColumn": 111, + "endOffset": 104879 + } + } + }, + { + "to": { + "startLine": 1274, + "startColumn": 4, + "startOffset": 97006, + "endLine": 1275, + "endColumn": 12, + "endOffset": 97141 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1337, + "startColumn": 4, + "startOffset": 104884, + "endLine": 1338, + "endColumn": 12, + "endOffset": 105019 + } + } + }, + { + "to": { + "startLine": 1276, + "startColumn": 4, + "startOffset": 97146, + "endLine": 1277, + "endColumn": 12, + "endOffset": 97289 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1339, + "startColumn": 4, + "startOffset": 105024, + "endLine": 1340, + "endColumn": 12, + "endOffset": 105167 + } + } + }, + { + "to": { + "startLine": 1278, + "startColumn": 4, + "startOffset": 97294, + "endLine": 1279, + "endColumn": 12, + "endOffset": 97453 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1341, + "startColumn": 4, + "startOffset": 105172, + "endLine": 1342, + "endColumn": 12, + "endOffset": 105331 + } + } + }, + { + "to": { + "startLine": 1280, + "startColumn": 4, + "startOffset": 97458, + "endLine": 1281, + "endColumn": 12, + "endOffset": 97595 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1343, + "startColumn": 4, + "startOffset": 105336, + "endLine": 1344, + "endColumn": 12, + "endOffset": 105473 + } + } + }, + { + "to": { + "startLine": 1282, + "startColumn": 4, + "startOffset": 97600, + "endLine": 1283, + "endColumn": 12, + "endOffset": 97753 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1345, + "startColumn": 4, + "startOffset": 105478, + "endLine": 1346, + "endColumn": 12, + "endOffset": 105631 + } + } + }, + { + "to": { + "startLine": 1284, + "startColumn": 4, + "startOffset": 97758, + "endLine": 1285, + "endColumn": 12, + "endOffset": 97903 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1347, + "startColumn": 4, + "startOffset": 105636, + "endLine": 1348, + "endColumn": 12, + "endOffset": 105781 + } + } + }, + { + "to": { + "startLine": 1286, + "startColumn": 4, + "startOffset": 97908, + "endColumn": 140, + "endOffset": 98044 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1349, + "startColumn": 4, + "startOffset": 105786, + "endColumn": 140, + "endOffset": 105922 + } + } + }, + { + "to": { + "startLine": 1287, + "startColumn": 4, + "startOffset": 98049, + "endLine": 1288, + "endColumn": 12, + "endOffset": 98188 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1350, + "startColumn": 4, + "startOffset": 105927, + "endLine": 1351, + "endColumn": 12, + "endOffset": 106066 + } + } + }, + { + "to": { + "startLine": 1289, + "startColumn": 4, + "startOffset": 98193, + "endColumn": 134, + "endOffset": 98323 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1352, + "startColumn": 4, + "startOffset": 106071, + "endColumn": 134, + "endOffset": 106201 + } + } + }, + { + "to": { + "startLine": 1290, + "startColumn": 4, + "startOffset": 98328, + "endLine": 1291, + "endColumn": 12, + "endOffset": 98459 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1353, + "startColumn": 4, + "startOffset": 106206, + "endLine": 1354, + "endColumn": 12, + "endOffset": 106337 + } + } + }, + { + "to": { + "startLine": 1292, + "startColumn": 4, + "startOffset": 98464, + "endLine": 1293, + "endColumn": 12, + "endOffset": 98601 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1355, + "startColumn": 4, + "startOffset": 106342, + "endLine": 1356, + "endColumn": 12, + "endOffset": 106479 + } + } + }, + { + "to": { + "startLine": 1294, + "startColumn": 4, + "startOffset": 98606, + "endLine": 1295, + "endColumn": 12, + "endOffset": 98743 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1357, + "startColumn": 4, + "startOffset": 106484, + "endLine": 1358, + "endColumn": 12, + "endOffset": 106621 + } + } + }, + { + "to": { + "startLine": 1296, + "startColumn": 4, + "startOffset": 98748, + "endColumn": 111, + "endOffset": 98855 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1359, + "startColumn": 4, + "startOffset": 106626, + "endColumn": 111, + "endOffset": 106733 + } + } + }, + { + "to": { + "startLine": 1297, + "startColumn": 4, + "startOffset": 98860, + "endColumn": 139, + "endOffset": 98995 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1360, + "startColumn": 4, + "startOffset": 106738, + "endColumn": 139, + "endOffset": 106873 + } + } + }, + { + "to": { + "startLine": 1298, + "startColumn": 4, + "startOffset": 99000, + "endLine": 1299, + "endColumn": 12, + "endOffset": 99141 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1361, + "startColumn": 4, + "startOffset": 106878, + "endLine": 1362, + "endColumn": 12, + "endOffset": 107019 + } + } + }, + { + "to": { + "startLine": 1300, + "startColumn": 4, + "startOffset": 99146, + "endLine": 1301, + "endColumn": 12, + "endOffset": 99285 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1363, + "startColumn": 4, + "startOffset": 107024, + "endLine": 1364, + "endColumn": 12, + "endOffset": 107163 + } + } + }, + { + "to": { + "startLine": 1302, + "startColumn": 4, + "startOffset": 99290, + "endLine": 1303, + "endColumn": 12, + "endOffset": 99423 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1365, + "startColumn": 4, + "startOffset": 107168, + "endLine": 1366, + "endColumn": 12, + "endOffset": 107301 + } + } + }, + { + "to": { + "startLine": 1304, + "startColumn": 4, + "startOffset": 99428, + "endColumn": 65, + "endOffset": 99489 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1369, + "startColumn": 4, + "startOffset": 107538, + "endColumn": 65, + "endOffset": 107599 + } + } + }, + { + "to": { + "startLine": 1305, + "startColumn": 4, + "startOffset": 99494, + "endColumn": 89, + "endOffset": 99579 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1370, + "startColumn": 4, + "startOffset": 107604, + "endColumn": 89, + "endOffset": 107689 + } + } + }, + { + "to": { + "startLine": 1306, + "startColumn": 4, + "startOffset": 99584, + "endColumn": 79, + "endOffset": 99659 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1371, + "startColumn": 4, + "startOffset": 107694, + "endColumn": 79, + "endOffset": 107769 + } + } + }, + { + "to": { + "startLine": 1307, + "startColumn": 4, + "startOffset": 99664, + "endColumn": 91, + "endOffset": 99751 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1372, + "startColumn": 4, + "startOffset": 107774, + "endColumn": 91, + "endOffset": 107861 + } + } + }, + { + "to": { + "startLine": 1308, + "startColumn": 4, + "startOffset": 99756, + "endColumn": 97, + "endOffset": 99849 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1373, + "startColumn": 4, + "startOffset": 107866, + "endColumn": 97, + "endOffset": 107959 + } + } + }, + { + "to": { + "startLine": 1309, + "startColumn": 4, + "startOffset": 99854, + "endLine": 1310, + "endColumn": 12, + "endOffset": 99959 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1374, + "startColumn": 4, + "startOffset": 107964, + "endLine": 1375, + "endColumn": 12, + "endOffset": 108069 + } + } + }, + { + "to": { + "startLine": 1311, + "startColumn": 4, + "startOffset": 99964, + "endColumn": 77, + "endOffset": 100037 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1376, + "startColumn": 4, + "startOffset": 108074, + "endColumn": 77, + "endOffset": 108147 + } + } + }, + { + "to": { + "startLine": 1312, + "startColumn": 4, + "startOffset": 100042, + "endColumn": 105, + "endOffset": 100143 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1377, + "startColumn": 4, + "startOffset": 108152, + "endColumn": 105, + "endOffset": 108253 + } + } + }, + { + "to": { + "startLine": 1313, + "startColumn": 4, + "startOffset": 100148, + "endColumn": 91, + "endOffset": 100235 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1378, + "startColumn": 4, + "startOffset": 108258, + "endColumn": 91, + "endOffset": 108345 + } + } + }, + { + "to": { + "startLine": 1314, + "startColumn": 4, + "startOffset": 100240, + "endColumn": 103, + "endOffset": 100339 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1379, + "startColumn": 4, + "startOffset": 108350, + "endColumn": 103, + "endOffset": 108449 + } + } + }, + { + "to": { + "startLine": 1315, + "startColumn": 4, + "startOffset": 100344, + "endColumn": 109, + "endOffset": 100449 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1380, + "startColumn": 4, + "startOffset": 108454, + "endColumn": 109, + "endOffset": 108559 + } + } + }, + { + "to": { + "startLine": 1316, + "startColumn": 4, + "startOffset": 100454, + "endLine": 1317, + "endColumn": 12, + "endOffset": 100571 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1381, + "startColumn": 4, + "startOffset": 108564, + "endLine": 1382, + "endColumn": 12, + "endOffset": 108681 + } + } + }, + { + "to": { + "startLine": 1318, + "startColumn": 4, + "startOffset": 100576, + "endLine": 1321, + "endColumn": 12, + "endOffset": 100734 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1383, + "startColumn": 4, + "startOffset": 108686, + "endLine": 1386, + "endColumn": 12, + "endOffset": 108844 + } + } + }, + { + "to": { + "startLine": 1322, + "startColumn": 4, + "startOffset": 100739, + "endLine": 1325, + "endColumn": 12, + "endOffset": 100891 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1387, + "startColumn": 4, + "startOffset": 108849, + "endLine": 1390, + "endColumn": 12, + "endOffset": 109001 + } + } + }, + { + "to": { + "startLine": 1326, + "startColumn": 4, + "startOffset": 100896, + "endColumn": 79, + "endOffset": 100971 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1391, + "startColumn": 4, + "startOffset": 109006, + "endColumn": 79, + "endOffset": 109081 + } + } + }, + { + "to": { + "startLine": 1327, + "startColumn": 4, + "startOffset": 100976, + "endColumn": 99, + "endOffset": 101071 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1392, + "startColumn": 4, + "startOffset": 109086, + "endColumn": 99, + "endOffset": 109181 + } + } + }, + { + "to": { + "startLine": 1328, + "startColumn": 4, + "startOffset": 101076, + "endColumn": 89, + "endOffset": 101161 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1393, + "startColumn": 4, + "startOffset": 109186, + "endColumn": 89, + "endOffset": 109271 + } + } + }, + { + "to": { + "startLine": 1329, + "startColumn": 4, + "startOffset": 101166, + "endColumn": 109, + "endOffset": 101271 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1394, + "startColumn": 4, + "startOffset": 109276, + "endColumn": 109, + "endOffset": 109381 + } + } + }, + { + "to": { + "startLine": 1330, + "startColumn": 4, + "startOffset": 101276, + "endColumn": 91, + "endOffset": 101363 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1395, + "startColumn": 4, + "startOffset": 109386, + "endColumn": 91, + "endOffset": 109473 + } + } + }, + { + "to": { + "startLine": 1331, + "startColumn": 4, + "startOffset": 101368, + "endLine": 1332, + "endColumn": 12, + "endOffset": 101463 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1398, + "startColumn": 4, + "startOffset": 109710, + "endLine": 1399, + "endColumn": 12, + "endOffset": 109805 + } + } + }, + { + "to": { + "startLine": 1333, + "startColumn": 4, + "startOffset": 101468, + "endLine": 1334, + "endColumn": 12, + "endOffset": 101575 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1400, + "startColumn": 4, + "startOffset": 109810, + "endLine": 1401, + "endColumn": 12, + "endOffset": 109917 + } + } + }, + { + "to": { + "startLine": 1335, + "startColumn": 4, + "startOffset": 101580, + "endLine": 1336, + "endColumn": 12, + "endOffset": 101689 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1402, + "startColumn": 4, + "startOffset": 109922, + "endLine": 1403, + "endColumn": 12, + "endOffset": 110031 + } + } + }, + { + "to": { + "startLine": 1337, + "startColumn": 4, + "startOffset": 101694, + "endLine": 1338, + "endColumn": 12, + "endOffset": 101805 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1404, + "startColumn": 4, + "startOffset": 110036, + "endLine": 1405, + "endColumn": 12, + "endOffset": 110147 + } + } + }, + { + "to": { + "startLine": 1339, + "startColumn": 4, + "startOffset": 101810, + "endLine": 1340, + "endColumn": 12, + "endOffset": 101921 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1406, + "startColumn": 4, + "startOffset": 110152, + "endLine": 1407, + "endColumn": 12, + "endOffset": 110263 + } + } + }, + { + "to": { + "startLine": 1341, + "startColumn": 4, + "startOffset": 101926, + "endColumn": 93, + "endOffset": 102015 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1408, + "startColumn": 4, + "startOffset": 110268, + "endColumn": 93, + "endOffset": 110357 + } + } + }, + { + "to": { + "startLine": 1342, + "startColumn": 4, + "startOffset": 102020, + "endColumn": 113, + "endOffset": 102129 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1409, + "startColumn": 4, + "startOffset": 110362, + "endColumn": 113, + "endOffset": 110471 + } + } + }, + { + "to": { + "startLine": 1343, + "startColumn": 4, + "startOffset": 102134, + "endColumn": 117, + "endOffset": 102247 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1410, + "startColumn": 4, + "startOffset": 110476, + "endColumn": 117, + "endOffset": 110589 + } + } + }, + { + "to": { + "startLine": 1344, + "startColumn": 4, + "startOffset": 102252, + "endLine": 1345, + "endColumn": 12, + "endOffset": 102349 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1411, + "startColumn": 4, + "startOffset": 110594, + "endLine": 1412, + "endColumn": 12, + "endOffset": 110691 + } + } + }, + { + "to": { + "startLine": 1346, + "startColumn": 4, + "startOffset": 102354, + "endLine": 1347, + "endColumn": 12, + "endOffset": 102469 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1413, + "startColumn": 4, + "startOffset": 110696, + "endLine": 1414, + "endColumn": 12, + "endOffset": 110811 + } + } + }, + { + "to": { + "startLine": 1348, + "startColumn": 4, + "startOffset": 102474, + "endLine": 1349, + "endColumn": 12, + "endOffset": 102591 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1415, + "startColumn": 4, + "startOffset": 110816, + "endLine": 1416, + "endColumn": 12, + "endOffset": 110933 + } + } + }, + { + "to": { + "startLine": 1350, + "startColumn": 4, + "startOffset": 102596, + "endColumn": 81, + "endOffset": 102673 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1417, + "startColumn": 4, + "startOffset": 110938, + "endColumn": 81, + "endOffset": 111015 + } + } + }, + { + "to": { + "startLine": 1351, + "startColumn": 4, + "startOffset": 102678, + "endColumn": 103, + "endOffset": 102777 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1418, + "startColumn": 4, + "startOffset": 111020, + "endColumn": 103, + "endOffset": 111119 + } + } + }, + { + "to": { + "startLine": 1352, + "startColumn": 4, + "startOffset": 102782, + "endColumn": 119, + "endOffset": 102897 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1419, + "startColumn": 4, + "startOffset": 111124, + "endColumn": 119, + "endOffset": 111239 + } + } + }, + { + "to": { + "startLine": 1353, + "startColumn": 4, + "startOffset": 102902, + "endColumn": 125, + "endOffset": 103023 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1420, + "startColumn": 4, + "startOffset": 111244, + "endColumn": 125, + "endOffset": 111365 + } + } + }, + { + "to": { + "startLine": 1354, + "startColumn": 4, + "startOffset": 103028, + "endColumn": 93, + "endOffset": 103117 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1421, + "startColumn": 4, + "startOffset": 111370, + "endColumn": 93, + "endOffset": 111459 + } + } + }, + { + "to": { + "startLine": 1355, + "startColumn": 4, + "startOffset": 103122, + "endColumn": 87, + "endOffset": 103205 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1422, + "startColumn": 4, + "startOffset": 111464, + "endColumn": 87, + "endOffset": 111547 + } + } + }, + { + "to": { + "startLine": 1356, + "startColumn": 4, + "startOffset": 103210, + "endColumn": 111, + "endOffset": 103317 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1423, + "startColumn": 4, + "startOffset": 111552, + "endColumn": 111, + "endOffset": 111659 + } + } + }, + { + "to": { + "startLine": 1357, + "startColumn": 4, + "startOffset": 103322, + "endColumn": 115, + "endOffset": 103433 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1424, + "startColumn": 4, + "startOffset": 111664, + "endColumn": 115, + "endOffset": 111775 + } + } + }, + { + "to": { + "startLine": 1358, + "startColumn": 4, + "startOffset": 103438, + "endColumn": 121, + "endOffset": 103555 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1425, + "startColumn": 4, + "startOffset": 111780, + "endColumn": 121, + "endOffset": 111897 + } + } + }, + { + "to": { + "startLine": 1359, + "startColumn": 4, + "startOffset": 103560, + "endColumn": 111, + "endOffset": 103667 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1426, + "startColumn": 4, + "startOffset": 111902, + "endColumn": 111, + "endOffset": 112009 + } + } + }, + { + "to": { + "startLine": 1360, + "startColumn": 4, + "startOffset": 103672, + "endLine": 1362, + "endColumn": 12, + "endOffset": 103842 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1427, + "startColumn": 4, + "startOffset": 112014, + "endLine": 1429, + "endColumn": 12, + "endOffset": 112184 + } + } + }, + { + "to": { + "startLine": 1363, + "startColumn": 4, + "startOffset": 103847, + "endColumn": 115, + "endOffset": 103958 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1430, + "startColumn": 4, + "startOffset": 112189, + "endColumn": 115, + "endOffset": 112300 + } + } + }, + { + "to": { + "startLine": 1364, + "startColumn": 4, + "startOffset": 103963, + "endLine": 1365, + "endColumn": 12, + "endOffset": 104056 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1431, + "startColumn": 4, + "startOffset": 112305, + "endLine": 1432, + "endColumn": 12, + "endOffset": 112398 + } + } + }, + { + "to": { + "startLine": 1366, + "startColumn": 4, + "startOffset": 104061, + "endLine": 1367, + "endColumn": 12, + "endOffset": 104168 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1433, + "startColumn": 4, + "startOffset": 112403, + "endLine": 1434, + "endColumn": 12, + "endOffset": 112510 + } + } + }, + { + "to": { + "startLine": 1368, + "startColumn": 4, + "startOffset": 104173, + "endLine": 1369, + "endColumn": 12, + "endOffset": 104292 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1435, + "startColumn": 4, + "startOffset": 112515, + "endLine": 1436, + "endColumn": 12, + "endOffset": 112634 + } + } + }, + { + "to": { + "startLine": 1370, + "startColumn": 4, + "startOffset": 104297, + "endColumn": 66, + "endOffset": 104359 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1437, + "startColumn": 4, + "startOffset": 112639, + "endColumn": 66, + "endOffset": 112701 + } + } + }, + { + "to": { + "startLine": 1371, + "startColumn": 4, + "startOffset": 104364, + "endLine": 1372, + "endColumn": 12, + "endOffset": 104485 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1438, + "startColumn": 4, + "startOffset": 112706, + "endLine": 1439, + "endColumn": 12, + "endOffset": 112827 + } + } + }, + { + "to": { + "startLine": 1373, + "startColumn": 4, + "startOffset": 104490, + "endColumn": 67, + "endOffset": 104553 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1440, + "startColumn": 4, + "startOffset": 112832, + "endColumn": 67, + "endOffset": 112895 + } + } + }, + { + "to": { + "startLine": 1374, + "startColumn": 4, + "startOffset": 104558, + "endLine": 1375, + "endColumn": 12, + "endOffset": 104681 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1441, + "startColumn": 4, + "startOffset": 112900, + "endLine": 1442, + "endColumn": 12, + "endOffset": 113023 + } + } + }, + { + "to": { + "startLine": 1376, + "startColumn": 4, + "startOffset": 104686, + "endLine": 1377, + "endColumn": 12, + "endOffset": 104825 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1443, + "startColumn": 4, + "startOffset": 113028, + "endLine": 1444, + "endColumn": 12, + "endOffset": 113167 + } + } + }, + { + "to": { + "startLine": 1378, + "startColumn": 4, + "startOffset": 104830, + "endLine": 1379, + "endColumn": 12, + "endOffset": 104953 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1445, + "startColumn": 4, + "startOffset": 113172, + "endLine": 1446, + "endColumn": 12, + "endOffset": 113295 + } + } + }, + { + "to": { + "startLine": 1380, + "startColumn": 4, + "startOffset": 104958, + "endColumn": 68, + "endOffset": 105022 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1447, + "startColumn": 4, + "startOffset": 113300, + "endColumn": 68, + "endOffset": 113364 + } + } + }, + { + "to": { + "startLine": 1381, + "startColumn": 4, + "startOffset": 105027, + "endColumn": 94, + "endOffset": 105117 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1448, + "startColumn": 4, + "startOffset": 113369, + "endColumn": 94, + "endOffset": 113459 + } + } + }, + { + "to": { + "startLine": 1382, + "startColumn": 4, + "startOffset": 105122, + "endColumn": 114, + "endOffset": 105232 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1449, + "startColumn": 4, + "startOffset": 113464, + "endColumn": 114, + "endOffset": 113574 + } + } + }, + { + "to": { + "startLine": 1383, + "startColumn": 4, + "startOffset": 105237, + "endColumn": 112, + "endOffset": 105345 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1450, + "startColumn": 4, + "startOffset": 113579, + "endColumn": 112, + "endOffset": 113687 + } + } + }, + { + "to": { + "startLine": 1384, + "startColumn": 4, + "startOffset": 105350, + "endColumn": 98, + "endOffset": 105444 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1451, + "startColumn": 4, + "startOffset": 113692, + "endColumn": 98, + "endOffset": 113786 + } + } + }, + { + "to": { + "startLine": 1385, + "startColumn": 4, + "startOffset": 105449, + "endColumn": 108, + "endOffset": 105553 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1452, + "startColumn": 4, + "startOffset": 113791, + "endColumn": 108, + "endOffset": 113895 + } + } + }, + { + "to": { + "startLine": 1386, + "startColumn": 4, + "startOffset": 105558, + "endColumn": 110, + "endOffset": 105664 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1453, + "startColumn": 4, + "startOffset": 113900, + "endColumn": 110, + "endOffset": 114006 + } + } + }, + { + "to": { + "startLine": 1387, + "startColumn": 4, + "startOffset": 105669, + "endColumn": 110, + "endOffset": 105775 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1454, + "startColumn": 4, + "startOffset": 114011, + "endColumn": 110, + "endOffset": 114117 + } + } + }, + { + "to": { + "startLine": 1388, + "startColumn": 4, + "startOffset": 105780, + "endColumn": 100, + "endOffset": 105876 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1455, + "startColumn": 4, + "startOffset": 114122, + "endColumn": 100, + "endOffset": 114218 + } + } + }, + { + "to": { + "startLine": 1389, + "startColumn": 4, + "startOffset": 105881, + "endColumn": 104, + "endOffset": 105981 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1456, + "startColumn": 4, + "startOffset": 114223, + "endColumn": 104, + "endOffset": 114323 + } + } + }, + { + "to": { + "startLine": 1390, + "startColumn": 4, + "startOffset": 105986, + "endLine": 1391, + "endColumn": 12, + "endOffset": 106093 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1457, + "startColumn": 4, + "startOffset": 114328, + "endLine": 1458, + "endColumn": 12, + "endOffset": 114435 + } + } + }, + { + "to": { + "startLine": 1392, + "startColumn": 4, + "startOffset": 106098, + "endLine": 1393, + "endColumn": 12, + "endOffset": 106223 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1459, + "startColumn": 4, + "startOffset": 114440, + "endLine": 1460, + "endColumn": 12, + "endOffset": 114565 + } + } + }, + { + "to": { + "startLine": 1394, + "startColumn": 4, + "startOffset": 106228, + "endColumn": 90, + "endOffset": 106314 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1461, + "startColumn": 4, + "startOffset": 114570, + "endColumn": 90, + "endOffset": 114656 + } + } + }, + { + "to": { + "startLine": 1395, + "startColumn": 4, + "startOffset": 106319, + "endColumn": 122, + "endOffset": 106437 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1462, + "startColumn": 4, + "startOffset": 114661, + "endColumn": 122, + "endOffset": 114779 + } + } + }, + { + "to": { + "startLine": 1396, + "startColumn": 4, + "startOffset": 106442, + "endLine": 1397, + "endColumn": 12, + "endOffset": 106549 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1463, + "startColumn": 4, + "startOffset": 114784, + "endLine": 1464, + "endColumn": 12, + "endOffset": 114891 + } + } + }, + { + "to": { + "startLine": 1398, + "startColumn": 4, + "startOffset": 106554, + "endColumn": 85, + "endOffset": 106635 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1465, + "startColumn": 4, + "startOffset": 114896, + "endColumn": 85, + "endOffset": 114977 + } + } + }, + { + "to": { + "startLine": 1399, + "startColumn": 4, + "startOffset": 106640, + "endColumn": 103, + "endOffset": 106739 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1466, + "startColumn": 4, + "startOffset": 114982, + "endColumn": 103, + "endOffset": 115081 + } + } + }, + { + "to": { + "startLine": 1400, + "startColumn": 4, + "startOffset": 106744, + "endLine": 1401, + "endColumn": 12, + "endOffset": 106847 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1467, + "startColumn": 4, + "startOffset": 115086, + "endLine": 1468, + "endColumn": 12, + "endOffset": 115189 + } + } + }, + { + "to": { + "startLine": 1402, + "startColumn": 4, + "startOffset": 106852, + "endLine": 1403, + "endColumn": 12, + "endOffset": 106947 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1469, + "startColumn": 4, + "startOffset": 115194, + "endLine": 1470, + "endColumn": 12, + "endOffset": 115289 + } + } + }, + { + "to": { + "startLine": 1404, + "startColumn": 4, + "startOffset": 106952, + "endLine": 1405, + "endColumn": 12, + "endOffset": 107065 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1471, + "startColumn": 4, + "startOffset": 115294, + "endLine": 1472, + "endColumn": 12, + "endOffset": 115407 + } + } + }, + { + "to": { + "startLine": 1406, + "startColumn": 4, + "startOffset": 107070, + "endLine": 1407, + "endColumn": 12, + "endOffset": 107169 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1473, + "startColumn": 4, + "startOffset": 115412, + "endLine": 1474, + "endColumn": 12, + "endOffset": 115511 + } + } + }, + { + "to": { + "startLine": 1408, + "startColumn": 4, + "startOffset": 107174, + "endLine": 1409, + "endColumn": 12, + "endOffset": 107273 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1475, + "startColumn": 4, + "startOffset": 115516, + "endLine": 1476, + "endColumn": 12, + "endOffset": 115615 + } + } + }, + { + "to": { + "startLine": 1410, + "startColumn": 4, + "startOffset": 107278, + "endLine": 1411, + "endColumn": 12, + "endOffset": 107399 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1477, + "startColumn": 4, + "startOffset": 115620, + "endLine": 1478, + "endColumn": 12, + "endOffset": 115741 + } + } + }, + { + "to": { + "startLine": 1412, + "startColumn": 4, + "startOffset": 107404, + "endColumn": 87, + "endOffset": 107487 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1479, + "startColumn": 4, + "startOffset": 115746, + "endColumn": 87, + "endOffset": 115829 + } + } + }, + { + "to": { + "startLine": 1413, + "startColumn": 4, + "startOffset": 107492, + "endColumn": 89, + "endOffset": 107577 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1480, + "startColumn": 4, + "startOffset": 115834, + "endColumn": 89, + "endOffset": 115919 + } + } + }, + { + "to": { + "startLine": 1414, + "startColumn": 4, + "startOffset": 107582, + "endColumn": 109, + "endOffset": 107687 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1481, + "startColumn": 4, + "startOffset": 115924, + "endColumn": 109, + "endOffset": 116029 + } + } + }, + { + "to": { + "startLine": 1415, + "startColumn": 4, + "startOffset": 107692, + "endColumn": 83, + "endOffset": 107771 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1482, + "startColumn": 4, + "startOffset": 116034, + "endColumn": 83, + "endOffset": 116113 + } + } + }, + { + "to": { + "startLine": 1416, + "startColumn": 4, + "startOffset": 107776, + "endColumn": 53, + "endOffset": 107825 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1483, + "startColumn": 4, + "startOffset": 116118, + "endColumn": 53, + "endOffset": 116167 + } + } + }, + { + "to": { + "startLine": 1417, + "startColumn": 4, + "startOffset": 107830, + "endColumn": 121, + "endOffset": 107947 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1484, + "startColumn": 4, + "startOffset": 116172, + "endColumn": 121, + "endOffset": 116289 + } + } + }, + { + "to": { + "startLine": 1418, + "startColumn": 4, + "startOffset": 107952, + "endColumn": 105, + "endOffset": 108053 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1485, + "startColumn": 4, + "startOffset": 116294, + "endColumn": 105, + "endOffset": 116395 + } + } + }, + { + "to": { + "startLine": 1419, + "startColumn": 4, + "startOffset": 108058, + "endColumn": 109, + "endOffset": 108163 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1486, + "startColumn": 4, + "startOffset": 116400, + "endColumn": 109, + "endOffset": 116505 + } + } + }, + { + "to": { + "startLine": 1420, + "startColumn": 4, + "startOffset": 108168, + "endColumn": 83, + "endOffset": 108247 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1487, + "startColumn": 4, + "startOffset": 116510, + "endColumn": 83, + "endOffset": 116589 + } + } + }, + { + "to": { + "startLine": 1421, + "startColumn": 4, + "startOffset": 108252, + "endColumn": 125, + "endOffset": 108373 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1488, + "startColumn": 4, + "startOffset": 116594, + "endColumn": 125, + "endOffset": 116715 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/anim.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/anim.json new file mode 100644 index 0000000..782549e --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/anim.json @@ -0,0 +1,42 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_out_bottom.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_slide_out_bottom.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_popup_exit.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_popup_exit.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_shrink_fade_out_from_bottom.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_shrink_fade_out_from_bottom.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_grow_fade_in_from_bottom.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_grow_fade_in_from_bottom.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_fade_in.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_fade_in.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_popup_enter.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_popup_enter.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_out_top.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_slide_out_top.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_fade_out.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_fade_out.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_in_bottom.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_slide_in_bottom.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_in_top.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_slide_in_top.xml" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/color-v11.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/color-v11.json new file mode 100644 index 0000000..8e6d44e --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/color-v11.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color-v11/abc_background_cache_hint_selector_material_light.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color-v11/abc_background_cache_hint_selector_material_dark.xml" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/color.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/color.json new file mode 100644 index 0000000..b132c7d --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/color.json @@ -0,0 +1,38 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/switch_thumb_material_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/switch_thumb_material_light.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_disable_only_material_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_primary_text_disable_only_material_dark.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_material_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_primary_text_material_dark.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/switch_thumb_material_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/switch_thumb_material_dark.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_material_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_primary_text_material_light.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/abc_search_url_text.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_search_url_text.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_disable_only_material_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_primary_text_disable_only_material_light.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/abc_secondary_text_material_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_secondary_text_material_dark.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/abc_secondary_text_material_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_secondary_text_material_light.xml" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-hdpi-v4.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-hdpi-v4.json new file mode 100644 index 0000000..4fb3a31 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-hdpi-v4.json @@ -0,0 +1,158 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_text_cursor_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_text_cursor_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_focused_holo.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-hdpi-v17.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-hdpi-v17.json new file mode 100644 index 0000000..29e202d --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-hdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-mdpi-v17.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-mdpi-v17.json new file mode 100644 index 0000000..545a519 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-mdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xhdpi-v17.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xhdpi-v17.json new file mode 100644 index 0000000..aceb471 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xhdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xxhdpi-v17.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xxhdpi-v17.json new file mode 100644 index 0000000..57df9d0 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xxhdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xxxhdpi-v17.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xxxhdpi-v17.json new file mode 100644 index 0000000..6fa500f --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xxxhdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-mdpi-v4.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-mdpi-v4.json new file mode 100644 index 0000000..2ec47df --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-mdpi-v4.json @@ -0,0 +1,158 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_text_cursor_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_text_cursor_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_focused_holo.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-tvdpi-v4.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-tvdpi-v4.json new file mode 100644 index 0000000..8925c8e --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-tvdpi-v4.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-tvdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-tvdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-tvdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-tvdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-xhdpi-v4.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-xhdpi-v4.json new file mode 100644 index 0000000..f5c22b9 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-xhdpi-v4.json @@ -0,0 +1,158 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_text_cursor_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_text_cursor_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-xxhdpi-v4.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-xxhdpi-v4.json new file mode 100644 index 0000000..b03960f --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-xxhdpi-v4.json @@ -0,0 +1,158 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_text_cursor_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_text_cursor_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-xxxhdpi-v4.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-xxxhdpi-v4.json new file mode 100644 index 0000000..01487c3 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable-xxxhdpi-v4.json @@ -0,0 +1,78 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable.json new file mode 100644 index 0000000..1aa50b3 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/drawable.json @@ -0,0 +1,82 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_radio_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_btn_radio_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_holo_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_list_selector_holo_light.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_edit_text_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_edit_text_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_borderless_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_btn_borderless_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_check_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_btn_check_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_ratingbar_full_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_ratingbar_full_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_background_transition_holo_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_list_selector_background_transition_holo_light.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_dialog_material_background_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_dialog_material_background_light.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_item_background_holo_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_item_background_holo_light.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_cab_background_internal_bg.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_cab_background_internal_bg.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_background_transition_holo_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_list_selector_background_transition_holo_dark.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_dialog_material_background_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_dialog_material_background_dark.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_spinner_textfield_background_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_spinner_textfield_background_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_default_mtrl_shape.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_btn_default_mtrl_shape.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_cab_background_top_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_cab_background_top_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_item_background_holo_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_item_background_holo_dark.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_switch_thumb_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_switch_thumb_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_tab_indicator_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_tab_indicator_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_textfield_search_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_textfield_search_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_holo_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_list_selector_holo_dark.xml" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/layout-v11.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/layout-v11.json new file mode 100644 index 0000000..5104bc7 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/layout-v11.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout-v11/abc_screen_content_include.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout-v11/abc_screen_content_include.xml" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/layout.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/layout.json new file mode 100644 index 0000000..3adf78c --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/layout.json @@ -0,0 +1,118 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_singlechoice_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/select_dialog_singlechoice_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_simple.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_screen_simple.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_radio.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_list_menu_item_radio.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_dialog_title_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_dialog_title_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_view_list_nav_layout.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_bar_view_list_nav_layout.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_simple_dropdown_hint.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_simple_dropdown_hint.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_multichoice_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/select_dialog_multichoice_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_alert_dialog_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_alert_dialog_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_action_mode_close_item_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_mode_close_item_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_action_menu_layout.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_menu_layout.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_action_menu_item_layout.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_menu_item_layout.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/activity_main.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/layout/activity_main.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_action_mode_bar.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_mode_bar.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_layout.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_list_menu_item_layout.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/support_simple_spinner_dropdown_item.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/support_simple_spinner_dropdown_item.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_up_container.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_bar_up_container.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_search_dropdown_item_icons_2line.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_search_dropdown_item_icons_2line.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_popup_menu_item_layout.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_popup_menu_item_layout.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_select_dialog_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_select_dialog_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_activity_chooser_view_list_item.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_activity_chooser_view_list_item.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_title_item.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_bar_title_item.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_checkbox.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_list_menu_item_checkbox.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_activity_chooser_view.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_activity_chooser_view.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_simple_overlay_action_mode.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_screen_simple_overlay_action_mode.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_search_view.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_search_view.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_expanded_menu_layout.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_expanded_menu_layout.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_toolbar.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_screen_toolbar.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_icon.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_list_menu_item_icon.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_item_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/select_dialog_item_material.xml" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/menu.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/menu.json new file mode 100644 index 0000000..e8055d8 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/menu.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/menu/menu_main.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/menu/menu_main.xml" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/mipmap-hdpi-v4.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/mipmap-hdpi-v4.json new file mode 100644 index 0000000..87ea64a --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/mipmap-hdpi-v4.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/mipmap-hdpi-v4/ic_launcher.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/mipmap-hdpi-v4/ic_launcher.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/mipmap-mdpi-v4.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/mipmap-mdpi-v4.json new file mode 100644 index 0000000..990e9ec --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/mipmap-mdpi-v4.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/mipmap-mdpi-v4/ic_launcher.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/mipmap-mdpi-v4/ic_launcher.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/mipmap-xhdpi-v4.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/mipmap-xhdpi-v4.json new file mode 100644 index 0000000..43482f5 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/mipmap-xhdpi-v4.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/mipmap-xhdpi-v4/ic_launcher.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/mipmap-xhdpi-v4/ic_launcher.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/mipmap-xxhdpi-v4.json b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/mipmap-xxhdpi-v4.json new file mode 100644 index 0000000..79f6fa7 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/androidTest/debug/single/mipmap-xxhdpi-v4.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/mipmap-xxhdpi-v4/ic_launcher.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/mipmap-xxhdpi-v4/ic_launcher.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-af.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-af.json new file mode 100644 index 0000000..fea86c8 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-af.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 103, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 99, + "endOffset": 254 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 99, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 259, + "endColumn": 105, + "endOffset": 360 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 105, + "endOffset": 596 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 365, + "endColumn": 84, + "endOffset": 445 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 601, + "endColumn": 84, + "endOffset": 681 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 450, + "endColumn": 102, + "endOffset": 548 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 102, + "endOffset": 784 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 553, + "endColumn": 117, + "endOffset": 666 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 789, + "endColumn": 117, + "endOffset": 902 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 671, + "endColumn": 106, + "endOffset": 773 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 106, + "endOffset": 1009 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 778, + "endColumn": 102, + "endOffset": 876 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 102, + "endOffset": 1112 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 881, + "endColumn": 96, + "endOffset": 973 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 96, + "endOffset": 1209 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 107, + "endOffset": 1081 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1214, + "endColumn": 107, + "endOffset": 1317 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1086, + "endColumn": 101, + "endOffset": 1183 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1322, + "endColumn": 101, + "endOffset": 1419 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1188, + "endColumn": 101, + "endOffset": 1285 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1424, + "endColumn": 101, + "endOffset": 1521 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1290, + "endColumn": 116, + "endOffset": 1402 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-af/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1526, + "endColumn": 116, + "endOffset": 1638 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-am.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-am.json new file mode 100644 index 0000000..83f5cb5 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-am.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 101, + "endOffset": 152 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 101, + "endOffset": 388 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 157, + "endColumn": 98, + "endOffset": 251 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 98, + "endOffset": 487 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 256, + "endColumn": 105, + "endOffset": 357 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 492, + "endColumn": 105, + "endOffset": 593 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 362, + "endColumn": 85, + "endOffset": 443 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 85, + "endOffset": 679 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 448, + "endColumn": 102, + "endOffset": 546 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 684, + "endColumn": 102, + "endOffset": 782 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 551, + "endColumn": 112, + "endOffset": 659 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 787, + "endColumn": 112, + "endOffset": 895 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 664, + "endColumn": 99, + "endOffset": 759 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 900, + "endColumn": 99, + "endOffset": 995 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 764, + "endColumn": 99, + "endOffset": 859 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 99, + "endOffset": 1095 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 864, + "endColumn": 95, + "endOffset": 955 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1100, + "endColumn": 95, + "endOffset": 1191 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 960, + "endColumn": 102, + "endOffset": 1058 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1196, + "endColumn": 102, + "endOffset": 1294 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1063, + "endColumn": 98, + "endOffset": 1157 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1299, + "endColumn": 98, + "endOffset": 1393 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1162, + "endColumn": 106, + "endOffset": 1264 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1398, + "endColumn": 106, + "endOffset": 1500 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1269, + "endColumn": 115, + "endOffset": 1380 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-am/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1505, + "endColumn": 115, + "endOffset": 1616 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-ar.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ar.json new file mode 100644 index 0000000..67b90c8 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ar.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 116, + "endOffset": 403 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 103, + "endOffset": 271 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 408, + "endColumn": 103, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 276, + "endColumn": 108, + "endOffset": 380 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 108, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 385, + "endColumn": 81, + "endOffset": 462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 81, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 467, + "endColumn": 100, + "endOffset": 563 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 100, + "endOffset": 799 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 568, + "endColumn": 113, + "endOffset": 677 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 804, + "endColumn": 113, + "endOffset": 913 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 682, + "endColumn": 104, + "endOffset": 782 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 918, + "endColumn": 104, + "endOffset": 1018 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 787, + "endColumn": 100, + "endOffset": 883 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1023, + "endColumn": 100, + "endOffset": 1119 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 888, + "endColumn": 95, + "endOffset": 979 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1124, + "endColumn": 95, + "endOffset": 1215 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 984, + "endColumn": 107, + "endOffset": 1087 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1220, + "endColumn": 107, + "endOffset": 1323 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 102, + "endOffset": 1190 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 102, + "endOffset": 1426 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1195, + "endColumn": 102, + "endOffset": 1293 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1431, + "endColumn": 102, + "endOffset": 1529 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1298, + "endColumn": 118, + "endOffset": 1412 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ar/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1534, + "endColumn": 118, + "endOffset": 1648 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-bg.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-bg.json new file mode 100644 index 0000000..b13a0cb --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-bg.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 114, + "endOffset": 165 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 114, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 106, + "endOffset": 272 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 106, + "endOffset": 508 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 104, + "endOffset": 377 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 513, + "endColumn": 104, + "endOffset": 613 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 382, + "endColumn": 85, + "endOffset": 463 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 618, + "endColumn": 85, + "endOffset": 699 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 468, + "endColumn": 104, + "endOffset": 568 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 704, + "endColumn": 104, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 573, + "endColumn": 120, + "endOffset": 689 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 120, + "endOffset": 925 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 694, + "endColumn": 113, + "endOffset": 803 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 930, + "endColumn": 113, + "endOffset": 1039 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 808, + "endColumn": 108, + "endOffset": 912 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1044, + "endColumn": 108, + "endOffset": 1148 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 99, + "endOffset": 1012 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1153, + "endColumn": 99, + "endOffset": 1248 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1017, + "endColumn": 113, + "endOffset": 1126 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1253, + "endColumn": 113, + "endOffset": 1362 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1131, + "endColumn": 105, + "endOffset": 1232 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1367, + "endColumn": 105, + "endOffset": 1468 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1237, + "endColumn": 107, + "endOffset": 1340 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1473, + "endColumn": 107, + "endOffset": 1576 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1345, + "endColumn": 122, + "endOffset": 1463 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bg/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1581, + "endColumn": 122, + "endOffset": 1699 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-bn-rBD.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-bn-rBD.json new file mode 100644 index 0000000..5c8e28d --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-bn-rBD.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 108, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 111, + "endOffset": 271 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 111, + "endOffset": 511 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 276, + "endColumn": 105, + "endOffset": 377 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 105, + "endOffset": 617 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 382, + "endColumn": 93, + "endOffset": 471 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 622, + "endColumn": 93, + "endOffset": 711 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 476, + "endColumn": 104, + "endOffset": 576 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 716, + "endColumn": 104, + "endOffset": 816 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 581, + "endColumn": 129, + "endOffset": 706 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 821, + "endColumn": 129, + "endOffset": 946 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 711, + "endColumn": 109, + "endOffset": 816 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 951, + "endColumn": 109, + "endOffset": 1056 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 821, + "endColumn": 115, + "endOffset": 932 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1061, + "endColumn": 115, + "endOffset": 1172 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 937, + "endColumn": 106, + "endOffset": 1039 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1177, + "endColumn": 106, + "endOffset": 1279 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1044, + "endColumn": 109, + "endOffset": 1149 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1284, + "endColumn": 109, + "endOffset": 1389 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1154, + "endColumn": 105, + "endOffset": 1255 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1394, + "endColumn": 105, + "endOffset": 1495 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 109, + "endOffset": 1365 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1500, + "endColumn": 109, + "endOffset": 1605 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 124, + "endOffset": 1490 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-bn-rBD/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1610, + "endColumn": 124, + "endOffset": 1730 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-ca.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ca.json new file mode 100644 index 0000000..617f9bb --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ca.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 117, + "endOffset": 404 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 105, + "endOffset": 274 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 409, + "endColumn": 105, + "endOffset": 510 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 279, + "endColumn": 106, + "endOffset": 381 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 515, + "endColumn": 106, + "endOffset": 617 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 386, + "endColumn": 82, + "endOffset": 464 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 622, + "endColumn": 82, + "endOffset": 700 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 469, + "endColumn": 107, + "endOffset": 572 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 705, + "endColumn": 107, + "endOffset": 808 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 577, + "endColumn": 125, + "endOffset": 698 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 813, + "endColumn": 125, + "endOffset": 934 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 110, + "endOffset": 809 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 939, + "endColumn": 110, + "endOffset": 1045 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 814, + "endColumn": 108, + "endOffset": 918 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 108, + "endOffset": 1154 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 923, + "endColumn": 97, + "endOffset": 1016 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1159, + "endColumn": 97, + "endOffset": 1252 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1021, + "endColumn": 109, + "endOffset": 1126 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1257, + "endColumn": 109, + "endOffset": 1362 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1131, + "endColumn": 103, + "endOffset": 1230 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1367, + "endColumn": 103, + "endOffset": 1466 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 107, + "endOffset": 1338 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1471, + "endColumn": 107, + "endOffset": 1574 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1343, + "endColumn": 122, + "endOffset": 1461 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ca/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1579, + "endColumn": 122, + "endOffset": 1697 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-cs.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-cs.json new file mode 100644 index 0000000..0c5da9d --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-cs.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 106, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 101, + "endOffset": 259 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 101, + "endOffset": 495 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 264, + "endColumn": 108, + "endOffset": 368 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 500, + "endColumn": 108, + "endOffset": 604 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 373, + "endColumn": 85, + "endOffset": 454 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 609, + "endColumn": 85, + "endOffset": 690 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 459, + "endColumn": 104, + "endOffset": 559 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 104, + "endOffset": 795 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 564, + "endColumn": 116, + "endOffset": 676 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 800, + "endColumn": 116, + "endOffset": 912 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 103, + "endOffset": 780 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 103, + "endOffset": 1016 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 785, + "endColumn": 108, + "endOffset": 889 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1021, + "endColumn": 108, + "endOffset": 1125 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 894, + "endColumn": 98, + "endOffset": 988 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1130, + "endColumn": 98, + "endOffset": 1224 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 993, + "endColumn": 105, + "endOffset": 1094 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1229, + "endColumn": 105, + "endOffset": 1330 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1099, + "endColumn": 109, + "endOffset": 1204 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1335, + "endColumn": 109, + "endOffset": 1440 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1209, + "endColumn": 106, + "endOffset": 1311 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1445, + "endColumn": 106, + "endOffset": 1547 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1316, + "endColumn": 121, + "endOffset": 1433 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-cs/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1552, + "endColumn": 121, + "endOffset": 1669 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-da.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-da.json new file mode 100644 index 0000000..d524de7 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-da.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 102, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 98, + "endOffset": 252 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 98, + "endOffset": 488 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 257, + "endColumn": 111, + "endOffset": 364 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 493, + "endColumn": 111, + "endOffset": 600 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 369, + "endColumn": 82, + "endOffset": 447 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 605, + "endColumn": 82, + "endOffset": 683 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 452, + "endColumn": 99, + "endOffset": 547 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 99, + "endOffset": 783 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 552, + "endColumn": 112, + "endOffset": 660 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 112, + "endOffset": 896 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 665, + "endColumn": 108, + "endOffset": 769 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 901, + "endColumn": 108, + "endOffset": 1005 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 774, + "endColumn": 107, + "endOffset": 877 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 107, + "endOffset": 1113 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 882, + "endColumn": 95, + "endOffset": 973 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1118, + "endColumn": 95, + "endOffset": 1209 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 113, + "endOffset": 1087 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1214, + "endColumn": 113, + "endOffset": 1323 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 103, + "endOffset": 1191 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 103, + "endOffset": 1427 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1196, + "endColumn": 100, + "endOffset": 1292 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1432, + "endColumn": 100, + "endOffset": 1528 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1297, + "endColumn": 115, + "endOffset": 1408 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-da/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1533, + "endColumn": 115, + "endOffset": 1644 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-de.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-de.json new file mode 100644 index 0000000..572ee47 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-de.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 104, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 97, + "endOffset": 253 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 97, + "endOffset": 489 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 111, + "endOffset": 365 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 111, + "endOffset": 601 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 370, + "endColumn": 85, + "endOffset": 451 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 85, + "endOffset": 687 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 456, + "endColumn": 104, + "endOffset": 556 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 104, + "endOffset": 792 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 561, + "endColumn": 114, + "endOffset": 671 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 114, + "endOffset": 907 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 676, + "endColumn": 110, + "endOffset": 782 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 110, + "endOffset": 1018 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 787, + "endColumn": 102, + "endOffset": 885 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1023, + "endColumn": 102, + "endOffset": 1121 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 890, + "endColumn": 98, + "endOffset": 984 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1126, + "endColumn": 98, + "endOffset": 1220 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 989, + "endColumn": 110, + "endOffset": 1095 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1225, + "endColumn": 110, + "endOffset": 1331 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1100, + "endColumn": 101, + "endOffset": 1197 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1336, + "endColumn": 101, + "endOffset": 1433 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1202, + "endColumn": 106, + "endOffset": 1304 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 106, + "endOffset": 1540 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1309, + "endColumn": 121, + "endOffset": 1426 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-de/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1545, + "endColumn": 121, + "endOffset": 1662 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-el.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-el.json new file mode 100644 index 0000000..e7b60cd --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-el.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 117, + "endOffset": 404 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 110, + "endOffset": 279 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 409, + "endColumn": 110, + "endOffset": 515 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 284, + "endColumn": 116, + "endOffset": 396 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 520, + "endColumn": 116, + "endOffset": 632 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 401, + "endColumn": 84, + "endOffset": 481 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 637, + "endColumn": 84, + "endOffset": 717 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 486, + "endColumn": 104, + "endOffset": 586 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 722, + "endColumn": 104, + "endOffset": 822 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 591, + "endColumn": 125, + "endOffset": 712 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 827, + "endColumn": 125, + "endOffset": 948 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 110, + "endOffset": 823 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 953, + "endColumn": 110, + "endOffset": 1059 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 828, + "endColumn": 109, + "endOffset": 933 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1064, + "endColumn": 109, + "endOffset": 1169 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 938, + "endColumn": 101, + "endOffset": 1035 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1174, + "endColumn": 101, + "endOffset": 1271 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1040, + "endColumn": 110, + "endOffset": 1146 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1276, + "endColumn": 110, + "endOffset": 1382 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1151, + "endColumn": 108, + "endOffset": 1255 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1387, + "endColumn": 108, + "endOffset": 1491 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 107, + "endOffset": 1363 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1496, + "endColumn": 107, + "endOffset": 1599 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1368, + "endColumn": 122, + "endOffset": 1486 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-el/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1604, + "endColumn": 122, + "endOffset": 1722 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-en-rGB.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-en-rGB.json new file mode 100644 index 0000000..ddbd709 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-en-rGB.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 103, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 99, + "endOffset": 254 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 99, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 259, + "endColumn": 107, + "endOffset": 362 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 107, + "endOffset": 602 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 367, + "endColumn": 87, + "endOffset": 450 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 607, + "endColumn": 87, + "endOffset": 690 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 455, + "endColumn": 99, + "endOffset": 550 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 99, + "endOffset": 790 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 555, + "endColumn": 114, + "endOffset": 665 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 114, + "endOffset": 905 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 670, + "endColumn": 102, + "endOffset": 768 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 910, + "endColumn": 102, + "endOffset": 1008 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 773, + "endColumn": 103, + "endOffset": 872 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 103, + "endOffset": 1112 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 877, + "endColumn": 98, + "endOffset": 971 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 98, + "endOffset": 1211 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 976, + "endColumn": 104, + "endOffset": 1076 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1216, + "endColumn": 104, + "endOffset": 1316 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1081, + "endColumn": 102, + "endOffset": 1179 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1321, + "endColumn": 102, + "endOffset": 1419 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1184, + "endColumn": 103, + "endOffset": 1283 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1424, + "endColumn": 103, + "endOffset": 1523 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1288, + "endColumn": 118, + "endOffset": 1402 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rGB/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1528, + "endColumn": 118, + "endOffset": 1642 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-en-rIN.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-en-rIN.json new file mode 100644 index 0000000..01ba375 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-en-rIN.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 103, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 99, + "endOffset": 254 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 99, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 259, + "endColumn": 107, + "endOffset": 362 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 107, + "endOffset": 602 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 367, + "endColumn": 87, + "endOffset": 450 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 607, + "endColumn": 87, + "endOffset": 690 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 455, + "endColumn": 99, + "endOffset": 550 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 99, + "endOffset": 790 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 555, + "endColumn": 114, + "endOffset": 665 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 114, + "endOffset": 905 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 670, + "endColumn": 102, + "endOffset": 768 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 910, + "endColumn": 102, + "endOffset": 1008 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 773, + "endColumn": 103, + "endOffset": 872 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 103, + "endOffset": 1112 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 877, + "endColumn": 98, + "endOffset": 971 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 98, + "endOffset": 1211 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 976, + "endColumn": 104, + "endOffset": 1076 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1216, + "endColumn": 104, + "endOffset": 1316 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1081, + "endColumn": 102, + "endOffset": 1179 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1321, + "endColumn": 102, + "endOffset": 1419 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1184, + "endColumn": 103, + "endOffset": 1283 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1424, + "endColumn": 103, + "endOffset": 1523 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1288, + "endColumn": 118, + "endOffset": 1402 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-en-rIN/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1528, + "endColumn": 118, + "endOffset": 1642 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-es-rUS.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-es-rUS.json new file mode 100644 index 0000000..8e9c849 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-es-rUS.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 119, + "endOffset": 410 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 108, + "endOffset": 279 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 415, + "endColumn": 108, + "endOffset": 519 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 284, + "endColumn": 107, + "endOffset": 387 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 524, + "endColumn": 107, + "endOffset": 627 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 84, + "endOffset": 472 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 632, + "endColumn": 84, + "endOffset": 712 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 477, + "endColumn": 100, + "endOffset": 573 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 100, + "endOffset": 813 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 122, + "endOffset": 696 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 818, + "endColumn": 122, + "endOffset": 936 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 701, + "endColumn": 111, + "endOffset": 808 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 941, + "endColumn": 111, + "endOffset": 1048 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 813, + "endColumn": 111, + "endOffset": 920 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1053, + "endColumn": 111, + "endOffset": 1160 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 925, + "endColumn": 100, + "endOffset": 1021 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1165, + "endColumn": 100, + "endOffset": 1261 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1026, + "endColumn": 107, + "endOffset": 1129 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 107, + "endOffset": 1369 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1134, + "endColumn": 106, + "endOffset": 1236 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1374, + "endColumn": 106, + "endOffset": 1476 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1241, + "endColumn": 106, + "endOffset": 1343 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1481, + "endColumn": 106, + "endOffset": 1583 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1348, + "endColumn": 121, + "endOffset": 1465 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es-rUS/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1588, + "endColumn": 121, + "endOffset": 1705 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-es.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-es.json new file mode 100644 index 0000000..576c454 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-es.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 116, + "endOffset": 403 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 112, + "endOffset": 280 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 408, + "endColumn": 112, + "endOffset": 516 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 285, + "endColumn": 107, + "endOffset": 388 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 521, + "endColumn": 107, + "endOffset": 624 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 84, + "endOffset": 473 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 629, + "endColumn": 84, + "endOffset": 709 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 478, + "endColumn": 100, + "endOffset": 574 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 714, + "endColumn": 100, + "endOffset": 810 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 579, + "endColumn": 127, + "endOffset": 702 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 815, + "endColumn": 127, + "endOffset": 938 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 106, + "endOffset": 809 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 943, + "endColumn": 106, + "endOffset": 1045 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 814, + "endColumn": 99, + "endOffset": 909 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 99, + "endOffset": 1145 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 914, + "endColumn": 98, + "endOffset": 1008 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1150, + "endColumn": 98, + "endOffset": 1244 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 107, + "endOffset": 1116 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1249, + "endColumn": 107, + "endOffset": 1352 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1121, + "endColumn": 106, + "endOffset": 1223 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1357, + "endColumn": 106, + "endOffset": 1459 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1228, + "endColumn": 106, + "endOffset": 1330 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1464, + "endColumn": 106, + "endOffset": 1566 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1335, + "endColumn": 121, + "endOffset": 1452 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-es/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1571, + "endColumn": 121, + "endOffset": 1688 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-et-rEE.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-et-rEE.json new file mode 100644 index 0000000..a9cf4ca --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-et-rEE.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 116, + "endOffset": 407 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 106, + "endOffset": 274 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 412, + "endColumn": 106, + "endOffset": 514 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 279, + "endColumn": 110, + "endOffset": 385 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 519, + "endColumn": 110, + "endOffset": 625 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 85, + "endOffset": 471 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 630, + "endColumn": 85, + "endOffset": 711 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 476, + "endColumn": 101, + "endOffset": 573 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 716, + "endColumn": 101, + "endOffset": 813 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 116, + "endOffset": 690 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 818, + "endColumn": 116, + "endOffset": 930 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 110, + "endOffset": 801 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 935, + "endColumn": 110, + "endOffset": 1041 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 806, + "endColumn": 104, + "endOffset": 906 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 104, + "endOffset": 1146 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 911, + "endColumn": 98, + "endOffset": 1005 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1151, + "endColumn": 98, + "endOffset": 1245 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 109, + "endOffset": 1115 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1250, + "endColumn": 109, + "endOffset": 1355 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1120, + "endColumn": 100, + "endOffset": 1216 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1360, + "endColumn": 100, + "endOffset": 1456 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1221, + "endColumn": 102, + "endOffset": 1319 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1461, + "endColumn": 102, + "endOffset": 1559 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1324, + "endColumn": 127, + "endOffset": 1447 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-et-rEE/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1564, + "endColumn": 127, + "endOffset": 1687 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-eu-rES.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-eu-rES.json new file mode 100644 index 0000000..168ff05 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-eu-rES.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 108, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 97, + "endOffset": 257 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 97, + "endOffset": 497 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 262, + "endColumn": 109, + "endOffset": 367 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 502, + "endColumn": 109, + "endOffset": 607 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 372, + "endColumn": 85, + "endOffset": 453 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 85, + "endOffset": 693 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 458, + "endColumn": 105, + "endOffset": 559 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 105, + "endOffset": 799 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 564, + "endColumn": 123, + "endOffset": 683 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 804, + "endColumn": 123, + "endOffset": 923 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 108, + "endOffset": 792 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 928, + "endColumn": 108, + "endOffset": 1032 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 109, + "endOffset": 902 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1037, + "endColumn": 109, + "endOffset": 1142 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 98, + "endOffset": 1001 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 98, + "endOffset": 1241 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1006, + "endColumn": 108, + "endOffset": 1110 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1246, + "endColumn": 108, + "endOffset": 1350 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1115, + "endColumn": 112, + "endOffset": 1223 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1355, + "endColumn": 112, + "endOffset": 1463 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1228, + "endColumn": 110, + "endOffset": 1334 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 110, + "endOffset": 1574 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 136, + "endOffset": 1471 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-eu-rES/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1579, + "endColumn": 136, + "endOffset": 1711 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-fa.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-fa.json new file mode 100644 index 0000000..795b1f8 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-fa.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 109, + "endOffset": 396 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 102, + "endOffset": 263 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 401, + "endColumn": 102, + "endOffset": 499 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 110, + "endOffset": 374 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 110, + "endOffset": 610 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 379, + "endColumn": 87, + "endOffset": 462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 87, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 467, + "endColumn": 102, + "endOffset": 565 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 102, + "endOffset": 801 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 570, + "endColumn": 114, + "endOffset": 680 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 806, + "endColumn": 114, + "endOffset": 916 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 685, + "endColumn": 111, + "endOffset": 792 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 111, + "endOffset": 1028 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 102, + "endOffset": 895 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1033, + "endColumn": 102, + "endOffset": 1131 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 900, + "endColumn": 97, + "endOffset": 993 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1136, + "endColumn": 97, + "endOffset": 1229 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 998, + "endColumn": 109, + "endOffset": 1103 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1234, + "endColumn": 109, + "endOffset": 1339 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1108, + "endColumn": 102, + "endOffset": 1206 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1344, + "endColumn": 102, + "endOffset": 1442 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1211, + "endColumn": 108, + "endOffset": 1315 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1447, + "endColumn": 108, + "endOffset": 1551 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1320, + "endColumn": 124, + "endOffset": 1440 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fa/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1556, + "endColumn": 124, + "endOffset": 1676 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-fi.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-fi.json new file mode 100644 index 0000000..94889e3 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-fi.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 107, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 99, + "endOffset": 258 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 99, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 263, + "endColumn": 100, + "endOffset": 359 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 100, + "endOffset": 595 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 364, + "endColumn": 85, + "endOffset": 445 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 600, + "endColumn": 85, + "endOffset": 681 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 450, + "endColumn": 104, + "endOffset": 550 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 104, + "endOffset": 786 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 555, + "endColumn": 117, + "endOffset": 668 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 791, + "endColumn": 117, + "endOffset": 904 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 673, + "endColumn": 106, + "endOffset": 775 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 909, + "endColumn": 106, + "endOffset": 1011 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 780, + "endColumn": 102, + "endOffset": 878 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1016, + "endColumn": 102, + "endOffset": 1114 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 883, + "endColumn": 96, + "endOffset": 975 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1119, + "endColumn": 96, + "endOffset": 1211 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 980, + "endColumn": 105, + "endOffset": 1081 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1216, + "endColumn": 105, + "endOffset": 1317 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1086, + "endColumn": 98, + "endOffset": 1180 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1322, + "endColumn": 98, + "endOffset": 1416 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1185, + "endColumn": 103, + "endOffset": 1284 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1421, + "endColumn": 103, + "endOffset": 1520 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1289, + "endColumn": 118, + "endOffset": 1403 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fi/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1525, + "endColumn": 118, + "endOffset": 1639 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-fr-rCA.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-fr-rCA.json new file mode 100644 index 0000000..7fae45f --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-fr-rCA.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 110, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 114, + "endOffset": 276 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 114, + "endOffset": 516 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 110, + "endOffset": 387 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 521, + "endColumn": 110, + "endOffset": 627 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 86, + "endOffset": 474 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 632, + "endColumn": 86, + "endOffset": 714 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 479, + "endColumn": 115, + "endOffset": 590 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 719, + "endColumn": 115, + "endOffset": 830 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 595, + "endColumn": 129, + "endOffset": 720 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 835, + "endColumn": 129, + "endOffset": 960 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 725, + "endColumn": 109, + "endOffset": 830 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 965, + "endColumn": 109, + "endOffset": 1070 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 835, + "endColumn": 111, + "endOffset": 942 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1075, + "endColumn": 111, + "endOffset": 1182 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 947, + "endColumn": 102, + "endOffset": 1045 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1187, + "endColumn": 102, + "endOffset": 1285 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 110, + "endOffset": 1156 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1290, + "endColumn": 110, + "endOffset": 1396 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1161, + "endColumn": 106, + "endOffset": 1263 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1401, + "endColumn": 106, + "endOffset": 1503 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1268, + "endColumn": 106, + "endOffset": 1370 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1508, + "endColumn": 106, + "endOffset": 1610 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1375, + "endColumn": 121, + "endOffset": 1492 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr-rCA/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1615, + "endColumn": 121, + "endOffset": 1732 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-fr.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-fr.json new file mode 100644 index 0000000..c2e8fb6 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-fr.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 110, + "endOffset": 397 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 114, + "endOffset": 276 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 402, + "endColumn": 114, + "endOffset": 512 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 110, + "endOffset": 387 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 517, + "endColumn": 110, + "endOffset": 623 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 81, + "endOffset": 469 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 628, + "endColumn": 81, + "endOffset": 705 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 474, + "endColumn": 105, + "endOffset": 575 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 710, + "endColumn": 105, + "endOffset": 811 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 580, + "endColumn": 129, + "endOffset": 705 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 816, + "endColumn": 129, + "endOffset": 941 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 710, + "endColumn": 109, + "endOffset": 815 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 946, + "endColumn": 109, + "endOffset": 1051 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 820, + "endColumn": 111, + "endOffset": 927 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1056, + "endColumn": 111, + "endOffset": 1163 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 932, + "endColumn": 102, + "endOffset": 1030 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1168, + "endColumn": 102, + "endOffset": 1266 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1035, + "endColumn": 110, + "endOffset": 1141 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1271, + "endColumn": 110, + "endOffset": 1377 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1146, + "endColumn": 106, + "endOffset": 1248 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1382, + "endColumn": 106, + "endOffset": 1484 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1253, + "endColumn": 106, + "endOffset": 1355 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1489, + "endColumn": 106, + "endOffset": 1591 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1360, + "endColumn": 121, + "endOffset": 1477 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-fr/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1596, + "endColumn": 121, + "endOffset": 1713 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-gl-rES.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-gl-rES.json new file mode 100644 index 0000000..68466ba --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-gl-rES.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 111, + "endOffset": 162 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 111, + "endOffset": 402 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 167, + "endColumn": 111, + "endOffset": 274 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 407, + "endColumn": 111, + "endOffset": 514 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 279, + "endColumn": 107, + "endOffset": 382 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 519, + "endColumn": 107, + "endOffset": 622 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 387, + "endColumn": 84, + "endOffset": 467 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 627, + "endColumn": 84, + "endOffset": 707 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 472, + "endColumn": 101, + "endOffset": 569 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 712, + "endColumn": 101, + "endOffset": 809 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 574, + "endColumn": 125, + "endOffset": 695 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 814, + "endColumn": 125, + "endOffset": 935 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 700, + "endColumn": 106, + "endOffset": 802 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 940, + "endColumn": 106, + "endOffset": 1042 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 807, + "endColumn": 108, + "endOffset": 911 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1047, + "endColumn": 108, + "endOffset": 1151 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 916, + "endColumn": 98, + "endOffset": 1010 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 98, + "endOffset": 1250 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1015, + "endColumn": 107, + "endOffset": 1118 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1255, + "endColumn": 107, + "endOffset": 1358 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1123, + "endColumn": 102, + "endOffset": 1221 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1363, + "endColumn": 102, + "endOffset": 1461 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1226, + "endColumn": 106, + "endOffset": 1328 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1466, + "endColumn": 106, + "endOffset": 1568 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1333, + "endColumn": 121, + "endOffset": 1450 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-gl-rES/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1573, + "endColumn": 121, + "endOffset": 1690 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json new file mode 100644 index 0000000..76615f1 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 66, + "endOffset": 117 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-h720dp-v13/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 294, + "endColumn": 66, + "endOffset": 356 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json new file mode 100644 index 0000000..fb1cb26 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json @@ -0,0 +1,28 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 6, + "endColumn": 13, + "endOffset": 325 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hdpi-v4/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 297, + "endLine": 8, + "endColumn": 13, + "endOffset": 567 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-hi.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-hi.json new file mode 100644 index 0000000..3583abd --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-hi.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 114, + "endOffset": 165 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 114, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 104, + "endOffset": 270 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 104, + "endOffset": 506 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 275, + "endColumn": 106, + "endOffset": 377 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 511, + "endColumn": 106, + "endOffset": 613 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 382, + "endColumn": 84, + "endOffset": 462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 618, + "endColumn": 84, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 467, + "endColumn": 101, + "endOffset": 564 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 101, + "endOffset": 800 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 569, + "endColumn": 121, + "endOffset": 686 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 805, + "endColumn": 121, + "endOffset": 922 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 691, + "endColumn": 108, + "endOffset": 795 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 927, + "endColumn": 108, + "endOffset": 1031 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 800, + "endColumn": 101, + "endOffset": 897 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1036, + "endColumn": 101, + "endOffset": 1133 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 902, + "endColumn": 97, + "endOffset": 995 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1138, + "endColumn": 97, + "endOffset": 1231 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 109, + "endOffset": 1105 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1236, + "endColumn": 109, + "endOffset": 1341 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1110, + "endColumn": 99, + "endOffset": 1205 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 99, + "endOffset": 1441 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1210, + "endColumn": 114, + "endOffset": 1320 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1446, + "endColumn": 114, + "endOffset": 1556 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1325, + "endColumn": 124, + "endOffset": 1445 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hi/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1561, + "endColumn": 124, + "endOffset": 1681 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-hr.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-hr.json new file mode 100644 index 0000000..5abfbb1 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-hr.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 104, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 96, + "endOffset": 252 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 96, + "endOffset": 488 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 257, + "endColumn": 109, + "endOffset": 362 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 493, + "endColumn": 109, + "endOffset": 598 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 367, + "endColumn": 85, + "endOffset": 448 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 603, + "endColumn": 85, + "endOffset": 684 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 453, + "endColumn": 103, + "endOffset": 552 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 689, + "endColumn": 103, + "endOffset": 788 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 557, + "endColumn": 118, + "endOffset": 671 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 793, + "endColumn": 118, + "endOffset": 907 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 676, + "endColumn": 103, + "endOffset": 775 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 103, + "endOffset": 1011 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 780, + "endColumn": 112, + "endOffset": 888 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1016, + "endColumn": 112, + "endOffset": 1124 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 893, + "endColumn": 105, + "endOffset": 994 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1129, + "endColumn": 105, + "endOffset": 1230 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 999, + "endColumn": 104, + "endOffset": 1099 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 104, + "endOffset": 1335 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 112, + "endOffset": 1212 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1340, + "endColumn": 112, + "endOffset": 1448 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1217, + "endColumn": 106, + "endOffset": 1319 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1453, + "endColumn": 106, + "endOffset": 1555 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1324, + "endColumn": 122, + "endOffset": 1442 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hr/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1560, + "endColumn": 122, + "endOffset": 1678 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-hu.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-hu.json new file mode 100644 index 0000000..767ae74 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-hu.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 107, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 104, + "endOffset": 263 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 104, + "endOffset": 499 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 114, + "endOffset": 378 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 114, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 383, + "endColumn": 83, + "endOffset": 462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 83, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 467, + "endColumn": 111, + "endOffset": 574 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 111, + "endOffset": 810 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 579, + "endColumn": 129, + "endOffset": 704 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 815, + "endColumn": 129, + "endOffset": 940 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 109, + "endOffset": 814 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 109, + "endOffset": 1050 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 819, + "endColumn": 110, + "endOffset": 925 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1055, + "endColumn": 110, + "endOffset": 1161 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 930, + "endColumn": 99, + "endOffset": 1025 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1166, + "endColumn": 99, + "endOffset": 1261 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1030, + "endColumn": 110, + "endOffset": 1136 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 110, + "endOffset": 1372 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1141, + "endColumn": 107, + "endOffset": 1244 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 107, + "endOffset": 1480 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1249, + "endColumn": 118, + "endOffset": 1363 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1485, + "endColumn": 118, + "endOffset": 1599 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1368, + "endColumn": 133, + "endOffset": 1497 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hu/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1604, + "endColumn": 133, + "endOffset": 1733 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-hy-rAM.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-hy-rAM.json new file mode 100644 index 0000000..53fa44c --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-hy-rAM.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 102, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 100, + "endOffset": 254 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 100, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 259, + "endColumn": 109, + "endOffset": 364 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 109, + "endOffset": 604 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 369, + "endColumn": 89, + "endOffset": 454 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 609, + "endColumn": 89, + "endOffset": 694 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 459, + "endColumn": 105, + "endOffset": 560 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 699, + "endColumn": 105, + "endOffset": 800 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 565, + "endColumn": 114, + "endOffset": 675 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 805, + "endColumn": 114, + "endOffset": 915 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 680, + "endColumn": 106, + "endOffset": 782 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 920, + "endColumn": 106, + "endOffset": 1022 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 787, + "endColumn": 106, + "endOffset": 889 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1027, + "endColumn": 106, + "endOffset": 1129 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 894, + "endColumn": 98, + "endOffset": 988 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1134, + "endColumn": 98, + "endOffset": 1228 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 993, + "endColumn": 109, + "endOffset": 1098 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1233, + "endColumn": 109, + "endOffset": 1338 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1103, + "endColumn": 106, + "endOffset": 1205 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1343, + "endColumn": 106, + "endOffset": 1445 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1210, + "endColumn": 100, + "endOffset": 1306 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1450, + "endColumn": 100, + "endOffset": 1546 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1311, + "endColumn": 119, + "endOffset": 1426 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-hy-rAM/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1551, + "endColumn": 119, + "endOffset": 1666 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-in.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-in.json new file mode 100644 index 0000000..ffbb9b6 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-in.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 109, + "endOffset": 396 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 101, + "endOffset": 262 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 401, + "endColumn": 101, + "endOffset": 498 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 104, + "endOffset": 367 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 104, + "endOffset": 603 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 372, + "endColumn": 86, + "endOffset": 454 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 608, + "endColumn": 86, + "endOffset": 690 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 459, + "endColumn": 103, + "endOffset": 558 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 103, + "endOffset": 794 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 563, + "endColumn": 115, + "endOffset": 674 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 799, + "endColumn": 115, + "endOffset": 910 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 679, + "endColumn": 102, + "endOffset": 777 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 915, + "endColumn": 102, + "endOffset": 1013 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 108, + "endOffset": 886 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1018, + "endColumn": 108, + "endOffset": 1122 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 891, + "endColumn": 100, + "endOffset": 987 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1127, + "endColumn": 100, + "endOffset": 1223 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 992, + "endColumn": 103, + "endOffset": 1091 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1228, + "endColumn": 103, + "endOffset": 1327 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1096, + "endColumn": 107, + "endOffset": 1199 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1332, + "endColumn": 107, + "endOffset": 1435 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1204, + "endColumn": 107, + "endOffset": 1307 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1440, + "endColumn": 107, + "endOffset": 1543 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1312, + "endColumn": 122, + "endOffset": 1430 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-in/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1548, + "endColumn": 122, + "endOffset": 1666 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-is-rIS.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-is-rIS.json new file mode 100644 index 0000000..1885e93 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-is-rIS.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 99, + "endOffset": 150 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 99, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 155, + "endColumn": 96, + "endOffset": 247 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 96, + "endOffset": 487 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 252, + "endColumn": 111, + "endOffset": 359 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 492, + "endColumn": 111, + "endOffset": 599 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 364, + "endColumn": 84, + "endOffset": 444 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 84, + "endOffset": 684 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 449, + "endColumn": 100, + "endOffset": 545 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 689, + "endColumn": 100, + "endOffset": 785 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 550, + "endColumn": 113, + "endOffset": 659 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 790, + "endColumn": 113, + "endOffset": 899 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 664, + "endColumn": 109, + "endOffset": 769 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 904, + "endColumn": 109, + "endOffset": 1009 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 774, + "endColumn": 107, + "endOffset": 877 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 107, + "endOffset": 1117 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 882, + "endColumn": 97, + "endOffset": 975 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 97, + "endOffset": 1215 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 980, + "endColumn": 108, + "endOffset": 1084 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1220, + "endColumn": 108, + "endOffset": 1324 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1089, + "endColumn": 98, + "endOffset": 1183 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1329, + "endColumn": 98, + "endOffset": 1423 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1188, + "endColumn": 102, + "endOffset": 1286 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1428, + "endColumn": 102, + "endOffset": 1526 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1291, + "endColumn": 117, + "endOffset": 1404 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-is-rIS/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1531, + "endColumn": 117, + "endOffset": 1644 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-it.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-it.json new file mode 100644 index 0000000..70f37bb --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-it.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 108, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 99, + "endOffset": 259 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 99, + "endOffset": 495 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 264, + "endColumn": 108, + "endOffset": 368 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 500, + "endColumn": 108, + "endOffset": 604 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 373, + "endColumn": 83, + "endOffset": 452 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 609, + "endColumn": 83, + "endOffset": 688 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 457, + "endColumn": 108, + "endOffset": 561 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 693, + "endColumn": 108, + "endOffset": 797 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 566, + "endColumn": 124, + "endOffset": 686 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 802, + "endColumn": 124, + "endOffset": 922 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 691, + "endColumn": 105, + "endOffset": 792 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 927, + "endColumn": 105, + "endOffset": 1028 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 107, + "endOffset": 900 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1033, + "endColumn": 107, + "endOffset": 1136 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 905, + "endColumn": 97, + "endOffset": 998 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1141, + "endColumn": 97, + "endOffset": 1234 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1003, + "endColumn": 103, + "endOffset": 1102 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1239, + "endColumn": 103, + "endOffset": 1338 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1107, + "endColumn": 104, + "endOffset": 1207 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1343, + "endColumn": 104, + "endOffset": 1443 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1212, + "endColumn": 106, + "endOffset": 1314 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1448, + "endColumn": 106, + "endOffset": 1550 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1319, + "endColumn": 121, + "endOffset": 1436 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-it/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1555, + "endColumn": 121, + "endOffset": 1672 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-iw.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-iw.json new file mode 100644 index 0000000..af448ac --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-iw.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 103, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 98, + "endOffset": 253 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 98, + "endOffset": 489 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 107, + "endOffset": 361 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 107, + "endOffset": 597 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 366, + "endColumn": 83, + "endOffset": 445 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 83, + "endOffset": 681 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 450, + "endColumn": 100, + "endOffset": 546 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 100, + "endOffset": 782 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 551, + "endColumn": 113, + "endOffset": 660 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 787, + "endColumn": 113, + "endOffset": 896 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 665, + "endColumn": 101, + "endOffset": 762 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 901, + "endColumn": 101, + "endOffset": 998 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 767, + "endColumn": 103, + "endOffset": 866 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1003, + "endColumn": 103, + "endOffset": 1102 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 871, + "endColumn": 95, + "endOffset": 962 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1107, + "endColumn": 95, + "endOffset": 1198 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 967, + "endColumn": 102, + "endOffset": 1065 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1203, + "endColumn": 102, + "endOffset": 1301 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1070, + "endColumn": 100, + "endOffset": 1166 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1306, + "endColumn": 100, + "endOffset": 1402 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1171, + "endColumn": 99, + "endOffset": 1266 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1407, + "endColumn": 99, + "endOffset": 1502 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1271, + "endColumn": 115, + "endOffset": 1382 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-iw/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1507, + "endColumn": 115, + "endOffset": 1618 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-ja.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ja.json new file mode 100644 index 0000000..8dd1725 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ja.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 96, + "endOffset": 147 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 96, + "endOffset": 383 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 152, + "endColumn": 92, + "endOffset": 240 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 388, + "endColumn": 92, + "endOffset": 476 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 245, + "endColumn": 104, + "endOffset": 345 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 481, + "endColumn": 104, + "endOffset": 581 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 350, + "endColumn": 81, + "endOffset": 427 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 586, + "endColumn": 81, + "endOffset": 663 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 432, + "endColumn": 97, + "endOffset": 525 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 668, + "endColumn": 97, + "endOffset": 761 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 530, + "endColumn": 107, + "endOffset": 633 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 766, + "endColumn": 107, + "endOffset": 869 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 638, + "endColumn": 101, + "endOffset": 735 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 874, + "endColumn": 101, + "endOffset": 971 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 740, + "endColumn": 98, + "endOffset": 834 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 976, + "endColumn": 98, + "endOffset": 1070 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 839, + "endColumn": 94, + "endOffset": 929 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1075, + "endColumn": 94, + "endOffset": 1165 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 934, + "endColumn": 102, + "endOffset": 1032 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1170, + "endColumn": 102, + "endOffset": 1268 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1037, + "endColumn": 94, + "endOffset": 1127 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1273, + "endColumn": 94, + "endOffset": 1363 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 95, + "endOffset": 1223 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1368, + "endColumn": 95, + "endOffset": 1459 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1228, + "endColumn": 110, + "endOffset": 1334 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ja/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1464, + "endColumn": 110, + "endOffset": 1570 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-ka-rGE.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ka-rGE.json new file mode 100644 index 0000000..cc7603f --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ka-rGE.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 108, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 103, + "endOffset": 263 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 103, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 110, + "endOffset": 374 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 110, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 379, + "endColumn": 87, + "endOffset": 462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 87, + "endOffset": 702 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 467, + "endColumn": 104, + "endOffset": 567 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 104, + "endOffset": 807 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 572, + "endColumn": 112, + "endOffset": 680 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 112, + "endOffset": 920 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 685, + "endColumn": 112, + "endOffset": 793 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 925, + "endColumn": 112, + "endOffset": 1033 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 106, + "endOffset": 900 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1038, + "endColumn": 106, + "endOffset": 1140 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 905, + "endColumn": 97, + "endOffset": 998 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1145, + "endColumn": 97, + "endOffset": 1238 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1003, + "endColumn": 112, + "endOffset": 1111 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1243, + "endColumn": 112, + "endOffset": 1351 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1116, + "endColumn": 103, + "endOffset": 1215 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 103, + "endOffset": 1455 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1220, + "endColumn": 103, + "endOffset": 1319 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1460, + "endColumn": 103, + "endOffset": 1559 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1324, + "endColumn": 121, + "endOffset": 1441 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ka-rGE/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1564, + "endColumn": 121, + "endOffset": 1681 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json new file mode 100644 index 0000000..64bf3af --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 111, + "endOffset": 162 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 111, + "endOffset": 402 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 167, + "endColumn": 102, + "endOffset": 265 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 407, + "endColumn": 102, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 270, + "endColumn": 109, + "endOffset": 375 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 109, + "endOffset": 615 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 380, + "endColumn": 88, + "endOffset": 464 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 88, + "endOffset": 704 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 469, + "endColumn": 105, + "endOffset": 570 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 105, + "endOffset": 810 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 575, + "endColumn": 118, + "endOffset": 689 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 815, + "endColumn": 118, + "endOffset": 929 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 694, + "endColumn": 102, + "endOffset": 792 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 934, + "endColumn": 102, + "endOffset": 1032 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 104, + "endOffset": 897 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1037, + "endColumn": 104, + "endOffset": 1137 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 902, + "endColumn": 97, + "endOffset": 995 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1142, + "endColumn": 97, + "endOffset": 1235 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 106, + "endOffset": 1102 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1240, + "endColumn": 106, + "endOffset": 1342 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1107, + "endColumn": 108, + "endOffset": 1211 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1347, + "endColumn": 108, + "endOffset": 1451 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1216, + "endColumn": 99, + "endOffset": 1311 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1456, + "endColumn": 99, + "endOffset": 1551 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1316, + "endColumn": 114, + "endOffset": 1426 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kk-rKZ/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1556, + "endColumn": 114, + "endOffset": 1666 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-km-rKH.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-km-rKH.json new file mode 100644 index 0000000..bf8cb8d --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-km-rKH.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 102, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 99, + "endOffset": 253 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 99, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 111, + "endOffset": 365 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 111, + "endOffset": 605 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 370, + "endColumn": 86, + "endOffset": 452 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 610, + "endColumn": 86, + "endOffset": 692 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 457, + "endColumn": 103, + "endOffset": 556 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 697, + "endColumn": 103, + "endOffset": 796 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 561, + "endColumn": 117, + "endOffset": 674 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 117, + "endOffset": 914 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 679, + "endColumn": 103, + "endOffset": 778 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 919, + "endColumn": 103, + "endOffset": 1018 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 783, + "endColumn": 104, + "endOffset": 883 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1023, + "endColumn": 104, + "endOffset": 1123 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 888, + "endColumn": 99, + "endOffset": 983 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1128, + "endColumn": 99, + "endOffset": 1223 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 988, + "endColumn": 109, + "endOffset": 1093 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1228, + "endColumn": 109, + "endOffset": 1333 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1098, + "endColumn": 106, + "endOffset": 1200 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1338, + "endColumn": 106, + "endOffset": 1440 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1205, + "endColumn": 107, + "endOffset": 1308 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1445, + "endColumn": 107, + "endOffset": 1548 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1313, + "endColumn": 122, + "endOffset": 1431 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-km-rKH/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1553, + "endColumn": 122, + "endOffset": 1671 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-kn-rIN.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-kn-rIN.json new file mode 100644 index 0000000..4d9ad14 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-kn-rIN.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 117, + "endOffset": 408 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 111, + "endOffset": 280 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 413, + "endColumn": 111, + "endOffset": 520 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 285, + "endColumn": 112, + "endOffset": 393 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 525, + "endColumn": 112, + "endOffset": 633 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 87, + "endOffset": 481 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 638, + "endColumn": 87, + "endOffset": 721 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 486, + "endColumn": 106, + "endOffset": 588 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 726, + "endColumn": 106, + "endOffset": 828 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 126, + "endOffset": 715 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 833, + "endColumn": 126, + "endOffset": 955 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 720, + "endColumn": 115, + "endOffset": 831 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 960, + "endColumn": 115, + "endOffset": 1071 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 836, + "endColumn": 110, + "endOffset": 942 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1076, + "endColumn": 110, + "endOffset": 1182 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 947, + "endColumn": 98, + "endOffset": 1041 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1187, + "endColumn": 98, + "endOffset": 1281 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 112, + "endOffset": 1154 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1286, + "endColumn": 112, + "endOffset": 1394 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1159, + "endColumn": 103, + "endOffset": 1258 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1399, + "endColumn": 103, + "endOffset": 1498 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1263, + "endColumn": 113, + "endOffset": 1372 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1503, + "endColumn": 113, + "endOffset": 1612 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 125, + "endOffset": 1498 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-kn-rIN/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1617, + "endColumn": 125, + "endOffset": 1738 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-ko.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ko.json new file mode 100644 index 0000000..8cae1df --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ko.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 94, + "endOffset": 381 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 93, + "endOffset": 239 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 386, + "endColumn": 93, + "endOffset": 475 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 244, + "endColumn": 101, + "endOffset": 341 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 480, + "endColumn": 101, + "endOffset": 577 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 346, + "endColumn": 81, + "endOffset": 423 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 582, + "endColumn": 81, + "endOffset": 659 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 428, + "endColumn": 97, + "endOffset": 521 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 664, + "endColumn": 97, + "endOffset": 757 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 526, + "endColumn": 105, + "endOffset": 627 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 762, + "endColumn": 105, + "endOffset": 863 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 632, + "endColumn": 97, + "endOffset": 725 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 868, + "endColumn": 97, + "endOffset": 961 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 730, + "endColumn": 94, + "endOffset": 820 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 966, + "endColumn": 94, + "endOffset": 1056 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 825, + "endColumn": 94, + "endOffset": 915 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1061, + "endColumn": 94, + "endOffset": 1151 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 920, + "endColumn": 99, + "endOffset": 1015 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 99, + "endOffset": 1251 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1020, + "endColumn": 95, + "endOffset": 1111 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1256, + "endColumn": 95, + "endOffset": 1347 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1116, + "endColumn": 98, + "endOffset": 1210 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1352, + "endColumn": 98, + "endOffset": 1446 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1215, + "endColumn": 114, + "endOffset": 1325 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ko/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1451, + "endColumn": 114, + "endOffset": 1561 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-ky-rKG.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ky-rKG.json new file mode 100644 index 0000000..31aa4a6 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ky-rKG.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 103, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 94, + "endOffset": 249 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 94, + "endOffset": 489 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 254, + "endColumn": 118, + "endOffset": 368 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 118, + "endOffset": 608 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 373, + "endColumn": 83, + "endOffset": 452 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 613, + "endColumn": 83, + "endOffset": 692 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 457, + "endColumn": 106, + "endOffset": 559 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 697, + "endColumn": 106, + "endOffset": 799 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 564, + "endColumn": 116, + "endOffset": 676 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 804, + "endColumn": 116, + "endOffset": 916 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 109, + "endOffset": 786 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 109, + "endOffset": 1026 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 791, + "endColumn": 106, + "endOffset": 893 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1031, + "endColumn": 106, + "endOffset": 1133 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 898, + "endColumn": 97, + "endOffset": 991 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1138, + "endColumn": 97, + "endOffset": 1231 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 996, + "endColumn": 105, + "endOffset": 1097 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1236, + "endColumn": 105, + "endOffset": 1337 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1102, + "endColumn": 106, + "endOffset": 1204 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1342, + "endColumn": 106, + "endOffset": 1444 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1209, + "endColumn": 100, + "endOffset": 1305 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1449, + "endColumn": 100, + "endOffset": 1545 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1310, + "endColumn": 123, + "endOffset": 1429 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ky-rKG/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1550, + "endColumn": 123, + "endOffset": 1669 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-land.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-land.json new file mode 100644 index 0000000..c090b11 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-land.json @@ -0,0 +1,140 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-land/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 61, + "endOffset": 348 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-land/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 590, + "endColumn": 71, + "endOffset": 657 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 189, + "endColumn": 69, + "endOffset": 254 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-land/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 908, + "endColumn": 69, + "endOffset": 973 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 259, + "endColumn": 69, + "endOffset": 324 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-land/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 69, + "endOffset": 1043 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 63, + "endOffset": 388 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-land/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1285, + "endColumn": 63, + "endOffset": 1344 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 393, + "endColumn": 70, + "endOffset": 459 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-land/values.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1595, + "endColumn": 70, + "endOffset": 1661 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 464, + "endColumn": 67, + "endOffset": 527 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-land/values.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1666, + "endColumn": 67, + "endOffset": 1729 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-large-v4.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-large-v4.json new file mode 100644 index 0000000..54cbcb4 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-large-v4.json @@ -0,0 +1,216 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 292, + "endColumn": 61, + "endOffset": 349 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 592, + "endColumn": 71, + "endOffset": 659 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 189, + "endColumn": 58, + "endOffset": 243 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 664, + "endColumn": 58, + "endOffset": 718 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 248, + "endColumn": 63, + "endOffset": 307 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 961, + "endColumn": 63, + "endOffset": 1020 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 312, + "endColumn": 66, + "endOffset": 374 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1025, + "endColumn": 66, + "endOffset": 1087 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 379, + "endColumn": 66, + "endOffset": 441 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 66, + "endOffset": 1154 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 446, + "endColumn": 65, + "endOffset": 507 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1159, + "endColumn": 65, + "endOffset": 1220 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 512, + "endColumn": 65, + "endOffset": 573 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1225, + "endColumn": 65, + "endOffset": 1286 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 578, + "endColumn": 54, + "endOffset": 628 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1291, + "endColumn": 54, + "endOffset": 1341 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 633, + "endColumn": 103, + "endOffset": 732 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1589, + "endColumn": 103, + "endOffset": 1688 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 737, + "endColumn": 115, + "endOffset": 848 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-large-v4/values.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1693, + "endColumn": 115, + "endOffset": 1804 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-lo-rLA.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-lo-rLA.json new file mode 100644 index 0000000..50e8881 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-lo-rLA.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lo-rLA/values-lo-rLA.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 102, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 96, + "endOffset": 250 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 96, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 255, + "endColumn": 106, + "endOffset": 357 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 106, + "endOffset": 597 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 362, + "endColumn": 84, + "endOffset": 442 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 84, + "endOffset": 682 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 447, + "endColumn": 104, + "endOffset": 547 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 687, + "endColumn": 104, + "endOffset": 787 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 552, + "endColumn": 111, + "endOffset": 659 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 792, + "endColumn": 111, + "endOffset": 899 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 664, + "endColumn": 106, + "endOffset": 766 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 904, + "endColumn": 106, + "endOffset": 1006 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 771, + "endColumn": 96, + "endOffset": 863 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1011, + "endColumn": 96, + "endOffset": 1103 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 868, + "endColumn": 97, + "endOffset": 961 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1108, + "endColumn": 97, + "endOffset": 1201 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 966, + "endColumn": 104, + "endOffset": 1066 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1206, + "endColumn": 104, + "endOffset": 1306 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1071, + "endColumn": 102, + "endOffset": 1169 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1311, + "endColumn": 102, + "endOffset": 1409 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1174, + "endColumn": 103, + "endOffset": 1273 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1414, + "endColumn": 103, + "endOffset": 1513 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 121, + "endOffset": 1395 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lo-rLA/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1518, + "endColumn": 121, + "endOffset": 1635 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-lt.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-lt.json new file mode 100644 index 0000000..4e13954 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-lt.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lt/values-lt.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 115, + "endOffset": 166 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 115, + "endOffset": 402 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 171, + "endColumn": 100, + "endOffset": 267 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 407, + "endColumn": 100, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 112, + "endOffset": 380 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 112, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 385, + "endColumn": 86, + "endOffset": 467 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 86, + "endOffset": 703 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 472, + "endColumn": 108, + "endOffset": 576 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 108, + "endOffset": 812 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 581, + "endColumn": 120, + "endOffset": 697 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 817, + "endColumn": 120, + "endOffset": 933 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 702, + "endColumn": 108, + "endOffset": 806 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 938, + "endColumn": 108, + "endOffset": 1042 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 811, + "endColumn": 108, + "endOffset": 915 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1047, + "endColumn": 108, + "endOffset": 1151 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 920, + "endColumn": 99, + "endOffset": 1015 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 99, + "endOffset": 1251 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1020, + "endColumn": 109, + "endOffset": 1125 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1256, + "endColumn": 109, + "endOffset": 1361 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1130, + "endColumn": 103, + "endOffset": 1229 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1366, + "endColumn": 103, + "endOffset": 1465 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1234, + "endColumn": 112, + "endOffset": 1342 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1470, + "endColumn": 112, + "endOffset": 1578 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1347, + "endColumn": 129, + "endOffset": 1472 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lt/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1583, + "endColumn": 129, + "endOffset": 1708 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-lv.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-lv.json new file mode 100644 index 0000000..b94bcd8 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-lv.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lv/values-lv.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 119, + "endOffset": 406 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 411, + "endColumn": 107, + "endOffset": 514 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 108, + "endOffset": 387 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 519, + "endColumn": 108, + "endOffset": 623 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 85, + "endOffset": 473 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 628, + "endColumn": 85, + "endOffset": 709 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 478, + "endColumn": 103, + "endOffset": 577 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 714, + "endColumn": 103, + "endOffset": 813 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 582, + "endColumn": 121, + "endOffset": 699 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 818, + "endColumn": 121, + "endOffset": 935 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 704, + "endColumn": 108, + "endOffset": 808 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 940, + "endColumn": 108, + "endOffset": 1044 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 813, + "endColumn": 111, + "endOffset": 920 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1049, + "endColumn": 111, + "endOffset": 1156 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 925, + "endColumn": 98, + "endOffset": 1019 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1161, + "endColumn": 98, + "endOffset": 1255 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1024, + "endColumn": 110, + "endOffset": 1130 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 110, + "endOffset": 1366 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1135, + "endColumn": 108, + "endOffset": 1239 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1371, + "endColumn": 108, + "endOffset": 1475 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1244, + "endColumn": 104, + "endOffset": 1344 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1480, + "endColumn": 104, + "endOffset": 1580 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1349, + "endColumn": 118, + "endOffset": 1463 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-lv/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1585, + "endColumn": 118, + "endOffset": 1699 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-mk-rMK.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-mk-rMK.json new file mode 100644 index 0000000..6724cf8 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-mk-rMK.json @@ -0,0 +1,235 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mk-rMK/values-mk-rMK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 107, + "endOffset": 398 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 103, + "endOffset": 262 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 103, + "endOffset": 502 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 107, + "endOffset": 370 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 507, + "endColumn": 107, + "endOffset": 610 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 375, + "endColumn": 85, + "endOffset": 456 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 85, + "endOffset": 696 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 461, + "endColumn": 104, + "endOffset": 561 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 701, + "endColumn": 104, + "endOffset": 801 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 566, + "endColumn": 118, + "endOffset": 680 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 806, + "endColumn": 118, + "endOffset": 920 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 685, + "endColumn": 105, + "endOffset": 786 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 925, + "endColumn": 105, + "endOffset": 1026 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 791, + "endColumn": 106, + "endOffset": 893 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1031, + "endColumn": 106, + "endOffset": 1133 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 898, + "endColumn": 100, + "endOffset": 994 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1138, + "endColumn": 100, + "endOffset": 1234 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 999, + "endColumn": 106, + "endOffset": 1101 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1239, + "endColumn": 106, + "endOffset": 1341 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1106, + "endColumn": 110, + "endOffset": 1212 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 110, + "endOffset": 1452 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1217, + "endColumn": 103, + "endOffset": 1316 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mk-rMK/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1457, + "endColumn": 103, + "endOffset": 1556 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-ml-rIN.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ml-rIN.json new file mode 100644 index 0000000..517900c --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ml-rIN.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ml-rIN/values-ml-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 118, + "endOffset": 169 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 118, + "endOffset": 409 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 174, + "endColumn": 117, + "endOffset": 287 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 414, + "endColumn": 117, + "endOffset": 527 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 292, + "endColumn": 115, + "endOffset": 403 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 532, + "endColumn": 115, + "endOffset": 643 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 408, + "endColumn": 92, + "endOffset": 496 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 648, + "endColumn": 92, + "endOffset": 736 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 501, + "endColumn": 104, + "endOffset": 601 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 741, + "endColumn": 104, + "endOffset": 841 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 131, + "endOffset": 733 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 846, + "endColumn": 131, + "endOffset": 973 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 738, + "endColumn": 110, + "endOffset": 844 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 978, + "endColumn": 110, + "endOffset": 1084 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 849, + "endColumn": 105, + "endOffset": 950 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1089, + "endColumn": 105, + "endOffset": 1190 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 955, + "endColumn": 97, + "endOffset": 1048 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1195, + "endColumn": 97, + "endOffset": 1288 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1053, + "endColumn": 113, + "endOffset": 1162 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1293, + "endColumn": 113, + "endOffset": 1402 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1167, + "endColumn": 103, + "endOffset": 1266 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1407, + "endColumn": 103, + "endOffset": 1506 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1271, + "endColumn": 110, + "endOffset": 1377 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1511, + "endColumn": 110, + "endOffset": 1617 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1382, + "endColumn": 127, + "endOffset": 1505 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ml-rIN/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1622, + "endColumn": 127, + "endOffset": 1745 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-mn-rMN.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-mn-rMN.json new file mode 100644 index 0000000..b9b8bcc --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-mn-rMN.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mn-rMN/values-mn-rMN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 112, + "endOffset": 163 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 112, + "endOffset": 403 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 168, + "endColumn": 99, + "endOffset": 263 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 408, + "endColumn": 99, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 112, + "endOffset": 376 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 112, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 381, + "endColumn": 86, + "endOffset": 463 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 86, + "endOffset": 703 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 468, + "endColumn": 105, + "endOffset": 569 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 105, + "endOffset": 809 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 574, + "endColumn": 111, + "endOffset": 681 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 814, + "endColumn": 111, + "endOffset": 921 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 108, + "endOffset": 790 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 926, + "endColumn": 108, + "endOffset": 1030 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 103, + "endOffset": 894 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1035, + "endColumn": 103, + "endOffset": 1134 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 899, + "endColumn": 96, + "endOffset": 991 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1139, + "endColumn": 96, + "endOffset": 1231 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 996, + "endColumn": 107, + "endOffset": 1099 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1236, + "endColumn": 107, + "endOffset": 1339 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 100, + "endOffset": 1200 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1344, + "endColumn": 100, + "endOffset": 1440 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1205, + "endColumn": 102, + "endOffset": 1303 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1445, + "endColumn": 102, + "endOffset": 1543 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1308, + "endColumn": 121, + "endOffset": 1425 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mn-rMN/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1548, + "endColumn": 121, + "endOffset": 1665 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-mr-rIN.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-mr-rIN.json new file mode 100644 index 0000000..2a9e0f5 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-mr-rIN.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mr-rIN/values-mr-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 117, + "endOffset": 408 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 105, + "endOffset": 274 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 413, + "endColumn": 105, + "endOffset": 514 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 279, + "endColumn": 106, + "endOffset": 381 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 519, + "endColumn": 106, + "endOffset": 621 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 386, + "endColumn": 89, + "endOffset": 471 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 626, + "endColumn": 89, + "endOffset": 711 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 476, + "endColumn": 100, + "endOffset": 572 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 716, + "endColumn": 100, + "endOffset": 812 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 577, + "endColumn": 114, + "endOffset": 687 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 817, + "endColumn": 114, + "endOffset": 927 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 111, + "endOffset": 799 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 932, + "endColumn": 111, + "endOffset": 1039 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 804, + "endColumn": 101, + "endOffset": 901 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1044, + "endColumn": 101, + "endOffset": 1141 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 906, + "endColumn": 95, + "endOffset": 997 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1146, + "endColumn": 95, + "endOffset": 1237 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1002, + "endColumn": 108, + "endOffset": 1106 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1242, + "endColumn": 108, + "endOffset": 1346 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1111, + "endColumn": 100, + "endOffset": 1207 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1351, + "endColumn": 100, + "endOffset": 1447 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1212, + "endColumn": 114, + "endOffset": 1322 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1452, + "endColumn": 114, + "endOffset": 1562 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1327, + "endColumn": 122, + "endOffset": 1445 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-mr-rIN/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1567, + "endColumn": 122, + "endOffset": 1685 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-ms-rMY.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ms-rMY.json new file mode 100644 index 0000000..68731ed --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ms-rMY.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ms-rMY/values-ms-rMY.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 110, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 104, + "endOffset": 266 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 104, + "endOffset": 506 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 107, + "endOffset": 374 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 511, + "endColumn": 107, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 379, + "endColumn": 86, + "endOffset": 461 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 86, + "endOffset": 701 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 466, + "endColumn": 103, + "endOffset": 565 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 706, + "endColumn": 103, + "endOffset": 805 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 570, + "endColumn": 110, + "endOffset": 676 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 110, + "endOffset": 916 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 111, + "endOffset": 788 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 111, + "endOffset": 1028 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 793, + "endColumn": 108, + "endOffset": 897 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1033, + "endColumn": 108, + "endOffset": 1137 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 902, + "endColumn": 96, + "endOffset": 994 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1142, + "endColumn": 96, + "endOffset": 1234 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 999, + "endColumn": 108, + "endOffset": 1103 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1239, + "endColumn": 108, + "endOffset": 1343 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1108, + "endColumn": 102, + "endOffset": 1206 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1348, + "endColumn": 102, + "endOffset": 1446 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1211, + "endColumn": 106, + "endOffset": 1313 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1451, + "endColumn": 106, + "endOffset": 1553 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1318, + "endColumn": 121, + "endOffset": 1435 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ms-rMY/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1558, + "endColumn": 121, + "endOffset": 1675 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-my-rMM.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-my-rMM.json new file mode 100644 index 0000000..904dd5d --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-my-rMM.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-my-rMM/values-my-rMM.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 108, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 104, + "endOffset": 264 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 104, + "endOffset": 504 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 269, + "endColumn": 116, + "endOffset": 381 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 509, + "endColumn": 116, + "endOffset": 621 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 386, + "endColumn": 92, + "endOffset": 474 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 626, + "endColumn": 92, + "endOffset": 714 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 479, + "endColumn": 111, + "endOffset": 586 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 719, + "endColumn": 111, + "endOffset": 826 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 591, + "endColumn": 135, + "endOffset": 722 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 831, + "endColumn": 135, + "endOffset": 962 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 727, + "endColumn": 124, + "endOffset": 847 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 967, + "endColumn": 124, + "endOffset": 1087 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 852, + "endColumn": 111, + "endOffset": 959 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 111, + "endOffset": 1199 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 964, + "endColumn": 101, + "endOffset": 1061 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1204, + "endColumn": 101, + "endOffset": 1301 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1066, + "endColumn": 125, + "endOffset": 1187 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1306, + "endColumn": 125, + "endOffset": 1427 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1192, + "endColumn": 110, + "endOffset": 1298 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1432, + "endColumn": 110, + "endOffset": 1538 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1303, + "endColumn": 109, + "endOffset": 1408 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1543, + "endColumn": 109, + "endOffset": 1648 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1413, + "endColumn": 122, + "endOffset": 1531 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-my-rMM/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1653, + "endColumn": 122, + "endOffset": 1771 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-nb.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-nb.json new file mode 100644 index 0000000..53b664c --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-nb.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nb/values-nb.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 107, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 94, + "endOffset": 253 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 94, + "endOffset": 489 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 113, + "endOffset": 367 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 113, + "endOffset": 603 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 372, + "endColumn": 85, + "endOffset": 453 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 608, + "endColumn": 85, + "endOffset": 689 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 458, + "endColumn": 99, + "endOffset": 553 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 694, + "endColumn": 99, + "endOffset": 789 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 558, + "endColumn": 112, + "endOffset": 666 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 112, + "endOffset": 902 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 671, + "endColumn": 102, + "endOffset": 769 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 102, + "endOffset": 1005 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 774, + "endColumn": 98, + "endOffset": 868 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 98, + "endOffset": 1104 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 873, + "endColumn": 95, + "endOffset": 964 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1109, + "endColumn": 95, + "endOffset": 1200 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 969, + "endColumn": 103, + "endOffset": 1068 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1205, + "endColumn": 103, + "endOffset": 1304 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 97, + "endOffset": 1166 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1309, + "endColumn": 97, + "endOffset": 1402 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1171, + "endColumn": 100, + "endOffset": 1267 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1407, + "endColumn": 100, + "endOffset": 1503 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1272, + "endColumn": 115, + "endOffset": 1383 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nb/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1508, + "endColumn": 115, + "endOffset": 1619 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-ne-rNP.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ne-rNP.json new file mode 100644 index 0000000..a376f3b --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ne-rNP.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ne-rNP/values-ne-rNP.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 104, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 103, + "endOffset": 259 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 103, + "endOffset": 499 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 264, + "endColumn": 107, + "endOffset": 367 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 107, + "endOffset": 607 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 372, + "endColumn": 90, + "endOffset": 458 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 90, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 463, + "endColumn": 106, + "endOffset": 565 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 106, + "endOffset": 805 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 570, + "endColumn": 126, + "endOffset": 692 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 126, + "endOffset": 932 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 697, + "endColumn": 109, + "endOffset": 802 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 937, + "endColumn": 109, + "endOffset": 1042 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 807, + "endColumn": 115, + "endOffset": 918 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1047, + "endColumn": 115, + "endOffset": 1158 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 923, + "endColumn": 102, + "endOffset": 1021 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 102, + "endOffset": 1261 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1026, + "endColumn": 114, + "endOffset": 1136 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 114, + "endOffset": 1376 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1141, + "endColumn": 101, + "endOffset": 1238 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1381, + "endColumn": 101, + "endOffset": 1478 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1243, + "endColumn": 114, + "endOffset": 1353 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1483, + "endColumn": 114, + "endOffset": 1593 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1358, + "endColumn": 130, + "endOffset": 1484 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ne-rNP/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1598, + "endColumn": 130, + "endOffset": 1724 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-nl.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-nl.json new file mode 100644 index 0000000..43dfdea --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-nl.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nl/values-nl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 117, + "endOffset": 404 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 104, + "endOffset": 273 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 409, + "endColumn": 104, + "endOffset": 509 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 106, + "endOffset": 380 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 514, + "endColumn": 106, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 385, + "endColumn": 85, + "endOffset": 466 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 85, + "endOffset": 702 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 471, + "endColumn": 107, + "endOffset": 574 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 107, + "endOffset": 810 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 579, + "endColumn": 119, + "endOffset": 694 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 815, + "endColumn": 119, + "endOffset": 930 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 699, + "endColumn": 110, + "endOffset": 805 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 935, + "endColumn": 110, + "endOffset": 1041 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 103, + "endOffset": 909 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 103, + "endOffset": 1145 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 914, + "endColumn": 98, + "endOffset": 1008 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1150, + "endColumn": 98, + "endOffset": 1244 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 114, + "endOffset": 1123 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1249, + "endColumn": 114, + "endOffset": 1359 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1128, + "endColumn": 112, + "endOffset": 1236 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 112, + "endOffset": 1472 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1241, + "endColumn": 102, + "endOffset": 1339 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1477, + "endColumn": 102, + "endOffset": 1575 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1344, + "endColumn": 117, + "endOffset": 1457 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-nl/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1580, + "endColumn": 117, + "endOffset": 1693 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-pl.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-pl.json new file mode 100644 index 0000000..1f46c7c --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-pl.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pl/values-pl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 115, + "endOffset": 166 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 115, + "endOffset": 402 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 171, + "endColumn": 101, + "endOffset": 268 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 407, + "endColumn": 101, + "endOffset": 504 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 107, + "endOffset": 376 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 509, + "endColumn": 107, + "endOffset": 612 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 381, + "endColumn": 85, + "endOffset": 462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 617, + "endColumn": 85, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 467, + "endColumn": 108, + "endOffset": 571 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 108, + "endOffset": 807 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 576, + "endColumn": 118, + "endOffset": 690 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 118, + "endOffset": 926 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 108, + "endOffset": 799 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 931, + "endColumn": 108, + "endOffset": 1035 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 804, + "endColumn": 108, + "endOffset": 908 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1040, + "endColumn": 108, + "endOffset": 1144 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 913, + "endColumn": 98, + "endOffset": 1007 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1149, + "endColumn": 98, + "endOffset": 1243 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1012, + "endColumn": 108, + "endOffset": 1116 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1248, + "endColumn": 108, + "endOffset": 1352 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1121, + "endColumn": 110, + "endOffset": 1227 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1357, + "endColumn": 110, + "endOffset": 1463 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1232, + "endColumn": 107, + "endOffset": 1335 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 107, + "endOffset": 1571 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1340, + "endColumn": 122, + "endOffset": 1458 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pl/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1576, + "endColumn": 122, + "endOffset": 1694 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-port.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-port.json new file mode 100644 index 0000000..0de3dbe --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-port.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-port/values-port.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 55, + "endOffset": 106 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-port/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 55, + "endOffset": 342 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-pt-rPT.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-pt-rPT.json new file mode 100644 index 0000000..5e08290 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-pt-rPT.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 119, + "endOffset": 410 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 105, + "endOffset": 276 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 415, + "endColumn": 105, + "endOffset": 516 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 106, + "endOffset": 383 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 521, + "endColumn": 106, + "endOffset": 623 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 388, + "endColumn": 88, + "endOffset": 472 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 628, + "endColumn": 88, + "endOffset": 712 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 477, + "endColumn": 100, + "endOffset": 573 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 100, + "endOffset": 813 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 123, + "endOffset": 697 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 818, + "endColumn": 123, + "endOffset": 937 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 702, + "endColumn": 106, + "endOffset": 804 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 942, + "endColumn": 106, + "endOffset": 1044 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 111, + "endOffset": 916 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1049, + "endColumn": 111, + "endOffset": 1156 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 101, + "endOffset": 1018 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1161, + "endColumn": 101, + "endOffset": 1258 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1023, + "endColumn": 107, + "endOffset": 1126 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1263, + "endColumn": 107, + "endOffset": 1366 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1131, + "endColumn": 106, + "endOffset": 1233 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1371, + "endColumn": 106, + "endOffset": 1473 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1238, + "endColumn": 106, + "endOffset": 1340 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1478, + "endColumn": 106, + "endOffset": 1580 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1345, + "endColumn": 121, + "endOffset": 1462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt-rPT/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1585, + "endColumn": 121, + "endOffset": 1702 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-pt.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-pt.json new file mode 100644 index 0000000..468d609 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-pt.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt/values-pt.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 119, + "endOffset": 406 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 105, + "endOffset": 276 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 411, + "endColumn": 105, + "endOffset": 512 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 106, + "endOffset": 383 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 517, + "endColumn": 106, + "endOffset": 619 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 388, + "endColumn": 88, + "endOffset": 472 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 624, + "endColumn": 88, + "endOffset": 708 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 477, + "endColumn": 100, + "endOffset": 573 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 713, + "endColumn": 100, + "endOffset": 809 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 124, + "endOffset": 698 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 814, + "endColumn": 124, + "endOffset": 934 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 106, + "endOffset": 805 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 939, + "endColumn": 106, + "endOffset": 1041 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 111, + "endOffset": 917 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 111, + "endOffset": 1153 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 922, + "endColumn": 101, + "endOffset": 1019 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1158, + "endColumn": 101, + "endOffset": 1255 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1024, + "endColumn": 107, + "endOffset": 1127 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 107, + "endOffset": 1363 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 106, + "endOffset": 1234 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1368, + "endColumn": 106, + "endOffset": 1470 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1239, + "endColumn": 109, + "endOffset": 1344 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 109, + "endOffset": 1580 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1349, + "endColumn": 124, + "endOffset": 1469 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-pt/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1585, + "endColumn": 124, + "endOffset": 1705 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-ro.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ro.json new file mode 100644 index 0000000..942c9d3 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ro.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ro/values-ro.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 120, + "endOffset": 171 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 120, + "endOffset": 407 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 176, + "endColumn": 103, + "endOffset": 275 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 412, + "endColumn": 103, + "endOffset": 511 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 112, + "endOffset": 388 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 112, + "endOffset": 624 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 87, + "endOffset": 476 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 629, + "endColumn": 87, + "endOffset": 712 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 481, + "endColumn": 111, + "endOffset": 588 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 111, + "endOffset": 824 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 120, + "endOffset": 709 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 829, + "endColumn": 120, + "endOffset": 945 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 714, + "endColumn": 111, + "endOffset": 821 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 950, + "endColumn": 111, + "endOffset": 1057 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 826, + "endColumn": 112, + "endOffset": 934 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 112, + "endOffset": 1170 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 939, + "endColumn": 99, + "endOffset": 1034 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1175, + "endColumn": 99, + "endOffset": 1270 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1039, + "endColumn": 113, + "endOffset": 1148 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1275, + "endColumn": 113, + "endOffset": 1384 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1153, + "endColumn": 104, + "endOffset": 1253 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1389, + "endColumn": 104, + "endOffset": 1489 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1258, + "endColumn": 105, + "endOffset": 1359 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1494, + "endColumn": 105, + "endOffset": 1595 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 120, + "endOffset": 1480 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ro/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1600, + "endColumn": 120, + "endOffset": 1716 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-ru.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ru.json new file mode 100644 index 0000000..39d1420 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ru.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ru/values-ru.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 114, + "endOffset": 165 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 114, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 101, + "endOffset": 267 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 101, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 111, + "endOffset": 379 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 111, + "endOffset": 615 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 384, + "endColumn": 85, + "endOffset": 465 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 85, + "endOffset": 701 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 470, + "endColumn": 104, + "endOffset": 570 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 706, + "endColumn": 104, + "endOffset": 806 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 575, + "endColumn": 119, + "endOffset": 690 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 811, + "endColumn": 119, + "endOffset": 926 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 105, + "endOffset": 796 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 931, + "endColumn": 105, + "endOffset": 1032 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 107, + "endOffset": 904 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1037, + "endColumn": 107, + "endOffset": 1140 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 909, + "endColumn": 97, + "endOffset": 1002 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1145, + "endColumn": 97, + "endOffset": 1238 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1007, + "endColumn": 108, + "endOffset": 1111 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1243, + "endColumn": 108, + "endOffset": 1347 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1116, + "endColumn": 105, + "endOffset": 1217 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1352, + "endColumn": 105, + "endOffset": 1453 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1222, + "endColumn": 107, + "endOffset": 1325 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1458, + "endColumn": 107, + "endOffset": 1561 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1330, + "endColumn": 135, + "endOffset": 1461 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ru/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 135, + "endOffset": 1697 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-si-rLK.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-si-rLK.json new file mode 100644 index 0000000..94e12ac --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-si-rLK.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-si-rLK/values-si-rLK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 109, + "endOffset": 400 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 106, + "endOffset": 267 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 405, + "endColumn": 106, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 106, + "endOffset": 374 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 106, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 379, + "endColumn": 87, + "endOffset": 462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 87, + "endOffset": 702 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 467, + "endColumn": 104, + "endOffset": 567 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 104, + "endOffset": 807 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 572, + "endColumn": 115, + "endOffset": 683 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 115, + "endOffset": 923 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 108, + "endOffset": 792 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 928, + "endColumn": 108, + "endOffset": 1032 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 104, + "endOffset": 897 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1037, + "endColumn": 104, + "endOffset": 1137 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 902, + "endColumn": 97, + "endOffset": 995 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1142, + "endColumn": 97, + "endOffset": 1235 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 109, + "endOffset": 1105 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1240, + "endColumn": 109, + "endOffset": 1345 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1110, + "endColumn": 98, + "endOffset": 1204 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1350, + "endColumn": 98, + "endOffset": 1444 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1209, + "endColumn": 105, + "endOffset": 1310 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1449, + "endColumn": 105, + "endOffset": 1550 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1315, + "endColumn": 120, + "endOffset": 1431 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-si-rLK/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1555, + "endColumn": 120, + "endOffset": 1671 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-sk.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-sk.json new file mode 100644 index 0000000..48c5c41 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-sk.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sk/values-sk.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 106, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 99, + "endOffset": 257 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 99, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 262, + "endColumn": 110, + "endOffset": 368 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 110, + "endOffset": 604 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 373, + "endColumn": 85, + "endOffset": 454 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 609, + "endColumn": 85, + "endOffset": 690 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 459, + "endColumn": 107, + "endOffset": 562 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 107, + "endOffset": 798 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 567, + "endColumn": 117, + "endOffset": 680 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 117, + "endOffset": 916 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 685, + "endColumn": 104, + "endOffset": 785 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 104, + "endOffset": 1021 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 790, + "endColumn": 108, + "endOffset": 894 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1026, + "endColumn": 108, + "endOffset": 1130 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 899, + "endColumn": 98, + "endOffset": 993 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1135, + "endColumn": 98, + "endOffset": 1229 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 998, + "endColumn": 105, + "endOffset": 1099 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1234, + "endColumn": 105, + "endOffset": 1335 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 110, + "endOffset": 1210 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1340, + "endColumn": 110, + "endOffset": 1446 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1215, + "endColumn": 108, + "endOffset": 1319 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1451, + "endColumn": 108, + "endOffset": 1555 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1324, + "endColumn": 123, + "endOffset": 1443 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sk/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1560, + "endColumn": 123, + "endOffset": 1679 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-sl.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-sl.json new file mode 100644 index 0000000..a6c8c26 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-sl.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sl/values-sl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 106, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 106, + "endOffset": 264 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 106, + "endOffset": 500 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 269, + "endColumn": 107, + "endOffset": 372 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 505, + "endColumn": 107, + "endOffset": 608 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 377, + "endColumn": 86, + "endOffset": 459 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 613, + "endColumn": 86, + "endOffset": 695 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 464, + "endColumn": 102, + "endOffset": 562 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 700, + "endColumn": 102, + "endOffset": 798 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 567, + "endColumn": 118, + "endOffset": 681 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 118, + "endOffset": 917 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 107, + "endOffset": 789 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 922, + "endColumn": 107, + "endOffset": 1025 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 108, + "endOffset": 898 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1030, + "endColumn": 108, + "endOffset": 1134 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 903, + "endColumn": 99, + "endOffset": 998 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1139, + "endColumn": 99, + "endOffset": 1234 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1003, + "endColumn": 112, + "endOffset": 1111 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1239, + "endColumn": 112, + "endOffset": 1347 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1116, + "endColumn": 106, + "endOffset": 1218 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1352, + "endColumn": 106, + "endOffset": 1454 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1223, + "endColumn": 103, + "endOffset": 1322 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1459, + "endColumn": 103, + "endOffset": 1558 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1327, + "endColumn": 116, + "endOffset": 1439 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sl/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1563, + "endColumn": 116, + "endOffset": 1675 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-sr.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-sr.json new file mode 100644 index 0000000..fd179bd --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-sr.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sr/values-sr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 108, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 102, + "endOffset": 262 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 102, + "endOffset": 498 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 105, + "endOffset": 368 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 105, + "endOffset": 604 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 373, + "endColumn": 85, + "endOffset": 454 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 609, + "endColumn": 85, + "endOffset": 690 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 459, + "endColumn": 103, + "endOffset": 558 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 103, + "endOffset": 794 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 563, + "endColumn": 117, + "endOffset": 676 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 799, + "endColumn": 117, + "endOffset": 912 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 104, + "endOffset": 781 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 104, + "endOffset": 1017 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 786, + "endColumn": 107, + "endOffset": 889 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1022, + "endColumn": 107, + "endOffset": 1125 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 894, + "endColumn": 100, + "endOffset": 990 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1130, + "endColumn": 100, + "endOffset": 1226 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 995, + "endColumn": 103, + "endOffset": 1094 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1231, + "endColumn": 103, + "endOffset": 1330 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1099, + "endColumn": 107, + "endOffset": 1202 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1335, + "endColumn": 107, + "endOffset": 1438 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1207, + "endColumn": 100, + "endOffset": 1303 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1443, + "endColumn": 100, + "endOffset": 1539 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1308, + "endColumn": 127, + "endOffset": 1431 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sr/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1544, + "endColumn": 127, + "endOffset": 1667 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-sv.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-sv.json new file mode 100644 index 0000000..cc8f44c --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-sv.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sv/values-sv.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 105, + "endOffset": 156 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 105, + "endOffset": 392 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 161, + "endColumn": 102, + "endOffset": 259 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 102, + "endOffset": 495 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 264, + "endColumn": 110, + "endOffset": 370 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 500, + "endColumn": 110, + "endOffset": 606 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 375, + "endColumn": 84, + "endOffset": 455 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 611, + "endColumn": 84, + "endOffset": 691 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 460, + "endColumn": 101, + "endOffset": 557 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 696, + "endColumn": 101, + "endOffset": 793 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 562, + "endColumn": 112, + "endOffset": 670 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 112, + "endOffset": 906 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 675, + "endColumn": 105, + "endOffset": 776 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 911, + "endColumn": 105, + "endOffset": 1012 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 781, + "endColumn": 99, + "endOffset": 876 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1017, + "endColumn": 99, + "endOffset": 1112 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 881, + "endColumn": 95, + "endOffset": 972 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 95, + "endOffset": 1208 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 977, + "endColumn": 104, + "endOffset": 1077 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1213, + "endColumn": 104, + "endOffset": 1313 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1082, + "endColumn": 101, + "endOffset": 1179 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1318, + "endColumn": 101, + "endOffset": 1415 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1184, + "endColumn": 101, + "endOffset": 1281 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1420, + "endColumn": 101, + "endOffset": 1517 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1286, + "endColumn": 116, + "endOffset": 1398 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sv/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1522, + "endColumn": 116, + "endOffset": 1634 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-sw.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-sw.json new file mode 100644 index 0000000..d5fa6b8 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-sw.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw/values-sw.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 102, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 97, + "endOffset": 251 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 97, + "endOffset": 487 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 256, + "endColumn": 107, + "endOffset": 359 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 492, + "endColumn": 107, + "endOffset": 595 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 364, + "endColumn": 89, + "endOffset": 449 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 600, + "endColumn": 89, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 454, + "endColumn": 104, + "endOffset": 554 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 104, + "endOffset": 790 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 559, + "endColumn": 116, + "endOffset": 671 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 116, + "endOffset": 907 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 676, + "endColumn": 100, + "endOffset": 772 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 100, + "endOffset": 1008 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 777, + "endColumn": 108, + "endOffset": 881 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 108, + "endOffset": 1117 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 886, + "endColumn": 98, + "endOffset": 980 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 98, + "endOffset": 1216 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 985, + "endColumn": 106, + "endOffset": 1087 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1221, + "endColumn": 106, + "endOffset": 1323 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 108, + "endOffset": 1196 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 108, + "endOffset": 1432 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1201, + "endColumn": 104, + "endOffset": 1301 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 104, + "endOffset": 1537 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1306, + "endColumn": 118, + "endOffset": 1420 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1542, + "endColumn": 118, + "endOffset": 1656 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json new file mode 100644 index 0000000..6b73e83 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json @@ -0,0 +1,178 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 68, + "endOffset": 119 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 68, + "endOffset": 359 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 124, + "endColumn": 69, + "endOffset": 189 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 364, + "endColumn": 69, + "endOffset": 429 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 194, + "endColumn": 69, + "endOffset": 259 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 434, + "endColumn": 69, + "endOffset": 499 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 264, + "endColumn": 78, + "endOffset": 338 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 504, + "endColumn": 78, + "endOffset": 578 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 343, + "endColumn": 75, + "endOffset": 414 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 583, + "endColumn": 75, + "endOffset": 654 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 419, + "endColumn": 58, + "endOffset": 473 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 899, + "endColumn": 58, + "endOffset": 953 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 478, + "endColumn": 70, + "endOffset": 544 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1198, + "endColumn": 70, + "endOffset": 1264 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 549, + "endColumn": 67, + "endOffset": 612 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1269, + "endColumn": 67, + "endOffset": 1332 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 617, + "endColumn": 54, + "endOffset": 667 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-sw600dp-v13/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1337, + "endColumn": 54, + "endOffset": 1387 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-ta-rIN.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ta-rIN.json new file mode 100644 index 0000000..3496feb --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ta-rIN.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta-rIN/values-ta-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 113, + "endOffset": 404 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 104, + "endOffset": 269 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 409, + "endColumn": 104, + "endOffset": 509 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 274, + "endColumn": 114, + "endOffset": 384 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 514, + "endColumn": 114, + "endOffset": 624 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 88, + "endOffset": 473 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 629, + "endColumn": 88, + "endOffset": 713 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 478, + "endColumn": 106, + "endOffset": 580 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 718, + "endColumn": 106, + "endOffset": 820 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 585, + "endColumn": 125, + "endOffset": 706 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 825, + "endColumn": 125, + "endOffset": 946 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 711, + "endColumn": 101, + "endOffset": 808 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 951, + "endColumn": 101, + "endOffset": 1048 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 813, + "endColumn": 103, + "endOffset": 912 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1053, + "endColumn": 103, + "endOffset": 1152 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 96, + "endOffset": 1009 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1157, + "endColumn": 96, + "endOffset": 1249 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 109, + "endOffset": 1119 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1254, + "endColumn": 109, + "endOffset": 1359 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1124, + "endColumn": 101, + "endOffset": 1221 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 101, + "endOffset": 1461 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1226, + "endColumn": 106, + "endOffset": 1328 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1466, + "endColumn": 106, + "endOffset": 1568 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1333, + "endColumn": 118, + "endOffset": 1447 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ta-rIN/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1573, + "endColumn": 118, + "endOffset": 1687 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-te-rIN.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-te-rIN.json new file mode 100644 index 0000000..85f429d --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-te-rIN.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-te-rIN/values-te-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 113, + "endOffset": 404 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 108, + "endOffset": 273 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 409, + "endColumn": 108, + "endOffset": 513 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 110, + "endOffset": 384 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 518, + "endColumn": 110, + "endOffset": 624 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 89, + "endOffset": 474 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 629, + "endColumn": 89, + "endOffset": 714 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 479, + "endColumn": 104, + "endOffset": 579 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 719, + "endColumn": 104, + "endOffset": 819 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 584, + "endColumn": 124, + "endOffset": 704 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 124, + "endOffset": 944 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 112, + "endOffset": 817 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 949, + "endColumn": 112, + "endOffset": 1057 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 822, + "endColumn": 107, + "endOffset": 925 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 107, + "endOffset": 1165 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 930, + "endColumn": 99, + "endOffset": 1025 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1170, + "endColumn": 99, + "endOffset": 1265 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1030, + "endColumn": 110, + "endOffset": 1136 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1270, + "endColumn": 110, + "endOffset": 1376 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1141, + "endColumn": 101, + "endOffset": 1238 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1381, + "endColumn": 101, + "endOffset": 1478 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1243, + "endColumn": 116, + "endOffset": 1355 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1483, + "endColumn": 116, + "endOffset": 1595 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1360, + "endColumn": 126, + "endOffset": 1482 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-te-rIN/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1600, + "endColumn": 126, + "endOffset": 1722 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-th.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-th.json new file mode 100644 index 0000000..8b4180d --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-th.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-th/values-th.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 104, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 97, + "endOffset": 253 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 97, + "endOffset": 489 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 107, + "endOffset": 361 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 107, + "endOffset": 597 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 366, + "endColumn": 88, + "endOffset": 450 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 88, + "endOffset": 686 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 455, + "endColumn": 101, + "endOffset": 552 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 691, + "endColumn": 101, + "endOffset": 788 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 557, + "endColumn": 109, + "endOffset": 662 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 793, + "endColumn": 109, + "endOffset": 898 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 667, + "endColumn": 107, + "endOffset": 770 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 903, + "endColumn": 107, + "endOffset": 1006 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 775, + "endColumn": 103, + "endOffset": 874 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1011, + "endColumn": 103, + "endOffset": 1110 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 879, + "endColumn": 97, + "endOffset": 972 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1115, + "endColumn": 97, + "endOffset": 1208 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 977, + "endColumn": 107, + "endOffset": 1080 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1213, + "endColumn": 107, + "endOffset": 1316 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1085, + "endColumn": 104, + "endOffset": 1185 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1321, + "endColumn": 104, + "endOffset": 1421 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1190, + "endColumn": 100, + "endOffset": 1286 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1426, + "endColumn": 100, + "endOffset": 1522 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1291, + "endColumn": 115, + "endOffset": 1402 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-th/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1527, + "endColumn": 115, + "endOffset": 1638 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-tl.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-tl.json new file mode 100644 index 0000000..ab84125 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-tl.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl/values-tl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 118, + "endOffset": 169 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 118, + "endOffset": 405 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 174, + "endColumn": 107, + "endOffset": 277 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 410, + "endColumn": 107, + "endOffset": 513 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 116, + "endOffset": 394 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 518, + "endColumn": 116, + "endOffset": 630 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 87, + "endOffset": 482 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 635, + "endColumn": 87, + "endOffset": 718 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 487, + "endColumn": 105, + "endOffset": 588 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 723, + "endColumn": 105, + "endOffset": 824 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 120, + "endOffset": 709 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 829, + "endColumn": 120, + "endOffset": 945 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 714, + "endColumn": 108, + "endOffset": 818 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 950, + "endColumn": 108, + "endOffset": 1054 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 823, + "endColumn": 110, + "endOffset": 929 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1059, + "endColumn": 110, + "endOffset": 1165 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 934, + "endColumn": 100, + "endOffset": 1030 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1170, + "endColumn": 100, + "endOffset": 1266 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1035, + "endColumn": 109, + "endOffset": 1140 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1271, + "endColumn": 109, + "endOffset": 1376 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1145, + "endColumn": 116, + "endOffset": 1257 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1381, + "endColumn": 116, + "endOffset": 1493 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1262, + "endColumn": 107, + "endOffset": 1365 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1498, + "endColumn": 107, + "endOffset": 1601 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 122, + "endOffset": 1488 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tl/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1606, + "endColumn": 122, + "endOffset": 1724 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-tr.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-tr.json new file mode 100644 index 0000000..df6b0da --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-tr.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr/values-tr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 104, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 98, + "endOffset": 254 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 98, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 259, + "endColumn": 111, + "endOffset": 366 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 111, + "endOffset": 602 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 371, + "endColumn": 89, + "endOffset": 456 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 607, + "endColumn": 89, + "endOffset": 692 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 461, + "endColumn": 105, + "endOffset": 562 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 697, + "endColumn": 105, + "endOffset": 798 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 567, + "endColumn": 119, + "endOffset": 682 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 119, + "endOffset": 918 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 687, + "endColumn": 106, + "endOffset": 789 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 923, + "endColumn": 106, + "endOffset": 1025 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 104, + "endOffset": 894 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1030, + "endColumn": 104, + "endOffset": 1130 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 899, + "endColumn": 95, + "endOffset": 990 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1135, + "endColumn": 95, + "endOffset": 1226 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 995, + "endColumn": 106, + "endOffset": 1097 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1231, + "endColumn": 106, + "endOffset": 1333 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1102, + "endColumn": 101, + "endOffset": 1199 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1338, + "endColumn": 101, + "endOffset": 1435 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1204, + "endColumn": 107, + "endOffset": 1307 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1440, + "endColumn": 107, + "endOffset": 1543 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1312, + "endColumn": 118, + "endOffset": 1426 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-tr/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1548, + "endColumn": 118, + "endOffset": 1662 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-uk.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-uk.json new file mode 100644 index 0000000..619e9dd --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-uk.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk/values-uk.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 109, + "endOffset": 396 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 101, + "endOffset": 262 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 401, + "endColumn": 101, + "endOffset": 498 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 105, + "endOffset": 368 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 105, + "endOffset": 604 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 373, + "endColumn": 85, + "endOffset": 454 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 609, + "endColumn": 85, + "endOffset": 690 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 459, + "endColumn": 107, + "endOffset": 562 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 107, + "endOffset": 798 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 567, + "endColumn": 117, + "endOffset": 680 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 117, + "endOffset": 916 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 685, + "endColumn": 105, + "endOffset": 786 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 105, + "endOffset": 1022 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 791, + "endColumn": 106, + "endOffset": 893 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1027, + "endColumn": 106, + "endOffset": 1129 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 898, + "endColumn": 97, + "endOffset": 991 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1134, + "endColumn": 97, + "endOffset": 1227 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 996, + "endColumn": 107, + "endOffset": 1099 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1232, + "endColumn": 107, + "endOffset": 1335 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 105, + "endOffset": 1205 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1340, + "endColumn": 105, + "endOffset": 1441 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1210, + "endColumn": 108, + "endOffset": 1314 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1446, + "endColumn": 108, + "endOffset": 1550 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1319, + "endColumn": 123, + "endOffset": 1438 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uk/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1555, + "endColumn": 123, + "endOffset": 1674 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-ur-rPK.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ur-rPK.json new file mode 100644 index 0000000..3f2b8d5 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-ur-rPK.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur-rPK/values-ur-rPK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 109, + "endOffset": 400 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 105, + "endOffset": 266 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 405, + "endColumn": 105, + "endOffset": 506 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 108, + "endOffset": 375 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 511, + "endColumn": 108, + "endOffset": 615 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 380, + "endColumn": 85, + "endOffset": 461 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 85, + "endOffset": 701 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 466, + "endColumn": 103, + "endOffset": 565 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 706, + "endColumn": 103, + "endOffset": 805 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 570, + "endColumn": 119, + "endOffset": 685 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 119, + "endOffset": 925 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 107, + "endOffset": 793 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 930, + "endColumn": 107, + "endOffset": 1033 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 108, + "endOffset": 902 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1038, + "endColumn": 108, + "endOffset": 1142 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 101, + "endOffset": 1004 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 101, + "endOffset": 1244 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1009, + "endColumn": 110, + "endOffset": 1115 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1249, + "endColumn": 110, + "endOffset": 1355 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1120, + "endColumn": 99, + "endOffset": 1215 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1360, + "endColumn": 99, + "endOffset": 1455 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1220, + "endColumn": 107, + "endOffset": 1323 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1460, + "endColumn": 107, + "endOffset": 1563 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 128, + "endOffset": 1452 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-ur-rPK/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1568, + "endColumn": 128, + "endOffset": 1692 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json new file mode 100644 index 0000000..78915ce --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json @@ -0,0 +1,235 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 104, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 103, + "endOffset": 259 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 103, + "endOffset": 499 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 264, + "endColumn": 116, + "endOffset": 376 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 116, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 381, + "endColumn": 85, + "endOffset": 462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 85, + "endOffset": 702 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 467, + "endColumn": 110, + "endOffset": 573 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 110, + "endOffset": 813 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 115, + "endOffset": 689 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 818, + "endColumn": 115, + "endOffset": 929 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 694, + "endColumn": 108, + "endOffset": 798 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 934, + "endColumn": 108, + "endOffset": 1038 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 106, + "endOffset": 905 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1043, + "endColumn": 106, + "endOffset": 1145 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 910, + "endColumn": 98, + "endOffset": 1004 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1150, + "endColumn": 98, + "endOffset": 1244 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1009, + "endColumn": 107, + "endOffset": 1112 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1249, + "endColumn": 107, + "endOffset": 1352 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 104, + "endOffset": 1217 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1357, + "endColumn": 104, + "endOffset": 1457 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1222, + "endColumn": 104, + "endOffset": 1322 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-uz-rUZ/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1462, + "endColumn": 104, + "endOffset": 1562 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-v11.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-v11.json new file mode 100644 index 0000000..a158f8a --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-v11.json @@ -0,0 +1,356 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v11/values-v11.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 7, + "endColumn": 12, + "endOffset": 469 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 301, + "endLine": 9, + "endColumn": 12, + "endOffset": 715 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 474, + "endLine": 13, + "endColumn": 12, + "endOffset": 894 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 720, + "endLine": 15, + "endColumn": 12, + "endOffset": 1140 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 899, + "endLine": 19, + "endColumn": 12, + "endOffset": 1322 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1145, + "endLine": 21, + "endColumn": 12, + "endOffset": 1568 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1327, + "endLine": 25, + "endColumn": 12, + "endOffset": 1748 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1573, + "endLine": 27, + "endColumn": 12, + "endOffset": 1994 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1753, + "endLine": 31, + "endColumn": 12, + "endOffset": 2177 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1999, + "endLine": 33, + "endColumn": 12, + "endOffset": 2423 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2182, + "endLine": 37, + "endColumn": 12, + "endOffset": 2602 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2428, + "endLine": 39, + "endColumn": 12, + "endOffset": 2848 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2607, + "endColumn": 88, + "endOffset": 2691 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3094, + "endColumn": 88, + "endOffset": 3178 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2696, + "endColumn": 100, + "endOffset": 2792 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3183, + "endColumn": 100, + "endOffset": 3279 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2797, + "endLine": 44, + "endColumn": 12, + "endOffset": 3200 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3284, + "endLine": 48, + "endColumn": 12, + "endOffset": 3687 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3205, + "endLine": 49, + "endColumn": 12, + "endOffset": 3620 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3692, + "endLine": 53, + "endColumn": 12, + "endOffset": 4107 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3625, + "endLine": 51, + "endColumn": 12, + "endOffset": 3727 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4353, + "endLine": 57, + "endColumn": 12, + "endOffset": 4455 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3732, + "endLine": 53, + "endColumn": 12, + "endOffset": 3856 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4460, + "endLine": 59, + "endColumn": 12, + "endOffset": 4584 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3861, + "endLine": 58, + "endColumn": 12, + "endOffset": 4220 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4589, + "endLine": 64, + "endColumn": 12, + "endOffset": 4948 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4225, + "endColumn": 70, + "endOffset": 4291 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 67, + "startColumn": 4, + "startOffset": 5194, + "endColumn": 70, + "endOffset": 5260 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4296, + "endColumn": 82, + "endOffset": 4374 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 68, + "startColumn": 4, + "startOffset": 5265, + "endColumn": 82, + "endOffset": 5343 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4379, + "endLine": 111, + "endColumn": 12, + "endOffset": 8123 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 69, + "startColumn": 4, + "startOffset": 5348, + "endLine": 119, + "endColumn": 12, + "endOffset": 9092 + } + } + }, + { + "to": { + "startLine": 112, + "startColumn": 4, + "startOffset": 8128, + "endLine": 163, + "endColumn": 12, + "endOffset": 12012 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v11/values.xml", + "position": { + "startLine": 120, + "startColumn": 4, + "startOffset": 9097, + "endLine": 171, + "endColumn": 12, + "endOffset": 12981 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-v12.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-v12.json new file mode 100644 index 0000000..74a7ff7 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-v12.json @@ -0,0 +1,87 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v12/values-v12.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 70, + "endOffset": 121 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v12/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 296, + "endColumn": 70, + "endOffset": 362 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 126, + "endColumn": 82, + "endOffset": 204 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v12/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 367, + "endColumn": 82, + "endOffset": 445 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 209, + "endLine": 6, + "endColumn": 12, + "endOffset": 383 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v12/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 450, + "endLine": 8, + "endColumn": 12, + "endOffset": 624 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 388, + "endLine": 9, + "endColumn": 12, + "endOffset": 574 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v12/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 629, + "endLine": 11, + "endColumn": 12, + "endOffset": 815 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-v14.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-v14.json new file mode 100644 index 0000000..bcb590c --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-v14.json @@ -0,0 +1,108 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 6, + "endColumn": 12, + "endOffset": 326 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v14/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 301, + "endLine": 8, + "endColumn": 12, + "endOffset": 572 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 331, + "endColumn": 70, + "endOffset": 397 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v14/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 818, + "endColumn": 70, + "endOffset": 884 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 402, + "endColumn": 82, + "endOffset": 480 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v14/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 889, + "endColumn": 82, + "endOffset": 967 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 485, + "endLine": 14, + "endColumn": 12, + "endOffset": 890 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v14/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 972, + "endLine": 18, + "endColumn": 12, + "endOffset": 1377 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 895, + "endLine": 20, + "endColumn": 12, + "endOffset": 1312 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v14/values.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1382, + "endLine": 24, + "endColumn": 12, + "endOffset": 1799 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-v17.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-v17.json new file mode 100644 index 0000000..9b4bc62 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-v17.json @@ -0,0 +1,259 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 5, + "endColumn": 12, + "endOffset": 278 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endLine": 7, + "endColumn": 12, + "endOffset": 518 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 283, + "endLine": 9, + "endColumn": 12, + "endOffset": 615 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 523, + "endLine": 11, + "endColumn": 12, + "endOffset": 855 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 620, + "endLine": 12, + "endColumn": 12, + "endOffset": 765 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 860, + "endLine": 14, + "endColumn": 12, + "endOffset": 1005 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 770, + "endLine": 15, + "endColumn": 12, + "endOffset": 937 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1010, + "endLine": 17, + "endColumn": 12, + "endOffset": 1177 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 942, + "endLine": 19, + "endColumn": 12, + "endOffset": 1165 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1182, + "endLine": 21, + "endColumn": 12, + "endOffset": 1405 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1170, + "endLine": 23, + "endColumn": 12, + "endOffset": 1407 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1410, + "endLine": 25, + "endColumn": 12, + "endOffset": 1647 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1412, + "endLine": 26, + "endColumn": 12, + "endOffset": 1578 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1652, + "endLine": 28, + "endColumn": 12, + "endOffset": 1818 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1583, + "endLine": 29, + "endColumn": 12, + "endOffset": 1752 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1823, + "endLine": 31, + "endColumn": 12, + "endOffset": 1992 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 1757, + "endLine": 32, + "endColumn": 12, + "endOffset": 1921 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 1997, + "endLine": 34, + "endColumn": 12, + "endOffset": 2161 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 1926, + "endLine": 36, + "endColumn": 12, + "endOffset": 2194 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2166, + "endLine": 38, + "endColumn": 12, + "endOffset": 2434 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2199, + "endLine": 39, + "endColumn": 12, + "endOffset": 2394 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2439, + "endLine": 41, + "endColumn": 12, + "endOffset": 2634 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2399, + "endLine": 42, + "endColumn": 12, + "endOffset": 2642 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v17/values.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2639, + "endLine": 44, + "endColumn": 12, + "endOffset": 2882 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-v18.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-v18.json new file mode 100644 index 0000000..89386f5 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-v18.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 48, + "endOffset": 99 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v18/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 48, + "endOffset": 335 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-v21.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-v21.json new file mode 100644 index 0000000..3dec3c8 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-v21.json @@ -0,0 +1,1645 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 90, + "endOffset": 141 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 301, + "endColumn": 90, + "endOffset": 387 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 146, + "endColumn": 102, + "endOffset": 244 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 102, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 249, + "endColumn": 102, + "endOffset": 347 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 102, + "endOffset": 593 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 352, + "endColumn": 104, + "endOffset": 452 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 104, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 457, + "endColumn": 106, + "endOffset": 559 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 106, + "endOffset": 805 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 564, + "endColumn": 108, + "endOffset": 668 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 108, + "endOffset": 914 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 673, + "endColumn": 108, + "endOffset": 777 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 919, + "endColumn": 108, + "endOffset": 1023 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 108, + "endOffset": 886 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1028, + "endColumn": 108, + "endOffset": 1132 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 891, + "endColumn": 108, + "endOffset": 995 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1137, + "endColumn": 108, + "endOffset": 1241 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 108, + "endOffset": 1104 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1246, + "endColumn": 108, + "endOffset": 1350 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1109, + "endColumn": 106, + "endOffset": 1211 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1355, + "endColumn": 106, + "endOffset": 1457 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1216, + "endColumn": 102, + "endOffset": 1314 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1462, + "endColumn": 102, + "endOffset": 1560 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1319, + "endColumn": 118, + "endOffset": 1433 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1565, + "endColumn": 118, + "endOffset": 1679 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1438, + "endLine": 16, + "endColumn": 12, + "endOffset": 1588 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1925, + "endLine": 20, + "endColumn": 12, + "endOffset": 2075 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1593, + "endLine": 18, + "endColumn": 12, + "endOffset": 1743 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2080, + "endLine": 22, + "endColumn": 12, + "endOffset": 2230 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1748, + "endColumn": 104, + "endOffset": 1848 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2481, + "endColumn": 104, + "endOffset": 2581 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1853, + "endColumn": 120, + "endOffset": 1969 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2586, + "endColumn": 120, + "endOffset": 2702 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1974, + "endColumn": 100, + "endOffset": 2070 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2707, + "endColumn": 100, + "endOffset": 2803 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2075, + "endLine": 23, + "endColumn": 12, + "endOffset": 2217 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3049, + "endLine": 31, + "endColumn": 12, + "endOffset": 3191 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2222, + "endLine": 25, + "endColumn": 12, + "endOffset": 2358 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3196, + "endLine": 33, + "endColumn": 12, + "endOffset": 3332 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2363, + "endColumn": 102, + "endOffset": 2461 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3583, + "endColumn": 102, + "endOffset": 3681 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2466, + "endColumn": 118, + "endOffset": 2580 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 3686, + "endColumn": 118, + "endOffset": 3800 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2585, + "endColumn": 106, + "endOffset": 2687 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3805, + "endColumn": 106, + "endOffset": 3907 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2692, + "endColumn": 102, + "endOffset": 2790 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3912, + "endColumn": 102, + "endOffset": 4010 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2795, + "endLine": 31, + "endColumn": 12, + "endOffset": 2937 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 4256, + "endLine": 43, + "endColumn": 12, + "endOffset": 4398 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2942, + "endLine": 33, + "endColumn": 12, + "endOffset": 3092 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 4403, + "endLine": 45, + "endColumn": 12, + "endOffset": 4553 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 3097, + "endLine": 35, + "endColumn": 12, + "endOffset": 3263 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 4558, + "endLine": 47, + "endColumn": 12, + "endOffset": 4724 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3268, + "endLine": 37, + "endColumn": 12, + "endOffset": 3412 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 4729, + "endLine": 49, + "endColumn": 12, + "endOffset": 4873 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3417, + "endLine": 39, + "endColumn": 12, + "endOffset": 3577 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4878, + "endLine": 51, + "endColumn": 12, + "endOffset": 5038 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3582, + "endLine": 41, + "endColumn": 12, + "endOffset": 3734 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 5043, + "endLine": 53, + "endColumn": 12, + "endOffset": 5195 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3739, + "endLine": 43, + "endColumn": 12, + "endOffset": 3885 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 5200, + "endLine": 55, + "endColumn": 12, + "endOffset": 5346 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3890, + "endLine": 45, + "endColumn": 12, + "endOffset": 4034 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 5351, + "endLine": 57, + "endColumn": 12, + "endOffset": 5495 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 4039, + "endLine": 47, + "endColumn": 12, + "endOffset": 4183 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 5500, + "endLine": 59, + "endColumn": 12, + "endOffset": 5644 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 4188, + "endColumn": 111, + "endOffset": 4295 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 5895, + "endColumn": 111, + "endOffset": 6002 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 4300, + "endColumn": 146, + "endOffset": 4442 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 65, + "startColumn": 4, + "startOffset": 6248, + "endColumn": 146, + "endOffset": 6390 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4447, + "endLine": 51, + "endColumn": 12, + "endOffset": 4595 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 66, + "startColumn": 4, + "startOffset": 6395, + "endLine": 67, + "endColumn": 12, + "endOffset": 6543 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4600, + "endLine": 53, + "endColumn": 12, + "endOffset": 4742 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 68, + "startColumn": 4, + "startOffset": 6548, + "endLine": 69, + "endColumn": 12, + "endOffset": 6690 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4747, + "endColumn": 74, + "endOffset": 4817 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 72, + "startColumn": 4, + "startOffset": 6936, + "endColumn": 74, + "endOffset": 7006 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4822, + "endColumn": 88, + "endOffset": 4906 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 73, + "startColumn": 4, + "startOffset": 7011, + "endColumn": 88, + "endOffset": 7095 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4911, + "endColumn": 86, + "endOffset": 4993 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 74, + "startColumn": 4, + "startOffset": 7100, + "endColumn": 86, + "endOffset": 7182 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4998, + "endColumn": 100, + "endOffset": 5094 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 75, + "startColumn": 4, + "startOffset": 7187, + "endColumn": 100, + "endOffset": 7283 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 5099, + "endLine": 105, + "endColumn": 12, + "endOffset": 8497 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 76, + "startColumn": 4, + "startOffset": 7288, + "endLine": 123, + "endColumn": 12, + "endOffset": 10686 + } + } + }, + { + "to": { + "startLine": 106, + "startColumn": 4, + "startOffset": 8502, + "endLine": 108, + "endColumn": 12, + "endOffset": 8683 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 124, + "startColumn": 4, + "startOffset": 10691, + "endLine": 126, + "endColumn": 12, + "endOffset": 10872 + } + } + }, + { + "to": { + "startLine": 109, + "startColumn": 4, + "startOffset": 8688, + "endLine": 156, + "endColumn": 12, + "endOffset": 12098 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 127, + "startColumn": 4, + "startOffset": 10877, + "endLine": 174, + "endColumn": 12, + "endOffset": 14287 + } + } + }, + { + "to": { + "startLine": 157, + "startColumn": 4, + "startOffset": 12103, + "endLine": 159, + "endColumn": 12, + "endOffset": 12296 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 175, + "startColumn": 4, + "startOffset": 14292, + "endLine": 177, + "endColumn": 12, + "endOffset": 14485 + } + } + }, + { + "to": { + "startLine": 160, + "startColumn": 4, + "startOffset": 12301, + "endLine": 161, + "endColumn": 12, + "endOffset": 12419 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 180, + "startColumn": 4, + "startOffset": 14731, + "endLine": 181, + "endColumn": 12, + "endOffset": 14849 + } + } + }, + { + "to": { + "startLine": 162, + "startColumn": 4, + "startOffset": 12424, + "endLine": 163, + "endColumn": 12, + "endOffset": 12542 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 182, + "startColumn": 4, + "startOffset": 14854, + "endLine": 183, + "endColumn": 12, + "endOffset": 14972 + } + } + }, + { + "to": { + "startLine": 164, + "startColumn": 4, + "startOffset": 12547, + "endLine": 165, + "endColumn": 12, + "endOffset": 12655 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 184, + "startColumn": 4, + "startOffset": 14977, + "endLine": 185, + "endColumn": 12, + "endOffset": 15085 + } + } + }, + { + "to": { + "startLine": 166, + "startColumn": 4, + "startOffset": 12660, + "endLine": 168, + "endColumn": 12, + "endOffset": 12838 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 186, + "startColumn": 4, + "startOffset": 15090, + "endLine": 188, + "endColumn": 12, + "endOffset": 15268 + } + } + }, + { + "to": { + "startLine": 169, + "startColumn": 4, + "startOffset": 12843, + "endLine": 170, + "endColumn": 12, + "endOffset": 12969 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 189, + "startColumn": 4, + "startOffset": 15273, + "endLine": 190, + "endColumn": 12, + "endOffset": 15399 + } + } + }, + { + "to": { + "startLine": 171, + "startColumn": 4, + "startOffset": 12974, + "endColumn": 116, + "endOffset": 13086 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 191, + "startColumn": 4, + "startOffset": 15404, + "endColumn": 116, + "endOffset": 15516 + } + } + }, + { + "to": { + "startLine": 172, + "startColumn": 4, + "startOffset": 13091, + "endColumn": 88, + "endOffset": 13175 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 192, + "startColumn": 4, + "startOffset": 15521, + "endColumn": 88, + "endOffset": 15605 + } + } + }, + { + "to": { + "startLine": 173, + "startColumn": 4, + "startOffset": 13180, + "endColumn": 110, + "endOffset": 13286 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 193, + "startColumn": 4, + "startOffset": 15610, + "endColumn": 110, + "endOffset": 15716 + } + } + }, + { + "to": { + "startLine": 174, + "startColumn": 4, + "startOffset": 13291, + "endColumn": 126, + "endOffset": 13413 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 194, + "startColumn": 4, + "startOffset": 15721, + "endColumn": 126, + "endOffset": 15843 + } + } + }, + { + "to": { + "startLine": 175, + "startColumn": 4, + "startOffset": 13418, + "endColumn": 100, + "endOffset": 13514 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 195, + "startColumn": 4, + "startOffset": 15848, + "endColumn": 100, + "endOffset": 15944 + } + } + }, + { + "to": { + "startLine": 176, + "startColumn": 4, + "startOffset": 13519, + "endColumn": 94, + "endOffset": 13609 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 196, + "startColumn": 4, + "startOffset": 15949, + "endColumn": 94, + "endOffset": 16039 + } + } + }, + { + "to": { + "startLine": 177, + "startColumn": 4, + "startOffset": 13614, + "endColumn": 122, + "endOffset": 13732 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 197, + "startColumn": 4, + "startOffset": 16044, + "endColumn": 122, + "endOffset": 16162 + } + } + }, + { + "to": { + "startLine": 178, + "startColumn": 4, + "startOffset": 13737, + "endColumn": 128, + "endOffset": 13861 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 198, + "startColumn": 4, + "startOffset": 16167, + "endColumn": 128, + "endOffset": 16291 + } + } + }, + { + "to": { + "startLine": 179, + "startColumn": 4, + "startOffset": 13866, + "endColumn": 116, + "endOffset": 13978 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 199, + "startColumn": 4, + "startOffset": 16296, + "endColumn": 116, + "endOffset": 16408 + } + } + }, + { + "to": { + "startLine": 180, + "startColumn": 4, + "startOffset": 13983, + "endLine": 181, + "endColumn": 12, + "endOffset": 14113 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 200, + "startColumn": 4, + "startOffset": 16413, + "endLine": 201, + "endColumn": 12, + "endOffset": 16543 + } + } + }, + { + "to": { + "startLine": 182, + "startColumn": 4, + "startOffset": 14118, + "endLine": 183, + "endColumn": 12, + "endOffset": 14256 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 202, + "startColumn": 4, + "startOffset": 16548, + "endLine": 203, + "endColumn": 12, + "endOffset": 16686 + } + } + }, + { + "to": { + "startLine": 184, + "startColumn": 4, + "startOffset": 14261, + "endLine": 185, + "endColumn": 12, + "endOffset": 14391 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 204, + "startColumn": 4, + "startOffset": 16691, + "endLine": 205, + "endColumn": 12, + "endOffset": 16821 + } + } + }, + { + "to": { + "startLine": 186, + "startColumn": 4, + "startOffset": 14396, + "endLine": 187, + "endColumn": 12, + "endOffset": 14510 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 206, + "startColumn": 4, + "startOffset": 16826, + "endLine": 207, + "endColumn": 12, + "endOffset": 16940 + } + } + }, + { + "to": { + "startLine": 188, + "startColumn": 4, + "startOffset": 14515, + "endLine": 191, + "endColumn": 12, + "endOffset": 14711 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 208, + "startColumn": 4, + "startOffset": 16945, + "endLine": 211, + "endColumn": 12, + "endOffset": 17141 + } + } + }, + { + "to": { + "startLine": 192, + "startColumn": 4, + "startOffset": 14716, + "endLine": 193, + "endColumn": 12, + "endOffset": 14830 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 212, + "startColumn": 4, + "startOffset": 17146, + "endLine": 213, + "endColumn": 12, + "endOffset": 17260 + } + } + }, + { + "to": { + "startLine": 194, + "startColumn": 4, + "startOffset": 14835, + "endColumn": 92, + "endOffset": 14923 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 214, + "startColumn": 4, + "startOffset": 17265, + "endColumn": 92, + "endOffset": 17353 + } + } + }, + { + "to": { + "startLine": 195, + "startColumn": 4, + "startOffset": 14928, + "endColumn": 110, + "endOffset": 15034 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 215, + "startColumn": 4, + "startOffset": 17358, + "endColumn": 110, + "endOffset": 17464 + } + } + }, + { + "to": { + "startLine": 196, + "startColumn": 4, + "startOffset": 15039, + "endColumn": 55, + "endOffset": 15090 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 216, + "startColumn": 4, + "startOffset": 17469, + "endColumn": 55, + "endOffset": 17520 + } + } + }, + { + "to": { + "startLine": 197, + "startColumn": 4, + "startOffset": 15095, + "endLine": 198, + "endColumn": 12, + "endOffset": 15197 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 217, + "startColumn": 4, + "startOffset": 17525, + "endLine": 218, + "endColumn": 12, + "endOffset": 17627 + } + } + }, + { + "to": { + "startLine": 199, + "startColumn": 4, + "startOffset": 15202, + "endLine": 202, + "endColumn": 12, + "endOffset": 15392 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 219, + "startColumn": 4, + "startOffset": 17632, + "endLine": 222, + "endColumn": 12, + "endOffset": 17822 + } + } + }, + { + "to": { + "startLine": 203, + "startColumn": 4, + "startOffset": 15397, + "endLine": 204, + "endColumn": 12, + "endOffset": 15503 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 223, + "startColumn": 4, + "startOffset": 17827, + "endLine": 224, + "endColumn": 12, + "endOffset": 17933 + } + } + }, + { + "to": { + "startLine": 205, + "startColumn": 4, + "startOffset": 15508, + "endLine": 206, + "endColumn": 12, + "endOffset": 15636 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 225, + "startColumn": 4, + "startOffset": 17938, + "endLine": 226, + "endColumn": 12, + "endOffset": 18066 + } + } + }, + { + "to": { + "startLine": 207, + "startColumn": 4, + "startOffset": 15641, + "endColumn": 94, + "endOffset": 15731 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 227, + "startColumn": 4, + "startOffset": 18071, + "endColumn": 94, + "endOffset": 18161 + } + } + }, + { + "to": { + "startLine": 208, + "startColumn": 4, + "startOffset": 15736, + "endColumn": 90, + "endOffset": 15822 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 228, + "startColumn": 4, + "startOffset": 18166, + "endColumn": 90, + "endOffset": 18252 + } + } + }, + { + "to": { + "startLine": 209, + "startColumn": 4, + "startOffset": 15827, + "endLine": 213, + "endColumn": 12, + "endOffset": 16131 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 229, + "startColumn": 4, + "startOffset": 18257, + "endLine": 233, + "endColumn": 12, + "endOffset": 18561 + } + } + }, + { + "to": { + "startLine": 214, + "startColumn": 4, + "startOffset": 16136, + "endColumn": 112, + "endOffset": 16244 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 234, + "startColumn": 4, + "startOffset": 18566, + "endColumn": 112, + "endOffset": 18674 + } + } + }, + { + "to": { + "startLine": 215, + "startColumn": 4, + "startOffset": 16249, + "endColumn": 116, + "endOffset": 16361 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 235, + "startColumn": 4, + "startOffset": 18679, + "endColumn": 116, + "endOffset": 18791 + } + } + }, + { + "to": { + "startLine": 216, + "startColumn": 4, + "startOffset": 16366, + "endLine": 217, + "endColumn": 12, + "endOffset": 16500 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 236, + "startColumn": 4, + "startOffset": 18796, + "endLine": 237, + "endColumn": 12, + "endOffset": 18930 + } + } + }, + { + "to": { + "startLine": 218, + "startColumn": 4, + "startOffset": 16505, + "endLine": 224, + "endColumn": 12, + "endOffset": 16853 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 240, + "startColumn": 4, + "startOffset": 19176, + "endLine": 246, + "endColumn": 12, + "endOffset": 19524 + } + } + }, + { + "to": { + "startLine": 225, + "startColumn": 4, + "startOffset": 16858, + "endLine": 231, + "endColumn": 12, + "endOffset": 17218 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 247, + "startColumn": 4, + "startOffset": 19529, + "endLine": 253, + "endColumn": 12, + "endOffset": 19889 + } + } + }, + { + "to": { + "startLine": 232, + "startColumn": 4, + "startOffset": 17223, + "endLine": 241, + "endColumn": 12, + "endOffset": 17903 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 254, + "startColumn": 4, + "startOffset": 19894, + "endLine": 263, + "endColumn": 12, + "endOffset": 20574 + } + } + }, + { + "to": { + "startLine": 242, + "startColumn": 4, + "startOffset": 17908, + "endLine": 251, + "endColumn": 12, + "endOffset": 18589 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-v21/values.xml", + "position": { + "startLine": 264, + "startColumn": 4, + "startOffset": 20579, + "endLine": 273, + "endColumn": 12, + "endOffset": 21260 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-vi.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-vi.json new file mode 100644 index 0000000..d2abf1e --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-vi.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 113, + "endOffset": 400 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 405, + "endColumn": 107, + "endOffset": 508 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 108, + "endOffset": 381 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 513, + "endColumn": 108, + "endOffset": 617 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 386, + "endColumn": 83, + "endOffset": 465 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 622, + "endColumn": 83, + "endOffset": 701 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 470, + "endColumn": 102, + "endOffset": 568 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 706, + "endColumn": 102, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 573, + "endColumn": 118, + "endOffset": 687 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 118, + "endOffset": 923 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 103, + "endOffset": 791 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 928, + "endColumn": 103, + "endOffset": 1027 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 796, + "endColumn": 108, + "endOffset": 900 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1032, + "endColumn": 108, + "endOffset": 1136 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 905, + "endColumn": 100, + "endOffset": 1001 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1141, + "endColumn": 100, + "endOffset": 1237 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1006, + "endColumn": 104, + "endOffset": 1106 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1242, + "endColumn": 104, + "endOffset": 1342 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1111, + "endColumn": 113, + "endOffset": 1220 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1347, + "endColumn": 113, + "endOffset": 1456 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1225, + "endColumn": 104, + "endOffset": 1325 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1461, + "endColumn": 104, + "endOffset": 1561 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1330, + "endColumn": 119, + "endOffset": 1445 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-vi/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 119, + "endOffset": 1681 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-w360dp-v13.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-w360dp-v13.json new file mode 100644 index 0000000..2e5f28e --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-w360dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-w360dp-v13/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 294, + "endColumn": 54, + "endOffset": 344 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-w480dp-v13.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-w480dp-v13.json new file mode 100644 index 0000000..12d22cd --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-w480dp-v13.json @@ -0,0 +1,45 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-w480dp-v13/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 293, + "endColumn": 61, + "endOffset": 350 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-w480dp-v13/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 594, + "endColumn": 71, + "endOffset": 661 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-w500dp-v13.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-w500dp-v13.json new file mode 100644 index 0000000..7ee137e --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-w500dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-w500dp-v13/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 294, + "endColumn": 54, + "endOffset": 344 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-w600dp-v13.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-w600dp-v13.json new file mode 100644 index 0000000..3b3486a --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-w600dp-v13.json @@ -0,0 +1,45 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 63, + "endOffset": 114 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-w600dp-v13/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 294, + "endColumn": 63, + "endOffset": 353 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 119, + "endColumn": 54, + "endOffset": 169 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-w600dp-v13/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 358, + "endColumn": 54, + "endOffset": 408 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-w720dp-v13.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-w720dp-v13.json new file mode 100644 index 0000000..731673b --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-w720dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 76, + "endOffset": 127 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-w720dp-v13/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 293, + "endColumn": 76, + "endOffset": 365 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-w820dp-v13.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-w820dp-v13.json new file mode 100644 index 0000000..d55e461 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-w820dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 57, + "endOffset": 108 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/values-w820dp/dimens.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 57, + "endOffset": 344 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-xlarge-land-v4.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-xlarge-land-v4.json new file mode 100644 index 0000000..e54a034 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-xlarge-land-v4.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 63, + "endOffset": 114 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-xlarge-land-v4/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 299, + "endColumn": 63, + "endOffset": 358 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json new file mode 100644 index 0000000..e8f1b4b --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json @@ -0,0 +1,140 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 76, + "endOffset": 127 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-xlarge-v4/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 293, + "endColumn": 76, + "endOffset": 365 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 132, + "endColumn": 63, + "endOffset": 191 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-xlarge-v4/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 609, + "endColumn": 63, + "endOffset": 668 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 196, + "endColumn": 66, + "endOffset": 258 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-xlarge-v4/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 673, + "endColumn": 66, + "endOffset": 735 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 263, + "endColumn": 66, + "endOffset": 325 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-xlarge-v4/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 740, + "endColumn": 66, + "endOffset": 802 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 330, + "endColumn": 65, + "endOffset": 391 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-xlarge-v4/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 807, + "endColumn": 65, + "endOffset": 868 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 396, + "endColumn": 65, + "endOffset": 457 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-xlarge-v4/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 873, + "endColumn": 65, + "endOffset": 934 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 462, + "endColumn": 54, + "endOffset": 512 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-xlarge-v4/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 939, + "endColumn": 54, + "endOffset": 989 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-zh-rCN.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-zh-rCN.json new file mode 100644 index 0000000..c6aefc7 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-zh-rCN.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 95, + "endOffset": 146 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 95, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 151, + "endColumn": 94, + "endOffset": 241 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 94, + "endOffset": 481 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 246, + "endColumn": 99, + "endOffset": 341 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 486, + "endColumn": 99, + "endOffset": 581 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 346, + "endColumn": 81, + "endOffset": 423 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 586, + "endColumn": 81, + "endOffset": 663 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 428, + "endColumn": 96, + "endOffset": 520 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 668, + "endColumn": 96, + "endOffset": 760 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 525, + "endColumn": 105, + "endOffset": 626 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 765, + "endColumn": 105, + "endOffset": 866 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 631, + "endColumn": 95, + "endOffset": 722 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 871, + "endColumn": 95, + "endOffset": 962 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 727, + "endColumn": 95, + "endOffset": 818 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 967, + "endColumn": 95, + "endOffset": 1058 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 823, + "endColumn": 94, + "endOffset": 913 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1063, + "endColumn": 94, + "endOffset": 1153 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 918, + "endColumn": 96, + "endOffset": 1010 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1158, + "endColumn": 96, + "endOffset": 1250 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1015, + "endColumn": 94, + "endOffset": 1105 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1255, + "endColumn": 94, + "endOffset": 1345 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1110, + "endColumn": 97, + "endOffset": 1203 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1350, + "endColumn": 97, + "endOffset": 1443 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1208, + "endColumn": 111, + "endOffset": 1315 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rCN/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1448, + "endColumn": 111, + "endOffset": 1555 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-zh-rHK.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-zh-rHK.json new file mode 100644 index 0000000..0e134cb --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-zh-rHK.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 94, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 92, + "endOffset": 238 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 92, + "endOffset": 478 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 243, + "endColumn": 99, + "endOffset": 338 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 483, + "endColumn": 99, + "endOffset": 578 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 343, + "endColumn": 81, + "endOffset": 420 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 583, + "endColumn": 81, + "endOffset": 660 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 425, + "endColumn": 96, + "endOffset": 517 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 665, + "endColumn": 96, + "endOffset": 757 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 522, + "endColumn": 107, + "endOffset": 625 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 762, + "endColumn": 107, + "endOffset": 865 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 630, + "endColumn": 95, + "endOffset": 721 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 870, + "endColumn": 95, + "endOffset": 961 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 726, + "endColumn": 95, + "endOffset": 817 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 966, + "endColumn": 95, + "endOffset": 1057 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 822, + "endColumn": 94, + "endOffset": 912 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 94, + "endOffset": 1152 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 917, + "endColumn": 96, + "endOffset": 1009 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1157, + "endColumn": 96, + "endOffset": 1249 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 94, + "endOffset": 1104 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1254, + "endColumn": 94, + "endOffset": 1344 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1109, + "endColumn": 97, + "endOffset": 1202 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1349, + "endColumn": 97, + "endOffset": 1442 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1207, + "endColumn": 112, + "endOffset": 1315 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rHK/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1447, + "endColumn": 112, + "endOffset": 1555 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-zh-rTW.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-zh-rTW.json new file mode 100644 index 0000000..89d5ff8 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-zh-rTW.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 94, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 92, + "endOffset": 238 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 92, + "endOffset": 478 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 243, + "endColumn": 99, + "endOffset": 338 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 483, + "endColumn": 99, + "endOffset": 578 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 343, + "endColumn": 81, + "endOffset": 420 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 583, + "endColumn": 81, + "endOffset": 660 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 425, + "endColumn": 96, + "endOffset": 517 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 665, + "endColumn": 96, + "endOffset": 757 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 522, + "endColumn": 107, + "endOffset": 625 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 762, + "endColumn": 107, + "endOffset": 865 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 630, + "endColumn": 95, + "endOffset": 721 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 870, + "endColumn": 95, + "endOffset": 961 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 726, + "endColumn": 95, + "endOffset": 817 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 966, + "endColumn": 95, + "endOffset": 1057 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 822, + "endColumn": 94, + "endOffset": 912 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 94, + "endOffset": 1152 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 917, + "endColumn": 96, + "endOffset": 1009 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1157, + "endColumn": 96, + "endOffset": 1249 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 94, + "endOffset": 1104 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1254, + "endColumn": 94, + "endOffset": 1344 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1109, + "endColumn": 99, + "endOffset": 1204 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1349, + "endColumn": 99, + "endOffset": 1444 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1209, + "endColumn": 112, + "endOffset": 1317 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zh-rTW/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1449, + "endColumn": 112, + "endOffset": 1557 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values-zu.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values-zu.json new file mode 100644 index 0000000..6c91f27 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values-zu.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 107, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 106, + "endOffset": 265 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 106, + "endOffset": 501 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 270, + "endColumn": 113, + "endOffset": 379 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 506, + "endColumn": 113, + "endOffset": 615 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 384, + "endColumn": 87, + "endOffset": 467 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 87, + "endOffset": 703 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 472, + "endColumn": 102, + "endOffset": 570 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 102, + "endOffset": 806 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 575, + "endColumn": 126, + "endOffset": 697 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 811, + "endColumn": 126, + "endOffset": 933 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 702, + "endColumn": 103, + "endOffset": 801 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 938, + "endColumn": 103, + "endOffset": 1037 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 806, + "endColumn": 105, + "endOffset": 907 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1042, + "endColumn": 105, + "endOffset": 1143 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 97, + "endOffset": 1005 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1148, + "endColumn": 97, + "endOffset": 1241 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 106, + "endOffset": 1112 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1246, + "endColumn": 106, + "endOffset": 1348 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 105, + "endOffset": 1218 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1353, + "endColumn": 105, + "endOffset": 1454 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1223, + "endColumn": 105, + "endOffset": 1324 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1459, + "endColumn": 105, + "endOffset": 1560 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1329, + "endColumn": 119, + "endOffset": 1444 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values-zu/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1565, + "endColumn": 119, + "endOffset": 1680 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/multi/values.json b/circlerefresh/build/intermediates/blame/res/debug/multi/values.json new file mode 100644 index 0000000..9a28ab0 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/multi/values.json @@ -0,0 +1,8607 @@ +[ + { + "outputFile": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 286, + "endColumn": 54, + "endOffset": 336 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 110, + "endColumn": 44, + "endOffset": 150 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 341, + "endColumn": 44, + "endOffset": 381 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 155, + "endColumn": 48, + "endOffset": 199 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 386, + "endColumn": 48, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 204, + "endColumn": 40, + "endOffset": 240 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 435, + "endColumn": 40, + "endOffset": 471 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 245, + "endColumn": 54, + "endOffset": 295 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 707, + "endColumn": 54, + "endOffset": 757 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 300, + "endColumn": 62, + "endOffset": 358 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 762, + "endColumn": 62, + "endOffset": 820 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 363, + "endColumn": 75, + "endOffset": 434 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 825, + "endColumn": 75, + "endOffset": 896 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 439, + "endColumn": 61, + "endOffset": 496 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1133, + "endColumn": 61, + "endOffset": 1190 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 501, + "endColumn": 72, + "endOffset": 569 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1195, + "endColumn": 72, + "endOffset": 1263 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 574, + "endColumn": 67, + "endOffset": 637 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1268, + "endColumn": 67, + "endOffset": 1331 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 642, + "endColumn": 77, + "endOffset": 715 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1567, + "endColumn": 77, + "endOffset": 1640 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 720, + "endColumn": 80, + "endOffset": 796 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1877, + "endColumn": 80, + "endOffset": 1953 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 801, + "endColumn": 60, + "endOffset": 857 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1958, + "endColumn": 60, + "endOffset": 2014 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 862, + "endColumn": 74, + "endOffset": 932 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2019, + "endColumn": 74, + "endOffset": 2089 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 937, + "endColumn": 75, + "endOffset": 1008 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2094, + "endColumn": 75, + "endOffset": 2165 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 76, + "endOffset": 1085 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2411, + "endColumn": 76, + "endOffset": 2483 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 77, + "endOffset": 1163 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2488, + "endColumn": 77, + "endOffset": 2561 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1168, + "endColumn": 69, + "endOffset": 1233 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2566, + "endColumn": 69, + "endOffset": 2631 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1238, + "endColumn": 70, + "endOffset": 1304 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2636, + "endColumn": 70, + "endOffset": 2702 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1309, + "endColumn": 60, + "endOffset": 1365 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2707, + "endColumn": 60, + "endOffset": 2763 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 61, + "endOffset": 1427 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2768, + "endColumn": 61, + "endOffset": 2825 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1432, + "endColumn": 76, + "endOffset": 1504 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2830, + "endColumn": 76, + "endOffset": 2902 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1509, + "endColumn": 77, + "endOffset": 1582 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2907, + "endColumn": 77, + "endOffset": 2980 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1587, + "endColumn": 105, + "endOffset": 1688 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2985, + "endColumn": 105, + "endOffset": 3086 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1693, + "endColumn": 105, + "endOffset": 1794 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3091, + "endColumn": 105, + "endOffset": 3192 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1799, + "endColumn": 78, + "endOffset": 1873 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3197, + "endColumn": 78, + "endOffset": 3271 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1878, + "endColumn": 79, + "endOffset": 1953 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3276, + "endColumn": 79, + "endOffset": 3351 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1958, + "endColumn": 56, + "endOffset": 2010 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3356, + "endColumn": 56, + "endOffset": 3408 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2015, + "endColumn": 57, + "endOffset": 2068 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3413, + "endColumn": 57, + "endOffset": 3466 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2073, + "endColumn": 73, + "endOffset": 2142 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3471, + "endColumn": 73, + "endOffset": 3540 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2147, + "endColumn": 74, + "endOffset": 2217 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3545, + "endColumn": 74, + "endOffset": 3615 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2222, + "endColumn": 64, + "endOffset": 2282 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3620, + "endColumn": 64, + "endOffset": 3680 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2287, + "endColumn": 65, + "endOffset": 2348 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3685, + "endColumn": 65, + "endOffset": 3746 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2353, + "endColumn": 66, + "endOffset": 2415 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3751, + "endColumn": 66, + "endOffset": 3813 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2420, + "endColumn": 67, + "endOffset": 2483 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3818, + "endColumn": 67, + "endOffset": 3881 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2488, + "endColumn": 103, + "endOffset": 2587 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3886, + "endColumn": 103, + "endOffset": 3985 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2592, + "endColumn": 105, + "endOffset": 2693 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3990, + "endColumn": 105, + "endOffset": 4091 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2698, + "endColumn": 79, + "endOffset": 2773 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4096, + "endColumn": 79, + "endOffset": 4171 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2778, + "endColumn": 80, + "endOffset": 2854 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4176, + "endColumn": 80, + "endOffset": 4252 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2859, + "endColumn": 58, + "endOffset": 2913 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4257, + "endColumn": 58, + "endOffset": 4311 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2918, + "endColumn": 58, + "endOffset": 2972 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4316, + "endColumn": 58, + "endOffset": 4370 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 2977, + "endColumn": 58, + "endOffset": 3031 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4375, + "endColumn": 58, + "endOffset": 4429 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3036, + "endColumn": 58, + "endOffset": 3090 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4434, + "endColumn": 58, + "endOffset": 4488 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3095, + "endColumn": 58, + "endOffset": 3149 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4493, + "endColumn": 58, + "endOffset": 4547 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3154, + "endColumn": 62, + "endOffset": 3212 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4552, + "endColumn": 62, + "endOffset": 4610 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3217, + "endColumn": 63, + "endOffset": 3276 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4615, + "endColumn": 63, + "endOffset": 4674 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3281, + "endColumn": 57, + "endOffset": 3334 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4679, + "endColumn": 57, + "endOffset": 4732 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3339, + "endColumn": 58, + "endOffset": 3393 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4737, + "endColumn": 58, + "endOffset": 4791 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3398, + "endColumn": 70, + "endOffset": 3464 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4796, + "endColumn": 70, + "endOffset": 4862 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3469, + "endColumn": 71, + "endOffset": 3536 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 4867, + "endColumn": 71, + "endOffset": 4934 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3541, + "endColumn": 71, + "endOffset": 3608 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 64, + "startColumn": 4, + "startOffset": 4939, + "endColumn": 71, + "endOffset": 5006 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 3613, + "endColumn": 72, + "endOffset": 3681 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 65, + "startColumn": 4, + "startOffset": 5011, + "endColumn": 72, + "endOffset": 5079 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3686, + "endColumn": 56, + "endOffset": 3738 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 66, + "startColumn": 4, + "startOffset": 5084, + "endColumn": 56, + "endOffset": 5136 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3743, + "endColumn": 57, + "endOffset": 3796 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 67, + "startColumn": 4, + "startOffset": 5141, + "endColumn": 57, + "endOffset": 5194 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 3801, + "endColumn": 72, + "endOffset": 3869 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 68, + "startColumn": 4, + "startOffset": 5199, + "endColumn": 72, + "endOffset": 5267 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 3874, + "endColumn": 73, + "endOffset": 3943 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 69, + "startColumn": 4, + "startOffset": 5272, + "endColumn": 73, + "endOffset": 5341 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 3948, + "endColumn": 73, + "endOffset": 4017 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 70, + "startColumn": 4, + "startOffset": 5346, + "endColumn": 73, + "endOffset": 5415 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4022, + "endColumn": 74, + "endOffset": 4092 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 71, + "startColumn": 4, + "startOffset": 5420, + "endColumn": 74, + "endOffset": 5490 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4097, + "endColumn": 71, + "endOffset": 4164 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 72, + "startColumn": 4, + "startOffset": 5495, + "endColumn": 71, + "endOffset": 5562 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4169, + "endColumn": 72, + "endOffset": 4237 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 73, + "startColumn": 4, + "startOffset": 5567, + "endColumn": 72, + "endOffset": 5635 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4242, + "endColumn": 69, + "endOffset": 4307 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 74, + "startColumn": 4, + "startOffset": 5640, + "endColumn": 69, + "endOffset": 5705 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 4312, + "endColumn": 70, + "endOffset": 4378 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 75, + "startColumn": 4, + "startOffset": 5710, + "endColumn": 70, + "endOffset": 5776 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 19948, + "endColumn": 68, + "endOffset": 20012 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 103, + "startColumn": 4, + "startOffset": 21387, + "endColumn": 68, + "endOffset": 21451 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 20017, + "endColumn": 69, + "endOffset": 20082 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 104, + "startColumn": 4, + "startOffset": 21456, + "endColumn": 69, + "endOffset": 21521 + } + } + }, + { + "to": { + "startLine": 92, + "startColumn": 4, + "startOffset": 20087, + "endColumn": 69, + "endOffset": 20152 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 105, + "startColumn": 4, + "startOffset": 21526, + "endColumn": 69, + "endOffset": 21591 + } + } + }, + { + "to": { + "startLine": 93, + "startColumn": 4, + "startOffset": 20157, + "endColumn": 76, + "endOffset": 20229 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 106, + "startColumn": 4, + "startOffset": 21596, + "endColumn": 76, + "endOffset": 21668 + } + } + }, + { + "to": { + "startLine": 94, + "startColumn": 4, + "startOffset": 20234, + "endColumn": 78, + "endOffset": 20308 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 107, + "startColumn": 4, + "startOffset": 21673, + "endColumn": 78, + "endOffset": 21747 + } + } + }, + { + "to": { + "startLine": 95, + "startColumn": 4, + "startOffset": 20313, + "endColumn": 75, + "endOffset": 20384 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 108, + "startColumn": 4, + "startOffset": 21752, + "endColumn": 75, + "endOffset": 21823 + } + } + }, + { + "to": { + "startLine": 96, + "startColumn": 4, + "startOffset": 20389, + "endColumn": 76, + "endOffset": 20461 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 109, + "startColumn": 4, + "startOffset": 21828, + "endColumn": 76, + "endOffset": 21900 + } + } + }, + { + "to": { + "startLine": 97, + "startColumn": 4, + "startOffset": 20466, + "endColumn": 63, + "endOffset": 20525 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 112, + "startColumn": 4, + "startOffset": 22137, + "endColumn": 63, + "endOffset": 22196 + } + } + }, + { + "to": { + "startLine": 98, + "startColumn": 4, + "startOffset": 20530, + "endColumn": 64, + "endOffset": 20590 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 113, + "startColumn": 4, + "startOffset": 22201, + "endColumn": 64, + "endOffset": 22261 + } + } + }, + { + "to": { + "startLine": 99, + "startColumn": 4, + "startOffset": 20595, + "endColumn": 68, + "endOffset": 20659 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 114, + "startColumn": 4, + "startOffset": 22266, + "endColumn": 68, + "endOffset": 22330 + } + } + }, + { + "to": { + "startLine": 100, + "startColumn": 4, + "startOffset": 20664, + "endColumn": 76, + "endOffset": 20736 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 117, + "startColumn": 4, + "startOffset": 22576, + "endColumn": 76, + "endOffset": 22648 + } + } + }, + { + "to": { + "startLine": 101, + "startColumn": 4, + "startOffset": 20741, + "endColumn": 74, + "endOffset": 20811 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 118, + "startColumn": 4, + "startOffset": 22653, + "endColumn": 74, + "endOffset": 22723 + } + } + }, + { + "to": { + "startLine": 102, + "startColumn": 4, + "startOffset": 20816, + "endColumn": 68, + "endOffset": 20880 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 119, + "startColumn": 4, + "startOffset": 22728, + "endColumn": 68, + "endOffset": 22792 + } + } + }, + { + "to": { + "startLine": 103, + "startColumn": 4, + "startOffset": 20885, + "endColumn": 67, + "endOffset": 20948 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 120, + "startColumn": 4, + "startOffset": 22797, + "endColumn": 67, + "endOffset": 22860 + } + } + }, + { + "to": { + "startLine": 104, + "startColumn": 4, + "startOffset": 20953, + "endColumn": 76, + "endOffset": 21025 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 121, + "startColumn": 4, + "startOffset": 22865, + "endColumn": 76, + "endOffset": 22937 + } + } + }, + { + "to": { + "startLine": 105, + "startColumn": 4, + "startOffset": 21030, + "endColumn": 65, + "endOffset": 21091 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 124, + "startColumn": 4, + "startOffset": 23174, + "endColumn": 65, + "endOffset": 23235 + } + } + }, + { + "to": { + "startLine": 106, + "startColumn": 4, + "startOffset": 21096, + "endColumn": 96, + "endOffset": 21188 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 125, + "startColumn": 4, + "startOffset": 23240, + "endColumn": 96, + "endOffset": 23332 + } + } + }, + { + "to": { + "startLine": 107, + "startColumn": 4, + "startOffset": 21193, + "endColumn": 64, + "endOffset": 21253 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 126, + "startColumn": 4, + "startOffset": 23337, + "endColumn": 64, + "endOffset": 23397 + } + } + }, + { + "to": { + "startLine": 108, + "startColumn": 4, + "startOffset": 21258, + "endColumn": 68, + "endOffset": 21322 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 127, + "startColumn": 4, + "startOffset": 23402, + "endColumn": 68, + "endOffset": 23466 + } + } + }, + { + "to": { + "startLine": 109, + "startColumn": 4, + "startOffset": 21327, + "endColumn": 98, + "endOffset": 21421 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 128, + "startColumn": 4, + "startOffset": 23471, + "endColumn": 98, + "endOffset": 23565 + } + } + }, + { + "to": { + "startLine": 110, + "startColumn": 4, + "startOffset": 21426, + "endColumn": 58, + "endOffset": 21480 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 131, + "startColumn": 4, + "startOffset": 23802, + "endColumn": 58, + "endOffset": 23856 + } + } + }, + { + "to": { + "startLine": 111, + "startColumn": 4, + "startOffset": 21485, + "endColumn": 57, + "endOffset": 21538 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 134, + "startColumn": 4, + "startOffset": 24093, + "endColumn": 57, + "endOffset": 24146 + } + } + }, + { + "to": { + "startLine": 112, + "startColumn": 4, + "startOffset": 21543, + "endColumn": 56, + "endOffset": 21595 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 135, + "startColumn": 4, + "startOffset": 24151, + "endColumn": 56, + "endOffset": 24203 + } + } + }, + { + "to": { + "startLine": 113, + "startColumn": 4, + "startOffset": 21600, + "endColumn": 58, + "endOffset": 21654 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 136, + "startColumn": 4, + "startOffset": 24208, + "endColumn": 58, + "endOffset": 24262 + } + } + }, + { + "to": { + "startLine": 114, + "startColumn": 4, + "startOffset": 21659, + "endColumn": 71, + "endOffset": 21726 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 137, + "startColumn": 4, + "startOffset": 24267, + "endColumn": 71, + "endOffset": 24334 + } + } + }, + { + "to": { + "startLine": 115, + "startColumn": 4, + "startOffset": 21731, + "endColumn": 67, + "endOffset": 21794 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 138, + "startColumn": 4, + "startOffset": 24339, + "endColumn": 67, + "endOffset": 24402 + } + } + }, + { + "to": { + "startLine": 116, + "startColumn": 4, + "startOffset": 21799, + "endColumn": 67, + "endOffset": 21862 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 139, + "startColumn": 4, + "startOffset": 24407, + "endColumn": 67, + "endOffset": 24470 + } + } + }, + { + "to": { + "startLine": 117, + "startColumn": 4, + "startOffset": 21867, + "endColumn": 58, + "endOffset": 21921 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 140, + "startColumn": 4, + "startOffset": 24475, + "endColumn": 58, + "endOffset": 24529 + } + } + }, + { + "to": { + "startLine": 118, + "startColumn": 4, + "startOffset": 21926, + "endColumn": 62, + "endOffset": 21984 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 141, + "startColumn": 4, + "startOffset": 24534, + "endColumn": 62, + "endOffset": 24592 + } + } + }, + { + "to": { + "startLine": 119, + "startColumn": 4, + "startOffset": 21989, + "endColumn": 89, + "endOffset": 22074 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 144, + "startColumn": 4, + "startOffset": 24838, + "endColumn": 89, + "endOffset": 24923 + } + } + }, + { + "to": { + "startLine": 120, + "startColumn": 4, + "startOffset": 22079, + "endColumn": 90, + "endOffset": 22165 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 145, + "startColumn": 4, + "startOffset": 24928, + "endColumn": 90, + "endOffset": 25014 + } + } + }, + { + "to": { + "startLine": 121, + "startColumn": 4, + "startOffset": 22170, + "endColumn": 59, + "endOffset": 22225 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 148, + "startColumn": 4, + "startOffset": 25251, + "endColumn": 59, + "endOffset": 25306 + } + } + }, + { + "to": { + "startLine": 122, + "startColumn": 4, + "startOffset": 22230, + "endColumn": 65, + "endOffset": 22291 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 149, + "startColumn": 4, + "startOffset": 25311, + "endColumn": 65, + "endOffset": 25372 + } + } + }, + { + "to": { + "startLine": 123, + "startColumn": 4, + "startOffset": 22296, + "endColumn": 66, + "endOffset": 22358 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 150, + "startColumn": 4, + "startOffset": 25377, + "endColumn": 66, + "endOffset": 25439 + } + } + }, + { + "to": { + "startLine": 124, + "startColumn": 4, + "startOffset": 22363, + "endColumn": 65, + "endOffset": 22424 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 151, + "startColumn": 4, + "startOffset": 25444, + "endColumn": 65, + "endOffset": 25505 + } + } + }, + { + "to": { + "startLine": 125, + "startColumn": 4, + "startOffset": 22429, + "endColumn": 69, + "endOffset": 22494 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 152, + "startColumn": 4, + "startOffset": 25510, + "endColumn": 69, + "endOffset": 25575 + } + } + }, + { + "to": { + "startLine": 126, + "startColumn": 4, + "startOffset": 22499, + "endColumn": 63, + "endOffset": 22558 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 153, + "startColumn": 4, + "startOffset": 25580, + "endColumn": 63, + "endOffset": 25639 + } + } + }, + { + "to": { + "startLine": 127, + "startColumn": 4, + "startOffset": 22563, + "endColumn": 52, + "endOffset": 22611 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 156, + "startColumn": 4, + "startOffset": 25885, + "endColumn": 52, + "endOffset": 25933 + } + } + }, + { + "to": { + "startLine": 128, + "startColumn": 4, + "startOffset": 22616, + "endColumn": 112, + "endOffset": 22724 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 157, + "startColumn": 4, + "startOffset": 25938, + "endColumn": 112, + "endOffset": 26046 + } + } + }, + { + "to": { + "startLine": 129, + "startColumn": 4, + "startOffset": 22729, + "endColumn": 57, + "endOffset": 22782 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 160, + "startColumn": 4, + "startOffset": 26283, + "endColumn": 57, + "endOffset": 26336 + } + } + }, + { + "to": { + "startLine": 130, + "startColumn": 4, + "startOffset": 22787, + "endColumn": 64, + "endOffset": 22847 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 161, + "startColumn": 4, + "startOffset": 26341, + "endColumn": 64, + "endOffset": 26401 + } + } + }, + { + "to": { + "startLine": 131, + "startColumn": 4, + "startOffset": 22852, + "endColumn": 63, + "endOffset": 22911 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 162, + "startColumn": 4, + "startOffset": 26406, + "endColumn": 63, + "endOffset": 26465 + } + } + }, + { + "to": { + "startLine": 132, + "startColumn": 4, + "startOffset": 22916, + "endColumn": 48, + "endOffset": 22960 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 163, + "startColumn": 4, + "startOffset": 26470, + "endColumn": 48, + "endOffset": 26514 + } + } + }, + { + "to": { + "startLine": 133, + "startColumn": 4, + "startOffset": 22965, + "endColumn": 60, + "endOffset": 23021 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 166, + "startColumn": 4, + "startOffset": 26760, + "endColumn": 60, + "endOffset": 26816 + } + } + }, + { + "to": { + "startLine": 134, + "startColumn": 4, + "startOffset": 23026, + "endColumn": 60, + "endOffset": 23082 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 167, + "startColumn": 4, + "startOffset": 26821, + "endColumn": 60, + "endOffset": 26877 + } + } + }, + { + "to": { + "startLine": 135, + "startColumn": 4, + "startOffset": 23087, + "endColumn": 60, + "endOffset": 23143 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 168, + "startColumn": 4, + "startOffset": 26882, + "endColumn": 60, + "endOffset": 26938 + } + } + }, + { + "to": { + "startLine": 136, + "startColumn": 4, + "startOffset": 23148, + "endColumn": 61, + "endOffset": 23205 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 169, + "startColumn": 4, + "startOffset": 26943, + "endColumn": 61, + "endOffset": 27000 + } + } + }, + { + "to": { + "startLine": 137, + "startColumn": 4, + "startOffset": 23210, + "endColumn": 63, + "endOffset": 23269 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 170, + "startColumn": 4, + "startOffset": 27005, + "endColumn": 63, + "endOffset": 27064 + } + } + }, + { + "to": { + "startLine": 138, + "startColumn": 4, + "startOffset": 23274, + "endColumn": 63, + "endOffset": 23333 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 171, + "startColumn": 4, + "startOffset": 27069, + "endColumn": 63, + "endOffset": 27128 + } + } + }, + { + "to": { + "startLine": 139, + "startColumn": 4, + "startOffset": 23338, + "endColumn": 63, + "endOffset": 23397 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 172, + "startColumn": 4, + "startOffset": 27133, + "endColumn": 63, + "endOffset": 27192 + } + } + }, + { + "to": { + "startLine": 140, + "startColumn": 4, + "startOffset": 23402, + "endColumn": 64, + "endOffset": 23462 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 173, + "startColumn": 4, + "startOffset": 27197, + "endColumn": 64, + "endOffset": 27257 + } + } + }, + { + "to": { + "startLine": 141, + "startColumn": 4, + "startOffset": 23467, + "endColumn": 62, + "endOffset": 23525 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 174, + "startColumn": 4, + "startOffset": 27262, + "endColumn": 62, + "endOffset": 27320 + } + } + }, + { + "to": { + "startLine": 142, + "startColumn": 4, + "startOffset": 23530, + "endColumn": 59, + "endOffset": 23585 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 175, + "startColumn": 4, + "startOffset": 27325, + "endColumn": 59, + "endOffset": 27380 + } + } + }, + { + "to": { + "startLine": 143, + "startColumn": 4, + "startOffset": 23590, + "endColumn": 60, + "endOffset": 23646 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 176, + "startColumn": 4, + "startOffset": 27385, + "endColumn": 60, + "endOffset": 27441 + } + } + }, + { + "to": { + "startLine": 144, + "startColumn": 4, + "startOffset": 23651, + "endColumn": 58, + "endOffset": 23705 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 177, + "startColumn": 4, + "startOffset": 27446, + "endColumn": 58, + "endOffset": 27500 + } + } + }, + { + "to": { + "startLine": 145, + "startColumn": 4, + "startOffset": 23710, + "endColumn": 59, + "endOffset": 23765 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 178, + "startColumn": 4, + "startOffset": 27505, + "endColumn": 59, + "endOffset": 27560 + } + } + }, + { + "to": { + "startLine": 146, + "startColumn": 4, + "startOffset": 23770, + "endColumn": 61, + "endOffset": 23827 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 179, + "startColumn": 4, + "startOffset": 27565, + "endColumn": 61, + "endOffset": 27622 + } + } + }, + { + "to": { + "startLine": 147, + "startColumn": 4, + "startOffset": 23832, + "endColumn": 70, + "endOffset": 23898 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 180, + "startColumn": 4, + "startOffset": 27627, + "endColumn": 70, + "endOffset": 27693 + } + } + }, + { + "to": { + "startLine": 148, + "startColumn": 4, + "startOffset": 23903, + "endColumn": 59, + "endOffset": 23958 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 181, + "startColumn": 4, + "startOffset": 27698, + "endColumn": 59, + "endOffset": 27753 + } + } + }, + { + "to": { + "startLine": 149, + "startColumn": 4, + "startOffset": 23963, + "endColumn": 67, + "endOffset": 24026 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 182, + "startColumn": 4, + "startOffset": 27758, + "endColumn": 67, + "endOffset": 27821 + } + } + }, + { + "to": { + "startLine": 150, + "startColumn": 4, + "startOffset": 24031, + "endColumn": 57, + "endOffset": 24084 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/values/dimens.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 88, + "endColumn": 57, + "endOffset": 141 + } + } + }, + { + "to": { + "startLine": 151, + "startColumn": 4, + "startOffset": 24089, + "endColumn": 55, + "endOffset": 24140 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/values/dimens.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 146, + "endColumn": 55, + "endOffset": 197 + } + } + }, + { + "to": { + "startLine": 152, + "startColumn": 4, + "startOffset": 24145, + "endColumn": 66, + "endOffset": 24207 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 185, + "startColumn": 4, + "startOffset": 28058, + "endColumn": 66, + "endOffset": 28120 + } + } + }, + { + "to": { + "startLine": 153, + "startColumn": 4, + "startOffset": 24212, + "endColumn": 67, + "endOffset": 24275 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 186, + "startColumn": 4, + "startOffset": 28125, + "endColumn": 67, + "endOffset": 28188 + } + } + }, + { + "to": { + "startLine": 154, + "startColumn": 4, + "startOffset": 24280, + "endColumn": 67, + "endOffset": 24343 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 187, + "startColumn": 4, + "startOffset": 28193, + "endColumn": 67, + "endOffset": 28256 + } + } + }, + { + "to": { + "startLine": 155, + "startColumn": 4, + "startOffset": 24348, + "endColumn": 67, + "endOffset": 24411 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 188, + "startColumn": 4, + "startOffset": 28261, + "endColumn": 67, + "endOffset": 28324 + } + } + }, + { + "to": { + "startLine": 156, + "startColumn": 4, + "startOffset": 24416, + "endColumn": 85, + "endOffset": 24497 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 191, + "startColumn": 4, + "startOffset": 28570, + "endColumn": 85, + "endOffset": 28651 + } + } + }, + { + "to": { + "startLine": 157, + "startColumn": 4, + "startOffset": 24502, + "endColumn": 86, + "endOffset": 24584 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 192, + "startColumn": 4, + "startOffset": 28656, + "endColumn": 86, + "endOffset": 28738 + } + } + }, + { + "to": { + "startLine": 158, + "startColumn": 4, + "startOffset": 24589, + "endColumn": 56, + "endOffset": 24641 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 195, + "startColumn": 4, + "startOffset": 28972, + "endColumn": 56, + "endOffset": 29024 + } + } + }, + { + "to": { + "startLine": 159, + "startColumn": 4, + "startOffset": 24646, + "endColumn": 47, + "endOffset": 24689 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 196, + "startColumn": 4, + "startOffset": 29029, + "endColumn": 47, + "endOffset": 29072 + } + } + }, + { + "to": { + "startLine": 160, + "startColumn": 4, + "startOffset": 24694, + "endColumn": 48, + "endOffset": 24738 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 197, + "startColumn": 4, + "startOffset": 29077, + "endColumn": 48, + "endOffset": 29121 + } + } + }, + { + "to": { + "startLine": 161, + "startColumn": 4, + "startOffset": 24743, + "endColumn": 50, + "endOffset": 24789 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 198, + "startColumn": 4, + "startOffset": 29126, + "endColumn": 50, + "endOffset": 29172 + } + } + }, + { + "to": { + "startLine": 162, + "startColumn": 4, + "startOffset": 24794, + "endColumn": 33, + "endOffset": 24823 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 199, + "startColumn": 4, + "startOffset": 29177, + "endColumn": 33, + "endOffset": 29206 + } + } + }, + { + "to": { + "startLine": 163, + "startColumn": 4, + "startOffset": 24828, + "endColumn": 46, + "endOffset": 24870 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 200, + "startColumn": 4, + "startOffset": 29211, + "endColumn": 46, + "endOffset": 29253 + } + } + }, + { + "to": { + "startLine": 164, + "startColumn": 4, + "startOffset": 24875, + "endColumn": 48, + "endOffset": 24919 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 201, + "startColumn": 4, + "startOffset": 29258, + "endColumn": 48, + "endOffset": 29302 + } + } + }, + { + "to": { + "startLine": 165, + "startColumn": 4, + "startOffset": 24924, + "endColumn": 45, + "endOffset": 24965 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 202, + "startColumn": 4, + "startOffset": 29307, + "endColumn": 45, + "endOffset": 29348 + } + } + }, + { + "to": { + "startLine": 166, + "startColumn": 4, + "startOffset": 24970, + "endColumn": 31, + "endOffset": 24997 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 203, + "startColumn": 4, + "startOffset": 29353, + "endColumn": 31, + "endOffset": 29380 + } + } + }, + { + "to": { + "startLine": 167, + "startColumn": 4, + "startOffset": 25002, + "endColumn": 63, + "endOffset": 25061 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 206, + "startColumn": 4, + "startOffset": 29617, + "endColumn": 63, + "endOffset": 29676 + } + } + }, + { + "to": { + "startLine": 168, + "startColumn": 4, + "startOffset": 25066, + "endColumn": 61, + "endOffset": 25123 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 207, + "startColumn": 4, + "startOffset": 29681, + "endColumn": 61, + "endOffset": 29738 + } + } + }, + { + "to": { + "startLine": 169, + "startColumn": 4, + "startOffset": 25128, + "endColumn": 54, + "endOffset": 25178 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 210, + "startColumn": 4, + "startOffset": 29975, + "endColumn": 54, + "endOffset": 30025 + } + } + }, + { + "to": { + "startLine": 170, + "startColumn": 4, + "startOffset": 25183, + "endColumn": 73, + "endOffset": 25252 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 213, + "startColumn": 4, + "startOffset": 30263, + "endColumn": 73, + "endOffset": 30332 + } + } + }, + { + "to": { + "startLine": 171, + "startColumn": 4, + "startOffset": 25257, + "endColumn": 77, + "endOffset": 25330 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 214, + "startColumn": 4, + "startOffset": 30337, + "endColumn": 77, + "endOffset": 30410 + } + } + }, + { + "to": { + "startLine": 172, + "startColumn": 4, + "startOffset": 25335, + "endColumn": 92, + "endOffset": 25423 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 215, + "startColumn": 4, + "startOffset": 30415, + "endColumn": 92, + "endOffset": 30503 + } + } + }, + { + "to": { + "startLine": 173, + "startColumn": 4, + "startOffset": 25428, + "endColumn": 69, + "endOffset": 25493 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 216, + "startColumn": 4, + "startOffset": 30508, + "endColumn": 69, + "endOffset": 30573 + } + } + }, + { + "to": { + "startLine": 174, + "startColumn": 4, + "startOffset": 25498, + "endColumn": 77, + "endOffset": 25571 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 217, + "startColumn": 4, + "startOffset": 30578, + "endColumn": 77, + "endOffset": 30651 + } + } + }, + { + "to": { + "startLine": 175, + "startColumn": 4, + "startOffset": 25576, + "endColumn": 53, + "endOffset": 25625 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 218, + "startColumn": 4, + "startOffset": 30656, + "endColumn": 53, + "endOffset": 30705 + } + } + }, + { + "to": { + "startLine": 176, + "startColumn": 4, + "startOffset": 25630, + "endColumn": 69, + "endOffset": 25695 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 219, + "startColumn": 4, + "startOffset": 30710, + "endColumn": 69, + "endOffset": 30775 + } + } + }, + { + "to": { + "startLine": 177, + "startColumn": 4, + "startOffset": 25700, + "endColumn": 84, + "endOffset": 25780 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 220, + "startColumn": 4, + "startOffset": 30780, + "endColumn": 84, + "endOffset": 30860 + } + } + }, + { + "to": { + "startLine": 178, + "startColumn": 4, + "startOffset": 25785, + "endColumn": 51, + "endOffset": 25832 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 221, + "startColumn": 4, + "startOffset": 30865, + "endColumn": 51, + "endOffset": 30912 + } + } + }, + { + "to": { + "startLine": 179, + "startColumn": 4, + "startOffset": 25837, + "endColumn": 72, + "endOffset": 25905 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 222, + "startColumn": 4, + "startOffset": 30917, + "endColumn": 72, + "endOffset": 30985 + } + } + }, + { + "to": { + "startLine": 180, + "startColumn": 4, + "startOffset": 25910, + "endColumn": 73, + "endOffset": 25979 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 223, + "startColumn": 4, + "startOffset": 30990, + "endColumn": 73, + "endOffset": 31059 + } + } + }, + { + "to": { + "startLine": 181, + "startColumn": 4, + "startOffset": 25984, + "endColumn": 68, + "endOffset": 26048 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 224, + "startColumn": 4, + "startOffset": 31064, + "endColumn": 68, + "endOffset": 31128 + } + } + }, + { + "to": { + "startLine": 182, + "startColumn": 4, + "startOffset": 26053, + "endColumn": 74, + "endOffset": 26123 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 225, + "startColumn": 4, + "startOffset": 31133, + "endColumn": 74, + "endOffset": 31203 + } + } + }, + { + "to": { + "startLine": 183, + "startColumn": 4, + "startOffset": 26128, + "endColumn": 73, + "endOffset": 26197 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 226, + "startColumn": 4, + "startOffset": 31208, + "endColumn": 73, + "endOffset": 31277 + } + } + }, + { + "to": { + "startLine": 184, + "startColumn": 4, + "startOffset": 26202, + "endColumn": 73, + "endOffset": 26271 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 227, + "startColumn": 4, + "startOffset": 31282, + "endColumn": 73, + "endOffset": 31351 + } + } + }, + { + "to": { + "startLine": 185, + "startColumn": 4, + "startOffset": 26276, + "endColumn": 88, + "endOffset": 26360 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 228, + "startColumn": 4, + "startOffset": 31356, + "endColumn": 88, + "endOffset": 31440 + } + } + }, + { + "to": { + "startLine": 186, + "startColumn": 4, + "startOffset": 26365, + "endColumn": 69, + "endOffset": 26430 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 229, + "startColumn": 4, + "startOffset": 31445, + "endColumn": 69, + "endOffset": 31510 + } + } + }, + { + "to": { + "startLine": 187, + "startColumn": 4, + "startOffset": 26435, + "endColumn": 52, + "endOffset": 26483 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/values/strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 121, + "endColumn": 52, + "endOffset": 169 + } + } + }, + { + "to": { + "startLine": 188, + "startColumn": 4, + "startOffset": 26488, + "endColumn": 50, + "endOffset": 26534 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/values/strings.xml", + "position": { + "startLine": 1, + "startColumn": 4, + "startOffset": 16, + "endColumn": 50, + "endOffset": 62 + } + } + }, + { + "to": { + "startLine": 189, + "startColumn": 4, + "startOffset": 26539, + "endColumn": 52, + "endOffset": 26587 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/values/strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 68, + "endColumn": 52, + "endOffset": 116 + } + } + }, + { + "to": { + "startLine": 190, + "startColumn": 4, + "startOffset": 26592, + "endColumn": 77, + "endOffset": 26665 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 232, + "startColumn": 4, + "startOffset": 31747, + "endColumn": 77, + "endOffset": 31820 + } + } + }, + { + "to": { + "startLine": 191, + "startColumn": 4, + "startOffset": 26670, + "endColumn": 89, + "endOffset": 26755 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 233, + "startColumn": 4, + "startOffset": 31825, + "endColumn": 89, + "endOffset": 31910 + } + } + }, + { + "to": { + "startLine": 192, + "startColumn": 4, + "startOffset": 26760, + "endColumn": 87, + "endOffset": 26843 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 234, + "startColumn": 4, + "startOffset": 31915, + "endColumn": 87, + "endOffset": 31998 + } + } + }, + { + "to": { + "startLine": 193, + "startColumn": 4, + "startOffset": 26848, + "endColumn": 95, + "endOffset": 26939 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 235, + "startColumn": 4, + "startOffset": 32003, + "endColumn": 95, + "endOffset": 32094 + } + } + }, + { + "to": { + "startLine": 194, + "startColumn": 4, + "startOffset": 26944, + "endLine": 196, + "endColumn": 12, + "endOffset": 27069 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/values/styles.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 54, + "endLine": 5, + "endColumn": 12, + "endOffset": 179 + } + } + }, + { + "to": { + "startLine": 197, + "startColumn": 4, + "startOffset": 27074, + "endLine": 203, + "endColumn": 12, + "endOffset": 27570 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 238, + "startColumn": 4, + "startOffset": 32336, + "endLine": 244, + "endColumn": 12, + "endOffset": 32832 + } + } + }, + { + "to": { + "startLine": 204, + "startColumn": 4, + "startOffset": 27575, + "endColumn": 88, + "endOffset": 27659 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 245, + "startColumn": 4, + "startOffset": 32837, + "endColumn": 88, + "endOffset": 32921 + } + } + }, + { + "to": { + "startLine": 205, + "startColumn": 4, + "startOffset": 27664, + "endLine": 208, + "endColumn": 12, + "endOffset": 27906 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 246, + "startColumn": 4, + "startOffset": 32926, + "endLine": 249, + "endColumn": 12, + "endOffset": 33168 + } + } + }, + { + "to": { + "startLine": 209, + "startColumn": 4, + "startOffset": 27911, + "endLine": 212, + "endColumn": 12, + "endOffset": 28187 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 250, + "startColumn": 4, + "startOffset": 33173, + "endLine": 253, + "endColumn": 12, + "endOffset": 33449 + } + } + }, + { + "to": { + "startLine": 213, + "startColumn": 4, + "startOffset": 28192, + "endLine": 217, + "endColumn": 12, + "endOffset": 28472 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 254, + "startColumn": 4, + "startOffset": 33454, + "endLine": 258, + "endColumn": 12, + "endOffset": 33734 + } + } + }, + { + "to": { + "startLine": 218, + "startColumn": 4, + "startOffset": 28477, + "endLine": 223, + "endColumn": 12, + "endOffset": 28865 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 259, + "startColumn": 4, + "startOffset": 33739, + "endLine": 264, + "endColumn": 12, + "endOffset": 34127 + } + } + }, + { + "to": { + "startLine": 224, + "startColumn": 4, + "startOffset": 28870, + "endLine": 230, + "endColumn": 12, + "endOffset": 29342 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 267, + "startColumn": 4, + "startOffset": 34374, + "endLine": 273, + "endColumn": 12, + "endOffset": 34846 + } + } + }, + { + "to": { + "startLine": 231, + "startColumn": 4, + "startOffset": 29347, + "endLine": 234, + "endColumn": 12, + "endOffset": 29564 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 274, + "startColumn": 4, + "startOffset": 34851, + "endLine": 277, + "endColumn": 12, + "endOffset": 35068 + } + } + }, + { + "to": { + "startLine": 235, + "startColumn": 4, + "startOffset": 29569, + "endLine": 238, + "endColumn": 12, + "endOffset": 29786 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 278, + "startColumn": 4, + "startOffset": 35073, + "endLine": 281, + "endColumn": 12, + "endOffset": 35290 + } + } + }, + { + "to": { + "startLine": 239, + "startColumn": 4, + "startOffset": 29791, + "endLine": 243, + "endColumn": 12, + "endOffset": 30054 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 282, + "startColumn": 4, + "startOffset": 35295, + "endLine": 286, + "endColumn": 12, + "endOffset": 35558 + } + } + }, + { + "to": { + "startLine": 244, + "startColumn": 4, + "startOffset": 30059, + "endLine": 247, + "endColumn": 12, + "endOffset": 30281 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 287, + "startColumn": 4, + "startOffset": 35563, + "endLine": 290, + "endColumn": 12, + "endOffset": 35785 + } + } + }, + { + "to": { + "startLine": 248, + "startColumn": 4, + "startOffset": 30286, + "endLine": 251, + "endColumn": 12, + "endOffset": 30511 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 291, + "startColumn": 4, + "startOffset": 35790, + "endLine": 294, + "endColumn": 12, + "endOffset": 36015 + } + } + }, + { + "to": { + "startLine": 252, + "startColumn": 4, + "startOffset": 30516, + "endLine": 255, + "endColumn": 12, + "endOffset": 30741 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 295, + "startColumn": 4, + "startOffset": 36020, + "endLine": 298, + "endColumn": 12, + "endOffset": 36245 + } + } + }, + { + "to": { + "startLine": 256, + "startColumn": 4, + "startOffset": 30746, + "endLine": 259, + "endColumn": 12, + "endOffset": 30971 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 299, + "startColumn": 4, + "startOffset": 36250, + "endLine": 302, + "endColumn": 12, + "endOffset": 36475 + } + } + }, + { + "to": { + "startLine": 260, + "startColumn": 4, + "startOffset": 30976, + "endLine": 263, + "endColumn": 12, + "endOffset": 31201 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 303, + "startColumn": 4, + "startOffset": 36480, + "endLine": 306, + "endColumn": 12, + "endOffset": 36705 + } + } + }, + { + "to": { + "startLine": 264, + "startColumn": 4, + "startOffset": 31206, + "endLine": 267, + "endColumn": 12, + "endOffset": 31428 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 307, + "startColumn": 4, + "startOffset": 36710, + "endLine": 310, + "endColumn": 12, + "endOffset": 36932 + } + } + }, + { + "to": { + "startLine": 268, + "startColumn": 4, + "startOffset": 31433, + "endLine": 271, + "endColumn": 12, + "endOffset": 31667 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 311, + "startColumn": 4, + "startOffset": 36937, + "endLine": 314, + "endColumn": 12, + "endOffset": 37171 + } + } + }, + { + "to": { + "startLine": 272, + "startColumn": 4, + "startOffset": 31672, + "endLine": 275, + "endColumn": 12, + "endOffset": 31893 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 315, + "startColumn": 4, + "startOffset": 37176, + "endLine": 318, + "endColumn": 12, + "endOffset": 37397 + } + } + }, + { + "to": { + "startLine": 276, + "startColumn": 4, + "startOffset": 31898, + "endLine": 279, + "endColumn": 12, + "endOffset": 32138 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 319, + "startColumn": 4, + "startOffset": 37402, + "endLine": 322, + "endColumn": 12, + "endOffset": 37642 + } + } + }, + { + "to": { + "startLine": 280, + "startColumn": 4, + "startOffset": 32143, + "endLine": 281, + "endColumn": 12, + "endOffset": 32268 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 325, + "startColumn": 4, + "startOffset": 37884, + "endLine": 326, + "endColumn": 12, + "endOffset": 38009 + } + } + }, + { + "to": { + "startLine": 282, + "startColumn": 4, + "startOffset": 32273, + "endLine": 283, + "endColumn": 12, + "endOffset": 32398 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 327, + "startColumn": 4, + "startOffset": 38014, + "endLine": 328, + "endColumn": 12, + "endOffset": 38139 + } + } + }, + { + "to": { + "startLine": 284, + "startColumn": 4, + "startOffset": 32403, + "endLine": 287, + "endColumn": 12, + "endOffset": 32628 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 331, + "startColumn": 4, + "startOffset": 38386, + "endLine": 334, + "endColumn": 12, + "endOffset": 38611 + } + } + }, + { + "to": { + "startLine": 288, + "startColumn": 4, + "startOffset": 32633, + "endLine": 291, + "endColumn": 12, + "endOffset": 32876 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 335, + "startColumn": 4, + "startOffset": 38616, + "endLine": 338, + "endColumn": 12, + "endOffset": 38859 + } + } + }, + { + "to": { + "startLine": 292, + "startColumn": 4, + "startOffset": 32881, + "endLine": 295, + "endColumn": 12, + "endOffset": 33095 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 339, + "startColumn": 4, + "startOffset": 38864, + "endLine": 342, + "endColumn": 12, + "endOffset": 39078 + } + } + }, + { + "to": { + "startLine": 296, + "startColumn": 4, + "startOffset": 33100, + "endLine": 300, + "endColumn": 12, + "endOffset": 33378 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 345, + "startColumn": 4, + "startOffset": 39320, + "endLine": 349, + "endColumn": 12, + "endOffset": 39598 + } + } + }, + { + "to": { + "startLine": 301, + "startColumn": 4, + "startOffset": 33383, + "endLine": 304, + "endColumn": 12, + "endOffset": 33586 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 350, + "startColumn": 4, + "startOffset": 39603, + "endLine": 353, + "endColumn": 12, + "endOffset": 39806 + } + } + }, + { + "to": { + "startLine": 305, + "startColumn": 4, + "startOffset": 33591, + "endLine": 307, + "endColumn": 12, + "endOffset": 33717 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 354, + "startColumn": 4, + "startOffset": 39811, + "endLine": 356, + "endColumn": 12, + "endOffset": 39937 + } + } + }, + { + "to": { + "startLine": 308, + "startColumn": 4, + "startOffset": 33722, + "endLine": 311, + "endColumn": 12, + "endOffset": 33944 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 359, + "startColumn": 4, + "startOffset": 40184, + "endLine": 362, + "endColumn": 12, + "endOffset": 40406 + } + } + }, + { + "to": { + "startLine": 312, + "startColumn": 4, + "startOffset": 33949, + "endLine": 315, + "endColumn": 12, + "endOffset": 34190 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 363, + "startColumn": 4, + "startOffset": 40411, + "endLine": 366, + "endColumn": 12, + "endOffset": 40652 + } + } + }, + { + "to": { + "startLine": 316, + "startColumn": 4, + "startOffset": 34195, + "endLine": 319, + "endColumn": 12, + "endOffset": 34415 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 367, + "startColumn": 4, + "startOffset": 40657, + "endLine": 370, + "endColumn": 12, + "endOffset": 40877 + } + } + }, + { + "to": { + "startLine": 320, + "startColumn": 4, + "startOffset": 34420, + "endLine": 323, + "endColumn": 12, + "endOffset": 34664 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 371, + "startColumn": 4, + "startOffset": 40882, + "endLine": 374, + "endColumn": 12, + "endOffset": 41126 + } + } + }, + { + "to": { + "startLine": 324, + "startColumn": 4, + "startOffset": 34669, + "endLine": 327, + "endColumn": 12, + "endOffset": 34885 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 375, + "startColumn": 4, + "startOffset": 41131, + "endLine": 378, + "endColumn": 12, + "endOffset": 41347 + } + } + }, + { + "to": { + "startLine": 328, + "startColumn": 4, + "startOffset": 34890, + "endLine": 331, + "endColumn": 12, + "endOffset": 35130 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 379, + "startColumn": 4, + "startOffset": 41352, + "endLine": 382, + "endColumn": 12, + "endOffset": 41592 + } + } + }, + { + "to": { + "startLine": 332, + "startColumn": 4, + "startOffset": 35135, + "endLine": 336, + "endColumn": 12, + "endOffset": 35425 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 385, + "startColumn": 4, + "startOffset": 41834, + "endLine": 389, + "endColumn": 12, + "endOffset": 42124 + } + } + }, + { + "to": { + "startLine": 337, + "startColumn": 4, + "startOffset": 35430, + "endLine": 339, + "endColumn": 12, + "endOffset": 35647 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 390, + "startColumn": 4, + "startOffset": 42129, + "endLine": 392, + "endColumn": 12, + "endOffset": 42346 + } + } + }, + { + "to": { + "startLine": 340, + "startColumn": 4, + "startOffset": 35652, + "endLine": 342, + "endColumn": 12, + "endOffset": 35885 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 393, + "startColumn": 4, + "startOffset": 42351, + "endLine": 395, + "endColumn": 12, + "endOffset": 42584 + } + } + }, + { + "to": { + "startLine": 343, + "startColumn": 4, + "startOffset": 35890, + "endLine": 345, + "endColumn": 12, + "endOffset": 36099 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 396, + "startColumn": 4, + "startOffset": 42589, + "endLine": 398, + "endColumn": 12, + "endOffset": 42798 + } + } + }, + { + "to": { + "startLine": 346, + "startColumn": 4, + "startOffset": 36104, + "endLine": 348, + "endColumn": 12, + "endOffset": 36329 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 399, + "startColumn": 4, + "startOffset": 42803, + "endLine": 401, + "endColumn": 12, + "endOffset": 43028 + } + } + }, + { + "to": { + "startLine": 349, + "startColumn": 4, + "startOffset": 36334, + "endLine": 351, + "endColumn": 12, + "endOffset": 36552 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 402, + "startColumn": 4, + "startOffset": 43033, + "endLine": 404, + "endColumn": 12, + "endOffset": 43251 + } + } + }, + { + "to": { + "startLine": 352, + "startColumn": 4, + "startOffset": 36557, + "endLine": 354, + "endColumn": 12, + "endOffset": 36767 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 405, + "startColumn": 4, + "startOffset": 43256, + "endLine": 407, + "endColumn": 12, + "endOffset": 43466 + } + } + }, + { + "to": { + "startLine": 355, + "startColumn": 4, + "startOffset": 36772, + "endLine": 357, + "endColumn": 12, + "endOffset": 36975 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 408, + "startColumn": 4, + "startOffset": 43471, + "endLine": 410, + "endColumn": 12, + "endOffset": 43674 + } + } + }, + { + "to": { + "startLine": 358, + "startColumn": 4, + "startOffset": 36980, + "endLine": 359, + "endColumn": 12, + "endOffset": 37099 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 411, + "startColumn": 4, + "startOffset": 43679, + "endLine": 412, + "endColumn": 12, + "endOffset": 43798 + } + } + }, + { + "to": { + "startLine": 360, + "startColumn": 4, + "startOffset": 37104, + "endLine": 361, + "endColumn": 12, + "endOffset": 37223 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 413, + "startColumn": 4, + "startOffset": 43803, + "endLine": 414, + "endColumn": 12, + "endOffset": 43922 + } + } + }, + { + "to": { + "startLine": 362, + "startColumn": 4, + "startOffset": 37228, + "endColumn": 104, + "endOffset": 37328 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 415, + "startColumn": 4, + "startOffset": 43927, + "endColumn": 104, + "endOffset": 44027 + } + } + }, + { + "to": { + "startLine": 363, + "startColumn": 4, + "startOffset": 37333, + "endColumn": 116, + "endOffset": 37445 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 416, + "startColumn": 4, + "startOffset": 44032, + "endColumn": 116, + "endOffset": 44144 + } + } + }, + { + "to": { + "startLine": 364, + "startColumn": 4, + "startOffset": 37450, + "endLine": 366, + "endColumn": 12, + "endOffset": 37659 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 417, + "startColumn": 4, + "startOffset": 44149, + "endLine": 419, + "endColumn": 12, + "endOffset": 44358 + } + } + }, + { + "to": { + "startLine": 367, + "startColumn": 4, + "startOffset": 37664, + "endLine": 368, + "endColumn": 12, + "endOffset": 37805 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 420, + "startColumn": 4, + "startOffset": 44363, + "endLine": 421, + "endColumn": 12, + "endOffset": 44504 + } + } + }, + { + "to": { + "startLine": 369, + "startColumn": 4, + "startOffset": 37810, + "endLine": 370, + "endColumn": 12, + "endOffset": 37945 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 422, + "startColumn": 4, + "startOffset": 44509, + "endLine": 423, + "endColumn": 12, + "endOffset": 44644 + } + } + }, + { + "to": { + "startLine": 371, + "startColumn": 4, + "startOffset": 37950, + "endLine": 372, + "endColumn": 12, + "endOffset": 38031 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 426, + "startColumn": 4, + "startOffset": 44886, + "endLine": 427, + "endColumn": 12, + "endOffset": 44967 + } + } + }, + { + "to": { + "startLine": 373, + "startColumn": 4, + "startOffset": 38036, + "endLine": 377, + "endColumn": 12, + "endOffset": 38379 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 428, + "startColumn": 4, + "startOffset": 44972, + "endLine": 432, + "endColumn": 12, + "endOffset": 45315 + } + } + }, + { + "to": { + "startLine": 378, + "startColumn": 4, + "startOffset": 38384, + "endColumn": 87, + "endOffset": 38467 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 433, + "startColumn": 4, + "startOffset": 45320, + "endColumn": 87, + "endOffset": 45403 + } + } + }, + { + "to": { + "startLine": 379, + "startColumn": 4, + "startOffset": 38472, + "endLine": 382, + "endColumn": 12, + "endOffset": 38697 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 434, + "startColumn": 4, + "startOffset": 45408, + "endLine": 437, + "endColumn": 12, + "endOffset": 45633 + } + } + }, + { + "to": { + "startLine": 383, + "startColumn": 4, + "startOffset": 38702, + "endLine": 388, + "endColumn": 12, + "endOffset": 39099 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 438, + "startColumn": 4, + "startOffset": 45638, + "endLine": 443, + "endColumn": 12, + "endOffset": 46035 + } + } + }, + { + "to": { + "startLine": 389, + "startColumn": 4, + "startOffset": 39104, + "endLine": 392, + "endColumn": 12, + "endOffset": 39332 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 444, + "startColumn": 4, + "startOffset": 46040, + "endLine": 447, + "endColumn": 12, + "endOffset": 46268 + } + } + }, + { + "to": { + "startLine": 393, + "startColumn": 4, + "startOffset": 39337, + "endColumn": 81, + "endOffset": 39414 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 448, + "startColumn": 4, + "startOffset": 46273, + "endColumn": 81, + "endOffset": 46350 + } + } + }, + { + "to": { + "startLine": 394, + "startColumn": 4, + "startOffset": 39419, + "endLine": 395, + "endColumn": 12, + "endOffset": 39512 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 449, + "startColumn": 4, + "startOffset": 46355, + "endLine": 450, + "endColumn": 12, + "endOffset": 46448 + } + } + }, + { + "to": { + "startLine": 396, + "startColumn": 4, + "startOffset": 39517, + "endLine": 406, + "endColumn": 12, + "endOffset": 40129 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 451, + "startColumn": 4, + "startOffset": 46453, + "endLine": 461, + "endColumn": 12, + "endOffset": 47065 + } + } + }, + { + "to": { + "startLine": 407, + "startColumn": 4, + "startOffset": 40134, + "endColumn": 99, + "endOffset": 40229 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 462, + "startColumn": 4, + "startOffset": 47070, + "endColumn": 99, + "endOffset": 47165 + } + } + }, + { + "to": { + "startLine": 408, + "startColumn": 4, + "startOffset": 40234, + "endLine": 411, + "endColumn": 12, + "endOffset": 40465 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 463, + "startColumn": 4, + "startOffset": 47170, + "endLine": 466, + "endColumn": 12, + "endOffset": 47401 + } + } + }, + { + "to": { + "startLine": 412, + "startColumn": 4, + "startOffset": 40470, + "endLine": 417, + "endColumn": 12, + "endOffset": 40873 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 467, + "startColumn": 4, + "startOffset": 47406, + "endLine": 472, + "endColumn": 12, + "endOffset": 47809 + } + } + }, + { + "to": { + "startLine": 418, + "startColumn": 4, + "startOffset": 40878, + "endLine": 421, + "endColumn": 12, + "endOffset": 41112 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 473, + "startColumn": 4, + "startOffset": 47814, + "endLine": 476, + "endColumn": 12, + "endOffset": 48048 + } + } + }, + { + "to": { + "startLine": 422, + "startColumn": 4, + "startOffset": 41117, + "endColumn": 93, + "endOffset": 41206 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 477, + "startColumn": 4, + "startOffset": 48053, + "endColumn": 93, + "endOffset": 48142 + } + } + }, + { + "to": { + "startLine": 423, + "startColumn": 4, + "startOffset": 41211, + "endColumn": 57, + "endOffset": 41264 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 478, + "startColumn": 4, + "startOffset": 48147, + "endColumn": 57, + "endOffset": 48200 + } + } + }, + { + "to": { + "startLine": 424, + "startColumn": 4, + "startOffset": 41269, + "endLine": 427, + "endColumn": 12, + "endOffset": 41501 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 479, + "startColumn": 4, + "startOffset": 48205, + "endLine": 482, + "endColumn": 12, + "endOffset": 48437 + } + } + }, + { + "to": { + "startLine": 428, + "startColumn": 4, + "startOffset": 41506, + "endLine": 454, + "endColumn": 12, + "endOffset": 43501 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 483, + "startColumn": 4, + "startOffset": 48442, + "endLine": 509, + "endColumn": 12, + "endOffset": 50437 + } + } + }, + { + "to": { + "startLine": 455, + "startColumn": 4, + "startOffset": 43506, + "endLine": 458, + "endColumn": 12, + "endOffset": 43743 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 510, + "startColumn": 4, + "startOffset": 50442, + "endLine": 513, + "endColumn": 12, + "endOffset": 50679 + } + } + }, + { + "to": { + "startLine": 459, + "startColumn": 4, + "startOffset": 43748, + "endLine": 486, + "endColumn": 12, + "endOffset": 45921 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 514, + "startColumn": 4, + "startOffset": 50684, + "endLine": 541, + "endColumn": 12, + "endOffset": 52857 + } + } + }, + { + "to": { + "startLine": 487, + "startColumn": 4, + "startOffset": 45926, + "endLine": 631, + "endColumn": 12, + "endOffset": 55108 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 542, + "startColumn": 4, + "startOffset": 52862, + "endLine": 686, + "endColumn": 12, + "endOffset": 62044 + } + } + }, + { + "to": { + "startLine": 632, + "startColumn": 4, + "startOffset": 55113, + "endLine": 652, + "endColumn": 12, + "endOffset": 56307 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 687, + "startColumn": 4, + "startOffset": 62049, + "endLine": 707, + "endColumn": 12, + "endOffset": 63243 + } + } + }, + { + "to": { + "startLine": 653, + "startColumn": 4, + "startOffset": 56312, + "endLine": 797, + "endColumn": 12, + "endOffset": 65604 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 708, + "startColumn": 4, + "startOffset": 63248, + "endLine": 852, + "endColumn": 12, + "endOffset": 72540 + } + } + }, + { + "to": { + "startLine": 798, + "startColumn": 4, + "startOffset": 65609, + "endLine": 818, + "endColumn": 12, + "endOffset": 66817 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 853, + "startColumn": 4, + "startOffset": 72545, + "endLine": 873, + "endColumn": 12, + "endOffset": 73753 + } + } + }, + { + "to": { + "startLine": 819, + "startColumn": 4, + "startOffset": 66822, + "endLine": 839, + "endColumn": 12, + "endOffset": 67940 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 876, + "startColumn": 4, + "startOffset": 73995, + "endLine": 896, + "endColumn": 12, + "endOffset": 75113 + } + } + }, + { + "to": { + "startLine": 840, + "startColumn": 4, + "startOffset": 67945, + "endLine": 844, + "endColumn": 12, + "endOffset": 68196 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 897, + "startColumn": 4, + "startOffset": 75118, + "endLine": 901, + "endColumn": 12, + "endOffset": 75369 + } + } + }, + { + "to": { + "startLine": 845, + "startColumn": 4, + "startOffset": 68201, + "endLine": 849, + "endColumn": 12, + "endOffset": 68432 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 902, + "startColumn": 4, + "startOffset": 75374, + "endLine": 906, + "endColumn": 12, + "endOffset": 75605 + } + } + }, + { + "to": { + "startLine": 850, + "startColumn": 4, + "startOffset": 68437, + "endLine": 859, + "endColumn": 12, + "endOffset": 68979 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 907, + "startColumn": 4, + "startOffset": 75610, + "endLine": 916, + "endColumn": 12, + "endOffset": 76152 + } + } + }, + { + "to": { + "startLine": 860, + "startColumn": 4, + "startOffset": 68984, + "endLine": 868, + "endColumn": 12, + "endOffset": 69473 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 917, + "startColumn": 4, + "startOffset": 76157, + "endLine": 925, + "endColumn": 12, + "endOffset": 76646 + } + } + }, + { + "to": { + "startLine": 869, + "startColumn": 4, + "startOffset": 69478, + "endLine": 879, + "endColumn": 12, + "endOffset": 70146 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 926, + "startColumn": 4, + "startOffset": 76651, + "endLine": 936, + "endColumn": 12, + "endOffset": 77319 + } + } + }, + { + "to": { + "startLine": 880, + "startColumn": 4, + "startOffset": 70151, + "endLine": 883, + "endColumn": 12, + "endOffset": 70361 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 937, + "startColumn": 4, + "startOffset": 77324, + "endLine": 940, + "endColumn": 12, + "endOffset": 77534 + } + } + }, + { + "to": { + "startLine": 884, + "startColumn": 4, + "startOffset": 70366, + "endLine": 890, + "endColumn": 12, + "endOffset": 70889 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 941, + "startColumn": 4, + "startOffset": 77539, + "endLine": 947, + "endColumn": 12, + "endOffset": 78062 + } + } + }, + { + "to": { + "startLine": 891, + "startColumn": 4, + "startOffset": 70894, + "endLine": 898, + "endColumn": 12, + "endOffset": 71453 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 948, + "startColumn": 4, + "startOffset": 78067, + "endLine": 955, + "endColumn": 12, + "endOffset": 78626 + } + } + }, + { + "to": { + "startLine": 899, + "startColumn": 4, + "startOffset": 71458, + "endLine": 905, + "endColumn": 12, + "endOffset": 71828 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 956, + "startColumn": 4, + "startOffset": 78631, + "endLine": 962, + "endColumn": 12, + "endOffset": 79001 + } + } + }, + { + "to": { + "startLine": 906, + "startColumn": 4, + "startOffset": 71833, + "endLine": 912, + "endColumn": 12, + "endOffset": 72361 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 963, + "startColumn": 4, + "startOffset": 79006, + "endLine": 969, + "endColumn": 12, + "endOffset": 79534 + } + } + }, + { + "to": { + "startLine": 913, + "startColumn": 4, + "startOffset": 72366, + "endLine": 921, + "endColumn": 12, + "endOffset": 72899 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 970, + "startColumn": 4, + "startOffset": 79539, + "endLine": 978, + "endColumn": 12, + "endOffset": 80072 + } + } + }, + { + "to": { + "startLine": 922, + "startColumn": 4, + "startOffset": 72904, + "endLine": 924, + "endColumn": 12, + "endOffset": 73056 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 979, + "startColumn": 4, + "startOffset": 80077, + "endLine": 981, + "endColumn": 12, + "endOffset": 80229 + } + } + }, + { + "to": { + "startLine": 925, + "startColumn": 4, + "startOffset": 73061, + "endLine": 927, + "endColumn": 12, + "endOffset": 73200 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 982, + "startColumn": 4, + "startOffset": 80234, + "endLine": 984, + "endColumn": 12, + "endOffset": 80373 + } + } + }, + { + "to": { + "startLine": 928, + "startColumn": 4, + "startOffset": 73205, + "endLine": 932, + "endColumn": 12, + "endOffset": 73520 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 985, + "startColumn": 4, + "startOffset": 80378, + "endLine": 989, + "endColumn": 12, + "endOffset": 80693 + } + } + }, + { + "to": { + "startLine": 933, + "startColumn": 4, + "startOffset": 73525, + "endLine": 936, + "endColumn": 12, + "endOffset": 73690 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 990, + "startColumn": 4, + "startOffset": 80698, + "endLine": 993, + "endColumn": 12, + "endOffset": 80863 + } + } + }, + { + "to": { + "startLine": 937, + "startColumn": 4, + "startOffset": 73695, + "endLine": 939, + "endColumn": 12, + "endOffset": 73831 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 994, + "startColumn": 4, + "startOffset": 80868, + "endLine": 996, + "endColumn": 12, + "endOffset": 81004 + } + } + }, + { + "to": { + "startLine": 940, + "startColumn": 4, + "startOffset": 73836, + "endLine": 942, + "endColumn": 12, + "endOffset": 73960 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 997, + "startColumn": 4, + "startOffset": 81009, + "endLine": 999, + "endColumn": 12, + "endOffset": 81133 + } + } + }, + { + "to": { + "startLine": 943, + "startColumn": 4, + "startOffset": 73965, + "endLine": 946, + "endColumn": 12, + "endOffset": 74259 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1000, + "startColumn": 4, + "startOffset": 81138, + "endLine": 1003, + "endColumn": 12, + "endOffset": 81432 + } + } + }, + { + "to": { + "startLine": 947, + "startColumn": 4, + "startOffset": 74264, + "endLine": 950, + "endColumn": 12, + "endOffset": 74562 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1004, + "startColumn": 4, + "startOffset": 81437, + "endLine": 1007, + "endColumn": 12, + "endOffset": 81735 + } + } + }, + { + "to": { + "startLine": 951, + "startColumn": 4, + "startOffset": 74567, + "endLine": 958, + "endColumn": 12, + "endOffset": 75123 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1008, + "startColumn": 4, + "startOffset": 81740, + "endLine": 1015, + "endColumn": 12, + "endOffset": 82296 + } + } + }, + { + "to": { + "startLine": 959, + "startColumn": 4, + "startOffset": 75128, + "endLine": 963, + "endColumn": 12, + "endOffset": 75385 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1016, + "startColumn": 4, + "startOffset": 82301, + "endLine": 1020, + "endColumn": 12, + "endOffset": 82558 + } + } + }, + { + "to": { + "startLine": 964, + "startColumn": 4, + "startOffset": 75390, + "endLine": 970, + "endColumn": 12, + "endOffset": 75735 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1021, + "startColumn": 4, + "startOffset": 82563, + "endLine": 1027, + "endColumn": 12, + "endOffset": 82908 + } + } + }, + { + "to": { + "startLine": 971, + "startColumn": 4, + "startOffset": 75740, + "endLine": 976, + "endColumn": 12, + "endOffset": 76088 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1028, + "startColumn": 4, + "startOffset": 82913, + "endLine": 1033, + "endColumn": 12, + "endOffset": 83261 + } + } + }, + { + "to": { + "startLine": 977, + "startColumn": 4, + "startOffset": 76093, + "endLine": 981, + "endColumn": 12, + "endOffset": 76415 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1034, + "startColumn": 4, + "startOffset": 83266, + "endLine": 1038, + "endColumn": 12, + "endOffset": 83588 + } + } + }, + { + "to": { + "startLine": 982, + "startColumn": 4, + "startOffset": 76420, + "endLine": 985, + "endColumn": 12, + "endOffset": 76721 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1039, + "startColumn": 4, + "startOffset": 83593, + "endLine": 1042, + "endColumn": 12, + "endOffset": 83894 + } + } + }, + { + "to": { + "startLine": 986, + "startColumn": 4, + "startOffset": 76726, + "endLine": 990, + "endColumn": 12, + "endOffset": 76983 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1043, + "startColumn": 4, + "startOffset": 83899, + "endLine": 1047, + "endColumn": 12, + "endOffset": 84156 + } + } + }, + { + "to": { + "startLine": 991, + "startColumn": 4, + "startOffset": 76988, + "endLine": 992, + "endColumn": 12, + "endOffset": 77108 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1048, + "startColumn": 4, + "startOffset": 84161, + "endLine": 1049, + "endColumn": 12, + "endOffset": 84281 + } + } + }, + { + "to": { + "startLine": 993, + "startColumn": 4, + "startOffset": 77113, + "endLine": 994, + "endColumn": 12, + "endOffset": 77235 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1050, + "startColumn": 4, + "startOffset": 84286, + "endLine": 1051, + "endColumn": 12, + "endOffset": 84408 + } + } + }, + { + "to": { + "startLine": 995, + "startColumn": 4, + "startOffset": 77240, + "endLine": 997, + "endColumn": 12, + "endOffset": 77474 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1052, + "startColumn": 4, + "startOffset": 84413, + "endLine": 1054, + "endColumn": 12, + "endOffset": 84647 + } + } + }, + { + "to": { + "startLine": 998, + "startColumn": 4, + "startOffset": 77479, + "endLine": 1000, + "endColumn": 12, + "endOffset": 77685 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1055, + "startColumn": 4, + "startOffset": 84652, + "endLine": 1057, + "endColumn": 12, + "endOffset": 84858 + } + } + }, + { + "to": { + "startLine": 1001, + "startColumn": 4, + "startOffset": 77690, + "endLine": 1002, + "endColumn": 12, + "endOffset": 77804 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1058, + "startColumn": 4, + "startOffset": 84863, + "endLine": 1059, + "endColumn": 12, + "endOffset": 84977 + } + } + }, + { + "to": { + "startLine": 1003, + "startColumn": 4, + "startOffset": 77809, + "endLine": 1006, + "endColumn": 12, + "endOffset": 77997 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1060, + "startColumn": 4, + "startOffset": 84982, + "endLine": 1063, + "endColumn": 12, + "endOffset": 85170 + } + } + }, + { + "to": { + "startLine": 1007, + "startColumn": 4, + "startOffset": 78002, + "endLine": 1013, + "endColumn": 12, + "endOffset": 78452 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1064, + "startColumn": 4, + "startOffset": 85175, + "endLine": 1070, + "endColumn": 12, + "endOffset": 85625 + } + } + }, + { + "to": { + "startLine": 1014, + "startColumn": 4, + "startOffset": 78457, + "endLine": 1017, + "endColumn": 12, + "endOffset": 78701 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1071, + "startColumn": 4, + "startOffset": 85630, + "endLine": 1074, + "endColumn": 12, + "endOffset": 85874 + } + } + }, + { + "to": { + "startLine": 1018, + "startColumn": 4, + "startOffset": 78706, + "endLine": 1020, + "endColumn": 12, + "endOffset": 78823 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1075, + "startColumn": 4, + "startOffset": 85879, + "endLine": 1077, + "endColumn": 12, + "endOffset": 85996 + } + } + }, + { + "to": { + "startLine": 1021, + "startColumn": 4, + "startOffset": 78828, + "endLine": 1024, + "endColumn": 12, + "endOffset": 79082 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1078, + "startColumn": 4, + "startOffset": 86001, + "endLine": 1081, + "endColumn": 12, + "endOffset": 86255 + } + } + }, + { + "to": { + "startLine": 1025, + "startColumn": 4, + "startOffset": 79087, + "endLine": 1026, + "endColumn": 12, + "endOffset": 79195 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1082, + "startColumn": 4, + "startOffset": 86260, + "endLine": 1083, + "endColumn": 12, + "endOffset": 86368 + } + } + }, + { + "to": { + "startLine": 1027, + "startColumn": 4, + "startOffset": 79200, + "endLine": 1030, + "endColumn": 12, + "endOffset": 79382 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1084, + "startColumn": 4, + "startOffset": 86373, + "endLine": 1087, + "endColumn": 12, + "endOffset": 86555 + } + } + }, + { + "to": { + "startLine": 1031, + "startColumn": 4, + "startOffset": 79387, + "endLine": 1032, + "endColumn": 12, + "endOffset": 79484 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1088, + "startColumn": 4, + "startOffset": 86560, + "endLine": 1089, + "endColumn": 12, + "endOffset": 86657 + } + } + }, + { + "to": { + "startLine": 1033, + "startColumn": 4, + "startOffset": 79489, + "endLine": 1038, + "endColumn": 12, + "endOffset": 79928 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1090, + "startColumn": 4, + "startOffset": 86662, + "endLine": 1095, + "endColumn": 12, + "endOffset": 87101 + } + } + }, + { + "to": { + "startLine": 1039, + "startColumn": 4, + "startOffset": 79933, + "endLine": 1040, + "endColumn": 12, + "endOffset": 80052 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1096, + "startColumn": 4, + "startOffset": 87106, + "endLine": 1097, + "endColumn": 12, + "endOffset": 87225 + } + } + }, + { + "to": { + "startLine": 1041, + "startColumn": 4, + "startOffset": 80057, + "endLine": 1044, + "endColumn": 12, + "endOffset": 80337 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1098, + "startColumn": 4, + "startOffset": 87230, + "endLine": 1101, + "endColumn": 12, + "endOffset": 87510 + } + } + }, + { + "to": { + "startLine": 1045, + "startColumn": 4, + "startOffset": 80342, + "endLine": 1056, + "endColumn": 12, + "endOffset": 81224 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1102, + "startColumn": 4, + "startOffset": 87515, + "endLine": 1113, + "endColumn": 12, + "endOffset": 88397 + } + } + }, + { + "to": { + "startLine": 1057, + "startColumn": 4, + "startOffset": 81229, + "endLine": 1062, + "endColumn": 12, + "endOffset": 81511 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1114, + "startColumn": 4, + "startOffset": 88402, + "endLine": 1119, + "endColumn": 12, + "endOffset": 88684 + } + } + }, + { + "to": { + "startLine": 1063, + "startColumn": 4, + "startOffset": 81516, + "endLine": 1067, + "endColumn": 12, + "endOffset": 81841 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1120, + "startColumn": 4, + "startOffset": 88689, + "endLine": 1124, + "endColumn": 12, + "endOffset": 89014 + } + } + }, + { + "to": { + "startLine": 1068, + "startColumn": 4, + "startOffset": 81846, + "endLine": 1082, + "endColumn": 12, + "endOffset": 82761 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1125, + "startColumn": 4, + "startOffset": 89019, + "endLine": 1139, + "endColumn": 12, + "endOffset": 89934 + } + } + }, + { + "to": { + "startLine": 1083, + "startColumn": 4, + "startOffset": 82766, + "endLine": 1085, + "endColumn": 12, + "endOffset": 82933 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1140, + "startColumn": 4, + "startOffset": 89939, + "endLine": 1142, + "endColumn": 12, + "endOffset": 90106 + } + } + }, + { + "to": { + "startLine": 1086, + "startColumn": 4, + "startOffset": 82938, + "endLine": 1090, + "endColumn": 12, + "endOffset": 83269 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1143, + "startColumn": 4, + "startOffset": 90111, + "endLine": 1147, + "endColumn": 12, + "endOffset": 90442 + } + } + }, + { + "to": { + "startLine": 1091, + "startColumn": 4, + "startOffset": 83274, + "endLine": 1100, + "endColumn": 12, + "endOffset": 83935 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1148, + "startColumn": 4, + "startOffset": 90447, + "endLine": 1157, + "endColumn": 12, + "endOffset": 91108 + } + } + }, + { + "to": { + "startLine": 1101, + "startColumn": 4, + "startOffset": 83940, + "endLine": 1105, + "endColumn": 12, + "endOffset": 84220 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1158, + "startColumn": 4, + "startOffset": 91113, + "endLine": 1162, + "endColumn": 12, + "endOffset": 91393 + } + } + }, + { + "to": { + "startLine": 1106, + "startColumn": 4, + "startOffset": 84225, + "endLine": 1143, + "endColumn": 12, + "endOffset": 87109 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1165, + "startColumn": 4, + "startOffset": 91635, + "endLine": 1202, + "endColumn": 12, + "endOffset": 94519 + } + } + }, + { + "to": { + "startLine": 1144, + "startColumn": 4, + "startOffset": 87114, + "endLine": 1182, + "endColumn": 12, + "endOffset": 90139 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1203, + "startColumn": 4, + "startOffset": 94524, + "endLine": 1241, + "endColumn": 12, + "endOffset": 97549 + } + } + }, + { + "to": { + "startLine": 1183, + "startColumn": 4, + "startOffset": 90144, + "endLine": 1192, + "endColumn": 12, + "endOffset": 90779 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1242, + "startColumn": 4, + "startOffset": 97554, + "endLine": 1251, + "endColumn": 12, + "endOffset": 98189 + } + } + }, + { + "to": { + "startLine": 1193, + "startColumn": 4, + "startOffset": 90784, + "endLine": 1201, + "endColumn": 12, + "endOffset": 91403 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1252, + "startColumn": 4, + "startOffset": 98194, + "endLine": 1260, + "endColumn": 12, + "endOffset": 98813 + } + } + }, + { + "to": { + "startLine": 1202, + "startColumn": 4, + "startOffset": 91408, + "endLine": 1205, + "endColumn": 12, + "endOffset": 91632 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1263, + "startColumn": 4, + "startOffset": 99054, + "endLine": 1266, + "endColumn": 12, + "endOffset": 99278 + } + } + }, + { + "to": { + "startLine": 1206, + "startColumn": 4, + "startOffset": 91637, + "endLine": 1209, + "endColumn": 12, + "endOffset": 91970 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1267, + "startColumn": 4, + "startOffset": 99283, + "endLine": 1270, + "endColumn": 12, + "endOffset": 99616 + } + } + }, + { + "to": { + "startLine": 1210, + "startColumn": 4, + "startOffset": 91975, + "endLine": 1212, + "endColumn": 12, + "endOffset": 92122 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1271, + "startColumn": 4, + "startOffset": 99621, + "endLine": 1273, + "endColumn": 12, + "endOffset": 99768 + } + } + }, + { + "to": { + "startLine": 1213, + "startColumn": 4, + "startOffset": 92127, + "endLine": 1215, + "endColumn": 12, + "endOffset": 92293 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1274, + "startColumn": 4, + "startOffset": 99773, + "endLine": 1276, + "endColumn": 12, + "endOffset": 99939 + } + } + }, + { + "to": { + "startLine": 1216, + "startColumn": 4, + "startOffset": 92298, + "endLine": 1218, + "endColumn": 12, + "endOffset": 92460 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1277, + "startColumn": 4, + "startOffset": 99944, + "endLine": 1279, + "endColumn": 12, + "endOffset": 100106 + } + } + }, + { + "to": { + "startLine": 1219, + "startColumn": 4, + "startOffset": 92465, + "endLine": 1222, + "endColumn": 12, + "endOffset": 92703 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1280, + "startColumn": 4, + "startOffset": 100111, + "endLine": 1283, + "endColumn": 12, + "endOffset": 100349 + } + } + }, + { + "to": { + "startLine": 1223, + "startColumn": 4, + "startOffset": 92708, + "endLine": 1225, + "endColumn": 12, + "endOffset": 92873 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1284, + "startColumn": 4, + "startOffset": 100354, + "endLine": 1286, + "endColumn": 12, + "endOffset": 100519 + } + } + }, + { + "to": { + "startLine": 1226, + "startColumn": 4, + "startOffset": 92878, + "endLine": 1228, + "endColumn": 12, + "endOffset": 93046 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1287, + "startColumn": 4, + "startOffset": 100524, + "endLine": 1289, + "endColumn": 12, + "endOffset": 100692 + } + } + }, + { + "to": { + "startLine": 1229, + "startColumn": 4, + "startOffset": 93051, + "endLine": 1231, + "endColumn": 12, + "endOffset": 93217 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1290, + "startColumn": 4, + "startOffset": 100697, + "endLine": 1292, + "endColumn": 12, + "endOffset": 100863 + } + } + }, + { + "to": { + "startLine": 1232, + "startColumn": 4, + "startOffset": 93222, + "endLine": 1235, + "endColumn": 12, + "endOffset": 93491 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1293, + "startColumn": 4, + "startOffset": 100868, + "endLine": 1296, + "endColumn": 12, + "endOffset": 101137 + } + } + }, + { + "to": { + "startLine": 1236, + "startColumn": 4, + "startOffset": 93496, + "endLine": 1238, + "endColumn": 12, + "endOffset": 93690 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1297, + "startColumn": 4, + "startOffset": 101142, + "endLine": 1299, + "endColumn": 12, + "endOffset": 101336 + } + } + }, + { + "to": { + "startLine": 1239, + "startColumn": 4, + "startOffset": 93695, + "endLine": 1241, + "endColumn": 12, + "endOffset": 93937 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1300, + "startColumn": 4, + "startOffset": 101341, + "endLine": 1302, + "endColumn": 12, + "endOffset": 101583 + } + } + }, + { + "to": { + "startLine": 1242, + "startColumn": 4, + "startOffset": 93942, + "endColumn": 83, + "endOffset": 94021 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1305, + "startColumn": 4, + "startOffset": 101820, + "endColumn": 83, + "endOffset": 101899 + } + } + }, + { + "to": { + "startLine": 1243, + "startColumn": 4, + "startOffset": 94026, + "endColumn": 95, + "endOffset": 94117 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1306, + "startColumn": 4, + "startOffset": 101904, + "endColumn": 95, + "endOffset": 101995 + } + } + }, + { + "to": { + "startLine": 1244, + "startColumn": 4, + "startOffset": 94122, + "endColumn": 95, + "endOffset": 94213 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1307, + "startColumn": 4, + "startOffset": 102000, + "endColumn": 95, + "endOffset": 102091 + } + } + }, + { + "to": { + "startLine": 1245, + "startColumn": 4, + "startOffset": 94218, + "endColumn": 97, + "endOffset": 94311 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1308, + "startColumn": 4, + "startOffset": 102096, + "endColumn": 97, + "endOffset": 102189 + } + } + }, + { + "to": { + "startLine": 1246, + "startColumn": 4, + "startOffset": 94316, + "endColumn": 99, + "endOffset": 94411 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1309, + "startColumn": 4, + "startOffset": 102194, + "endColumn": 99, + "endOffset": 102289 + } + } + }, + { + "to": { + "startLine": 1247, + "startColumn": 4, + "startOffset": 94416, + "endColumn": 101, + "endOffset": 94513 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1310, + "startColumn": 4, + "startOffset": 102294, + "endColumn": 101, + "endOffset": 102391 + } + } + }, + { + "to": { + "startLine": 1248, + "startColumn": 4, + "startOffset": 94518, + "endColumn": 101, + "endOffset": 94615 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1311, + "startColumn": 4, + "startOffset": 102396, + "endColumn": 101, + "endOffset": 102493 + } + } + }, + { + "to": { + "startLine": 1249, + "startColumn": 4, + "startOffset": 94620, + "endColumn": 101, + "endOffset": 94717 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1312, + "startColumn": 4, + "startOffset": 102498, + "endColumn": 101, + "endOffset": 102595 + } + } + }, + { + "to": { + "startLine": 1250, + "startColumn": 4, + "startOffset": 94722, + "endColumn": 101, + "endOffset": 94819 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1313, + "startColumn": 4, + "startOffset": 102600, + "endColumn": 101, + "endOffset": 102697 + } + } + }, + { + "to": { + "startLine": 1251, + "startColumn": 4, + "startOffset": 94824, + "endColumn": 101, + "endOffset": 94921 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1314, + "startColumn": 4, + "startOffset": 102702, + "endColumn": 101, + "endOffset": 102799 + } + } + }, + { + "to": { + "startLine": 1252, + "startColumn": 4, + "startOffset": 94926, + "endColumn": 99, + "endOffset": 95021 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1315, + "startColumn": 4, + "startOffset": 102804, + "endColumn": 99, + "endOffset": 102899 + } + } + }, + { + "to": { + "startLine": 1253, + "startColumn": 4, + "startOffset": 95026, + "endColumn": 95, + "endOffset": 95117 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1316, + "startColumn": 4, + "startOffset": 102904, + "endColumn": 95, + "endOffset": 102995 + } + } + }, + { + "to": { + "startLine": 1254, + "startColumn": 4, + "startOffset": 95122, + "endColumn": 111, + "endOffset": 95229 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1317, + "startColumn": 4, + "startOffset": 103000, + "endColumn": 111, + "endOffset": 103107 + } + } + }, + { + "to": { + "startLine": 1255, + "startColumn": 4, + "startOffset": 95234, + "endColumn": 128, + "endOffset": 95358 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1318, + "startColumn": 4, + "startOffset": 103112, + "endColumn": 128, + "endOffset": 103236 + } + } + }, + { + "to": { + "startLine": 1256, + "startColumn": 4, + "startOffset": 95363, + "endColumn": 122, + "endOffset": 95481 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1319, + "startColumn": 4, + "startOffset": 103241, + "endColumn": 122, + "endOffset": 103359 + } + } + }, + { + "to": { + "startLine": 1257, + "startColumn": 4, + "startOffset": 95486, + "endLine": 1258, + "endColumn": 12, + "endOffset": 95635 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1320, + "startColumn": 4, + "startOffset": 103364, + "endLine": 1321, + "endColumn": 12, + "endOffset": 103513 + } + } + }, + { + "to": { + "startLine": 1259, + "startColumn": 4, + "startOffset": 95640, + "endLine": 1260, + "endColumn": 12, + "endOffset": 95789 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1322, + "startColumn": 4, + "startOffset": 103518, + "endLine": 1323, + "endColumn": 12, + "endOffset": 103667 + } + } + }, + { + "to": { + "startLine": 1261, + "startColumn": 4, + "startOffset": 95794, + "endColumn": 97, + "endOffset": 95887 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1324, + "startColumn": 4, + "startOffset": 103672, + "endColumn": 97, + "endOffset": 103765 + } + } + }, + { + "to": { + "startLine": 1262, + "startColumn": 4, + "startOffset": 95892, + "endColumn": 113, + "endOffset": 96001 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1325, + "startColumn": 4, + "startOffset": 103770, + "endColumn": 113, + "endOffset": 103879 + } + } + }, + { + "to": { + "startLine": 1263, + "startColumn": 4, + "startOffset": 96006, + "endColumn": 93, + "endOffset": 96095 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1326, + "startColumn": 4, + "startOffset": 103884, + "endColumn": 93, + "endOffset": 103973 + } + } + }, + { + "to": { + "startLine": 1264, + "startColumn": 4, + "startOffset": 96100, + "endLine": 1265, + "endColumn": 12, + "endOffset": 96235 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1327, + "startColumn": 4, + "startOffset": 103978, + "endLine": 1328, + "endColumn": 12, + "endOffset": 104113 + } + } + }, + { + "to": { + "startLine": 1266, + "startColumn": 4, + "startOffset": 96240, + "endLine": 1267, + "endColumn": 12, + "endOffset": 96369 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1329, + "startColumn": 4, + "startOffset": 104118, + "endLine": 1330, + "endColumn": 12, + "endOffset": 104247 + } + } + }, + { + "to": { + "startLine": 1268, + "startColumn": 4, + "startOffset": 96374, + "endColumn": 95, + "endOffset": 96465 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1331, + "startColumn": 4, + "startOffset": 104252, + "endColumn": 95, + "endOffset": 104343 + } + } + }, + { + "to": { + "startLine": 1269, + "startColumn": 4, + "startOffset": 96470, + "endColumn": 111, + "endOffset": 96577 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1332, + "startColumn": 4, + "startOffset": 104348, + "endColumn": 111, + "endOffset": 104455 + } + } + }, + { + "to": { + "startLine": 1270, + "startColumn": 4, + "startOffset": 96582, + "endColumn": 99, + "endOffset": 96677 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1333, + "startColumn": 4, + "startOffset": 104460, + "endColumn": 99, + "endOffset": 104555 + } + } + }, + { + "to": { + "startLine": 1271, + "startColumn": 4, + "startOffset": 96682, + "endColumn": 115, + "endOffset": 96793 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1334, + "startColumn": 4, + "startOffset": 104560, + "endColumn": 115, + "endOffset": 104671 + } + } + }, + { + "to": { + "startLine": 1272, + "startColumn": 4, + "startOffset": 96798, + "endColumn": 95, + "endOffset": 96889 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1335, + "startColumn": 4, + "startOffset": 104676, + "endColumn": 95, + "endOffset": 104767 + } + } + }, + { + "to": { + "startLine": 1273, + "startColumn": 4, + "startOffset": 96894, + "endColumn": 111, + "endOffset": 97001 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1336, + "startColumn": 4, + "startOffset": 104772, + "endColumn": 111, + "endOffset": 104879 + } + } + }, + { + "to": { + "startLine": 1274, + "startColumn": 4, + "startOffset": 97006, + "endLine": 1275, + "endColumn": 12, + "endOffset": 97141 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1337, + "startColumn": 4, + "startOffset": 104884, + "endLine": 1338, + "endColumn": 12, + "endOffset": 105019 + } + } + }, + { + "to": { + "startLine": 1276, + "startColumn": 4, + "startOffset": 97146, + "endLine": 1277, + "endColumn": 12, + "endOffset": 97289 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1339, + "startColumn": 4, + "startOffset": 105024, + "endLine": 1340, + "endColumn": 12, + "endOffset": 105167 + } + } + }, + { + "to": { + "startLine": 1278, + "startColumn": 4, + "startOffset": 97294, + "endLine": 1279, + "endColumn": 12, + "endOffset": 97453 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1341, + "startColumn": 4, + "startOffset": 105172, + "endLine": 1342, + "endColumn": 12, + "endOffset": 105331 + } + } + }, + { + "to": { + "startLine": 1280, + "startColumn": 4, + "startOffset": 97458, + "endLine": 1281, + "endColumn": 12, + "endOffset": 97595 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1343, + "startColumn": 4, + "startOffset": 105336, + "endLine": 1344, + "endColumn": 12, + "endOffset": 105473 + } + } + }, + { + "to": { + "startLine": 1282, + "startColumn": 4, + "startOffset": 97600, + "endLine": 1283, + "endColumn": 12, + "endOffset": 97753 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1345, + "startColumn": 4, + "startOffset": 105478, + "endLine": 1346, + "endColumn": 12, + "endOffset": 105631 + } + } + }, + { + "to": { + "startLine": 1284, + "startColumn": 4, + "startOffset": 97758, + "endLine": 1285, + "endColumn": 12, + "endOffset": 97903 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1347, + "startColumn": 4, + "startOffset": 105636, + "endLine": 1348, + "endColumn": 12, + "endOffset": 105781 + } + } + }, + { + "to": { + "startLine": 1286, + "startColumn": 4, + "startOffset": 97908, + "endColumn": 140, + "endOffset": 98044 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1349, + "startColumn": 4, + "startOffset": 105786, + "endColumn": 140, + "endOffset": 105922 + } + } + }, + { + "to": { + "startLine": 1287, + "startColumn": 4, + "startOffset": 98049, + "endLine": 1288, + "endColumn": 12, + "endOffset": 98188 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1350, + "startColumn": 4, + "startOffset": 105927, + "endLine": 1351, + "endColumn": 12, + "endOffset": 106066 + } + } + }, + { + "to": { + "startLine": 1289, + "startColumn": 4, + "startOffset": 98193, + "endColumn": 134, + "endOffset": 98323 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1352, + "startColumn": 4, + "startOffset": 106071, + "endColumn": 134, + "endOffset": 106201 + } + } + }, + { + "to": { + "startLine": 1290, + "startColumn": 4, + "startOffset": 98328, + "endLine": 1291, + "endColumn": 12, + "endOffset": 98459 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1353, + "startColumn": 4, + "startOffset": 106206, + "endLine": 1354, + "endColumn": 12, + "endOffset": 106337 + } + } + }, + { + "to": { + "startLine": 1292, + "startColumn": 4, + "startOffset": 98464, + "endLine": 1293, + "endColumn": 12, + "endOffset": 98601 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1355, + "startColumn": 4, + "startOffset": 106342, + "endLine": 1356, + "endColumn": 12, + "endOffset": 106479 + } + } + }, + { + "to": { + "startLine": 1294, + "startColumn": 4, + "startOffset": 98606, + "endLine": 1295, + "endColumn": 12, + "endOffset": 98743 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1357, + "startColumn": 4, + "startOffset": 106484, + "endLine": 1358, + "endColumn": 12, + "endOffset": 106621 + } + } + }, + { + "to": { + "startLine": 1296, + "startColumn": 4, + "startOffset": 98748, + "endColumn": 111, + "endOffset": 98855 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1359, + "startColumn": 4, + "startOffset": 106626, + "endColumn": 111, + "endOffset": 106733 + } + } + }, + { + "to": { + "startLine": 1297, + "startColumn": 4, + "startOffset": 98860, + "endColumn": 139, + "endOffset": 98995 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1360, + "startColumn": 4, + "startOffset": 106738, + "endColumn": 139, + "endOffset": 106873 + } + } + }, + { + "to": { + "startLine": 1298, + "startColumn": 4, + "startOffset": 99000, + "endLine": 1299, + "endColumn": 12, + "endOffset": 99141 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1361, + "startColumn": 4, + "startOffset": 106878, + "endLine": 1362, + "endColumn": 12, + "endOffset": 107019 + } + } + }, + { + "to": { + "startLine": 1300, + "startColumn": 4, + "startOffset": 99146, + "endLine": 1301, + "endColumn": 12, + "endOffset": 99285 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1363, + "startColumn": 4, + "startOffset": 107024, + "endLine": 1364, + "endColumn": 12, + "endOffset": 107163 + } + } + }, + { + "to": { + "startLine": 1302, + "startColumn": 4, + "startOffset": 99290, + "endLine": 1303, + "endColumn": 12, + "endOffset": 99423 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1365, + "startColumn": 4, + "startOffset": 107168, + "endLine": 1366, + "endColumn": 12, + "endOffset": 107301 + } + } + }, + { + "to": { + "startLine": 1304, + "startColumn": 4, + "startOffset": 99428, + "endColumn": 65, + "endOffset": 99489 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1369, + "startColumn": 4, + "startOffset": 107538, + "endColumn": 65, + "endOffset": 107599 + } + } + }, + { + "to": { + "startLine": 1305, + "startColumn": 4, + "startOffset": 99494, + "endColumn": 89, + "endOffset": 99579 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1370, + "startColumn": 4, + "startOffset": 107604, + "endColumn": 89, + "endOffset": 107689 + } + } + }, + { + "to": { + "startLine": 1306, + "startColumn": 4, + "startOffset": 99584, + "endColumn": 79, + "endOffset": 99659 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1371, + "startColumn": 4, + "startOffset": 107694, + "endColumn": 79, + "endOffset": 107769 + } + } + }, + { + "to": { + "startLine": 1307, + "startColumn": 4, + "startOffset": 99664, + "endColumn": 91, + "endOffset": 99751 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1372, + "startColumn": 4, + "startOffset": 107774, + "endColumn": 91, + "endOffset": 107861 + } + } + }, + { + "to": { + "startLine": 1308, + "startColumn": 4, + "startOffset": 99756, + "endColumn": 97, + "endOffset": 99849 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1373, + "startColumn": 4, + "startOffset": 107866, + "endColumn": 97, + "endOffset": 107959 + } + } + }, + { + "to": { + "startLine": 1309, + "startColumn": 4, + "startOffset": 99854, + "endLine": 1310, + "endColumn": 12, + "endOffset": 99959 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1374, + "startColumn": 4, + "startOffset": 107964, + "endLine": 1375, + "endColumn": 12, + "endOffset": 108069 + } + } + }, + { + "to": { + "startLine": 1311, + "startColumn": 4, + "startOffset": 99964, + "endColumn": 77, + "endOffset": 100037 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1376, + "startColumn": 4, + "startOffset": 108074, + "endColumn": 77, + "endOffset": 108147 + } + } + }, + { + "to": { + "startLine": 1312, + "startColumn": 4, + "startOffset": 100042, + "endColumn": 105, + "endOffset": 100143 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1377, + "startColumn": 4, + "startOffset": 108152, + "endColumn": 105, + "endOffset": 108253 + } + } + }, + { + "to": { + "startLine": 1313, + "startColumn": 4, + "startOffset": 100148, + "endColumn": 91, + "endOffset": 100235 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1378, + "startColumn": 4, + "startOffset": 108258, + "endColumn": 91, + "endOffset": 108345 + } + } + }, + { + "to": { + "startLine": 1314, + "startColumn": 4, + "startOffset": 100240, + "endColumn": 103, + "endOffset": 100339 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1379, + "startColumn": 4, + "startOffset": 108350, + "endColumn": 103, + "endOffset": 108449 + } + } + }, + { + "to": { + "startLine": 1315, + "startColumn": 4, + "startOffset": 100344, + "endColumn": 109, + "endOffset": 100449 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1380, + "startColumn": 4, + "startOffset": 108454, + "endColumn": 109, + "endOffset": 108559 + } + } + }, + { + "to": { + "startLine": 1316, + "startColumn": 4, + "startOffset": 100454, + "endLine": 1317, + "endColumn": 12, + "endOffset": 100571 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1381, + "startColumn": 4, + "startOffset": 108564, + "endLine": 1382, + "endColumn": 12, + "endOffset": 108681 + } + } + }, + { + "to": { + "startLine": 1318, + "startColumn": 4, + "startOffset": 100576, + "endLine": 1321, + "endColumn": 12, + "endOffset": 100734 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1383, + "startColumn": 4, + "startOffset": 108686, + "endLine": 1386, + "endColumn": 12, + "endOffset": 108844 + } + } + }, + { + "to": { + "startLine": 1322, + "startColumn": 4, + "startOffset": 100739, + "endLine": 1325, + "endColumn": 12, + "endOffset": 100891 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1387, + "startColumn": 4, + "startOffset": 108849, + "endLine": 1390, + "endColumn": 12, + "endOffset": 109001 + } + } + }, + { + "to": { + "startLine": 1326, + "startColumn": 4, + "startOffset": 100896, + "endColumn": 79, + "endOffset": 100971 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1391, + "startColumn": 4, + "startOffset": 109006, + "endColumn": 79, + "endOffset": 109081 + } + } + }, + { + "to": { + "startLine": 1327, + "startColumn": 4, + "startOffset": 100976, + "endColumn": 99, + "endOffset": 101071 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1392, + "startColumn": 4, + "startOffset": 109086, + "endColumn": 99, + "endOffset": 109181 + } + } + }, + { + "to": { + "startLine": 1328, + "startColumn": 4, + "startOffset": 101076, + "endColumn": 89, + "endOffset": 101161 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1393, + "startColumn": 4, + "startOffset": 109186, + "endColumn": 89, + "endOffset": 109271 + } + } + }, + { + "to": { + "startLine": 1329, + "startColumn": 4, + "startOffset": 101166, + "endColumn": 109, + "endOffset": 101271 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1394, + "startColumn": 4, + "startOffset": 109276, + "endColumn": 109, + "endOffset": 109381 + } + } + }, + { + "to": { + "startLine": 1330, + "startColumn": 4, + "startOffset": 101276, + "endColumn": 91, + "endOffset": 101363 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1395, + "startColumn": 4, + "startOffset": 109386, + "endColumn": 91, + "endOffset": 109473 + } + } + }, + { + "to": { + "startLine": 1331, + "startColumn": 4, + "startOffset": 101368, + "endLine": 1332, + "endColumn": 12, + "endOffset": 101463 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1398, + "startColumn": 4, + "startOffset": 109710, + "endLine": 1399, + "endColumn": 12, + "endOffset": 109805 + } + } + }, + { + "to": { + "startLine": 1333, + "startColumn": 4, + "startOffset": 101468, + "endLine": 1334, + "endColumn": 12, + "endOffset": 101575 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1400, + "startColumn": 4, + "startOffset": 109810, + "endLine": 1401, + "endColumn": 12, + "endOffset": 109917 + } + } + }, + { + "to": { + "startLine": 1335, + "startColumn": 4, + "startOffset": 101580, + "endLine": 1336, + "endColumn": 12, + "endOffset": 101689 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1402, + "startColumn": 4, + "startOffset": 109922, + "endLine": 1403, + "endColumn": 12, + "endOffset": 110031 + } + } + }, + { + "to": { + "startLine": 1337, + "startColumn": 4, + "startOffset": 101694, + "endLine": 1338, + "endColumn": 12, + "endOffset": 101805 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1404, + "startColumn": 4, + "startOffset": 110036, + "endLine": 1405, + "endColumn": 12, + "endOffset": 110147 + } + } + }, + { + "to": { + "startLine": 1339, + "startColumn": 4, + "startOffset": 101810, + "endLine": 1340, + "endColumn": 12, + "endOffset": 101921 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1406, + "startColumn": 4, + "startOffset": 110152, + "endLine": 1407, + "endColumn": 12, + "endOffset": 110263 + } + } + }, + { + "to": { + "startLine": 1341, + "startColumn": 4, + "startOffset": 101926, + "endColumn": 93, + "endOffset": 102015 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1408, + "startColumn": 4, + "startOffset": 110268, + "endColumn": 93, + "endOffset": 110357 + } + } + }, + { + "to": { + "startLine": 1342, + "startColumn": 4, + "startOffset": 102020, + "endColumn": 113, + "endOffset": 102129 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1409, + "startColumn": 4, + "startOffset": 110362, + "endColumn": 113, + "endOffset": 110471 + } + } + }, + { + "to": { + "startLine": 1343, + "startColumn": 4, + "startOffset": 102134, + "endColumn": 117, + "endOffset": 102247 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1410, + "startColumn": 4, + "startOffset": 110476, + "endColumn": 117, + "endOffset": 110589 + } + } + }, + { + "to": { + "startLine": 1344, + "startColumn": 4, + "startOffset": 102252, + "endLine": 1345, + "endColumn": 12, + "endOffset": 102349 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1411, + "startColumn": 4, + "startOffset": 110594, + "endLine": 1412, + "endColumn": 12, + "endOffset": 110691 + } + } + }, + { + "to": { + "startLine": 1346, + "startColumn": 4, + "startOffset": 102354, + "endLine": 1347, + "endColumn": 12, + "endOffset": 102469 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1413, + "startColumn": 4, + "startOffset": 110696, + "endLine": 1414, + "endColumn": 12, + "endOffset": 110811 + } + } + }, + { + "to": { + "startLine": 1348, + "startColumn": 4, + "startOffset": 102474, + "endLine": 1349, + "endColumn": 12, + "endOffset": 102591 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1415, + "startColumn": 4, + "startOffset": 110816, + "endLine": 1416, + "endColumn": 12, + "endOffset": 110933 + } + } + }, + { + "to": { + "startLine": 1350, + "startColumn": 4, + "startOffset": 102596, + "endColumn": 81, + "endOffset": 102673 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1417, + "startColumn": 4, + "startOffset": 110938, + "endColumn": 81, + "endOffset": 111015 + } + } + }, + { + "to": { + "startLine": 1351, + "startColumn": 4, + "startOffset": 102678, + "endColumn": 103, + "endOffset": 102777 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1418, + "startColumn": 4, + "startOffset": 111020, + "endColumn": 103, + "endOffset": 111119 + } + } + }, + { + "to": { + "startLine": 1352, + "startColumn": 4, + "startOffset": 102782, + "endColumn": 119, + "endOffset": 102897 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1419, + "startColumn": 4, + "startOffset": 111124, + "endColumn": 119, + "endOffset": 111239 + } + } + }, + { + "to": { + "startLine": 1353, + "startColumn": 4, + "startOffset": 102902, + "endColumn": 125, + "endOffset": 103023 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1420, + "startColumn": 4, + "startOffset": 111244, + "endColumn": 125, + "endOffset": 111365 + } + } + }, + { + "to": { + "startLine": 1354, + "startColumn": 4, + "startOffset": 103028, + "endColumn": 93, + "endOffset": 103117 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1421, + "startColumn": 4, + "startOffset": 111370, + "endColumn": 93, + "endOffset": 111459 + } + } + }, + { + "to": { + "startLine": 1355, + "startColumn": 4, + "startOffset": 103122, + "endColumn": 87, + "endOffset": 103205 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1422, + "startColumn": 4, + "startOffset": 111464, + "endColumn": 87, + "endOffset": 111547 + } + } + }, + { + "to": { + "startLine": 1356, + "startColumn": 4, + "startOffset": 103210, + "endColumn": 111, + "endOffset": 103317 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1423, + "startColumn": 4, + "startOffset": 111552, + "endColumn": 111, + "endOffset": 111659 + } + } + }, + { + "to": { + "startLine": 1357, + "startColumn": 4, + "startOffset": 103322, + "endColumn": 115, + "endOffset": 103433 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1424, + "startColumn": 4, + "startOffset": 111664, + "endColumn": 115, + "endOffset": 111775 + } + } + }, + { + "to": { + "startLine": 1358, + "startColumn": 4, + "startOffset": 103438, + "endColumn": 121, + "endOffset": 103555 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1425, + "startColumn": 4, + "startOffset": 111780, + "endColumn": 121, + "endOffset": 111897 + } + } + }, + { + "to": { + "startLine": 1359, + "startColumn": 4, + "startOffset": 103560, + "endColumn": 111, + "endOffset": 103667 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1426, + "startColumn": 4, + "startOffset": 111902, + "endColumn": 111, + "endOffset": 112009 + } + } + }, + { + "to": { + "startLine": 1360, + "startColumn": 4, + "startOffset": 103672, + "endLine": 1362, + "endColumn": 12, + "endOffset": 103842 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1427, + "startColumn": 4, + "startOffset": 112014, + "endLine": 1429, + "endColumn": 12, + "endOffset": 112184 + } + } + }, + { + "to": { + "startLine": 1363, + "startColumn": 4, + "startOffset": 103847, + "endColumn": 115, + "endOffset": 103958 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1430, + "startColumn": 4, + "startOffset": 112189, + "endColumn": 115, + "endOffset": 112300 + } + } + }, + { + "to": { + "startLine": 1364, + "startColumn": 4, + "startOffset": 103963, + "endLine": 1365, + "endColumn": 12, + "endOffset": 104056 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1431, + "startColumn": 4, + "startOffset": 112305, + "endLine": 1432, + "endColumn": 12, + "endOffset": 112398 + } + } + }, + { + "to": { + "startLine": 1366, + "startColumn": 4, + "startOffset": 104061, + "endLine": 1367, + "endColumn": 12, + "endOffset": 104168 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1433, + "startColumn": 4, + "startOffset": 112403, + "endLine": 1434, + "endColumn": 12, + "endOffset": 112510 + } + } + }, + { + "to": { + "startLine": 1368, + "startColumn": 4, + "startOffset": 104173, + "endLine": 1369, + "endColumn": 12, + "endOffset": 104292 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1435, + "startColumn": 4, + "startOffset": 112515, + "endLine": 1436, + "endColumn": 12, + "endOffset": 112634 + } + } + }, + { + "to": { + "startLine": 1370, + "startColumn": 4, + "startOffset": 104297, + "endColumn": 66, + "endOffset": 104359 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1437, + "startColumn": 4, + "startOffset": 112639, + "endColumn": 66, + "endOffset": 112701 + } + } + }, + { + "to": { + "startLine": 1371, + "startColumn": 4, + "startOffset": 104364, + "endLine": 1372, + "endColumn": 12, + "endOffset": 104485 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1438, + "startColumn": 4, + "startOffset": 112706, + "endLine": 1439, + "endColumn": 12, + "endOffset": 112827 + } + } + }, + { + "to": { + "startLine": 1373, + "startColumn": 4, + "startOffset": 104490, + "endColumn": 67, + "endOffset": 104553 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1440, + "startColumn": 4, + "startOffset": 112832, + "endColumn": 67, + "endOffset": 112895 + } + } + }, + { + "to": { + "startLine": 1374, + "startColumn": 4, + "startOffset": 104558, + "endLine": 1375, + "endColumn": 12, + "endOffset": 104681 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1441, + "startColumn": 4, + "startOffset": 112900, + "endLine": 1442, + "endColumn": 12, + "endOffset": 113023 + } + } + }, + { + "to": { + "startLine": 1376, + "startColumn": 4, + "startOffset": 104686, + "endLine": 1377, + "endColumn": 12, + "endOffset": 104825 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1443, + "startColumn": 4, + "startOffset": 113028, + "endLine": 1444, + "endColumn": 12, + "endOffset": 113167 + } + } + }, + { + "to": { + "startLine": 1378, + "startColumn": 4, + "startOffset": 104830, + "endLine": 1379, + "endColumn": 12, + "endOffset": 104953 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1445, + "startColumn": 4, + "startOffset": 113172, + "endLine": 1446, + "endColumn": 12, + "endOffset": 113295 + } + } + }, + { + "to": { + "startLine": 1380, + "startColumn": 4, + "startOffset": 104958, + "endColumn": 68, + "endOffset": 105022 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1447, + "startColumn": 4, + "startOffset": 113300, + "endColumn": 68, + "endOffset": 113364 + } + } + }, + { + "to": { + "startLine": 1381, + "startColumn": 4, + "startOffset": 105027, + "endColumn": 94, + "endOffset": 105117 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1448, + "startColumn": 4, + "startOffset": 113369, + "endColumn": 94, + "endOffset": 113459 + } + } + }, + { + "to": { + "startLine": 1382, + "startColumn": 4, + "startOffset": 105122, + "endColumn": 114, + "endOffset": 105232 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1449, + "startColumn": 4, + "startOffset": 113464, + "endColumn": 114, + "endOffset": 113574 + } + } + }, + { + "to": { + "startLine": 1383, + "startColumn": 4, + "startOffset": 105237, + "endColumn": 112, + "endOffset": 105345 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1450, + "startColumn": 4, + "startOffset": 113579, + "endColumn": 112, + "endOffset": 113687 + } + } + }, + { + "to": { + "startLine": 1384, + "startColumn": 4, + "startOffset": 105350, + "endColumn": 98, + "endOffset": 105444 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1451, + "startColumn": 4, + "startOffset": 113692, + "endColumn": 98, + "endOffset": 113786 + } + } + }, + { + "to": { + "startLine": 1385, + "startColumn": 4, + "startOffset": 105449, + "endColumn": 108, + "endOffset": 105553 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1452, + "startColumn": 4, + "startOffset": 113791, + "endColumn": 108, + "endOffset": 113895 + } + } + }, + { + "to": { + "startLine": 1386, + "startColumn": 4, + "startOffset": 105558, + "endColumn": 110, + "endOffset": 105664 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1453, + "startColumn": 4, + "startOffset": 113900, + "endColumn": 110, + "endOffset": 114006 + } + } + }, + { + "to": { + "startLine": 1387, + "startColumn": 4, + "startOffset": 105669, + "endColumn": 110, + "endOffset": 105775 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1454, + "startColumn": 4, + "startOffset": 114011, + "endColumn": 110, + "endOffset": 114117 + } + } + }, + { + "to": { + "startLine": 1388, + "startColumn": 4, + "startOffset": 105780, + "endColumn": 100, + "endOffset": 105876 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1455, + "startColumn": 4, + "startOffset": 114122, + "endColumn": 100, + "endOffset": 114218 + } + } + }, + { + "to": { + "startLine": 1389, + "startColumn": 4, + "startOffset": 105881, + "endColumn": 104, + "endOffset": 105981 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1456, + "startColumn": 4, + "startOffset": 114223, + "endColumn": 104, + "endOffset": 114323 + } + } + }, + { + "to": { + "startLine": 1390, + "startColumn": 4, + "startOffset": 105986, + "endLine": 1391, + "endColumn": 12, + "endOffset": 106093 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1457, + "startColumn": 4, + "startOffset": 114328, + "endLine": 1458, + "endColumn": 12, + "endOffset": 114435 + } + } + }, + { + "to": { + "startLine": 1392, + "startColumn": 4, + "startOffset": 106098, + "endLine": 1393, + "endColumn": 12, + "endOffset": 106223 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1459, + "startColumn": 4, + "startOffset": 114440, + "endLine": 1460, + "endColumn": 12, + "endOffset": 114565 + } + } + }, + { + "to": { + "startLine": 1394, + "startColumn": 4, + "startOffset": 106228, + "endColumn": 90, + "endOffset": 106314 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1461, + "startColumn": 4, + "startOffset": 114570, + "endColumn": 90, + "endOffset": 114656 + } + } + }, + { + "to": { + "startLine": 1395, + "startColumn": 4, + "startOffset": 106319, + "endColumn": 122, + "endOffset": 106437 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1462, + "startColumn": 4, + "startOffset": 114661, + "endColumn": 122, + "endOffset": 114779 + } + } + }, + { + "to": { + "startLine": 1396, + "startColumn": 4, + "startOffset": 106442, + "endLine": 1397, + "endColumn": 12, + "endOffset": 106549 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1463, + "startColumn": 4, + "startOffset": 114784, + "endLine": 1464, + "endColumn": 12, + "endOffset": 114891 + } + } + }, + { + "to": { + "startLine": 1398, + "startColumn": 4, + "startOffset": 106554, + "endColumn": 85, + "endOffset": 106635 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1465, + "startColumn": 4, + "startOffset": 114896, + "endColumn": 85, + "endOffset": 114977 + } + } + }, + { + "to": { + "startLine": 1399, + "startColumn": 4, + "startOffset": 106640, + "endColumn": 103, + "endOffset": 106739 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1466, + "startColumn": 4, + "startOffset": 114982, + "endColumn": 103, + "endOffset": 115081 + } + } + }, + { + "to": { + "startLine": 1400, + "startColumn": 4, + "startOffset": 106744, + "endLine": 1401, + "endColumn": 12, + "endOffset": 106847 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1467, + "startColumn": 4, + "startOffset": 115086, + "endLine": 1468, + "endColumn": 12, + "endOffset": 115189 + } + } + }, + { + "to": { + "startLine": 1402, + "startColumn": 4, + "startOffset": 106852, + "endLine": 1403, + "endColumn": 12, + "endOffset": 106947 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1469, + "startColumn": 4, + "startOffset": 115194, + "endLine": 1470, + "endColumn": 12, + "endOffset": 115289 + } + } + }, + { + "to": { + "startLine": 1404, + "startColumn": 4, + "startOffset": 106952, + "endLine": 1405, + "endColumn": 12, + "endOffset": 107065 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1471, + "startColumn": 4, + "startOffset": 115294, + "endLine": 1472, + "endColumn": 12, + "endOffset": 115407 + } + } + }, + { + "to": { + "startLine": 1406, + "startColumn": 4, + "startOffset": 107070, + "endLine": 1407, + "endColumn": 12, + "endOffset": 107169 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1473, + "startColumn": 4, + "startOffset": 115412, + "endLine": 1474, + "endColumn": 12, + "endOffset": 115511 + } + } + }, + { + "to": { + "startLine": 1408, + "startColumn": 4, + "startOffset": 107174, + "endLine": 1409, + "endColumn": 12, + "endOffset": 107273 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1475, + "startColumn": 4, + "startOffset": 115516, + "endLine": 1476, + "endColumn": 12, + "endOffset": 115615 + } + } + }, + { + "to": { + "startLine": 1410, + "startColumn": 4, + "startOffset": 107278, + "endLine": 1411, + "endColumn": 12, + "endOffset": 107399 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1477, + "startColumn": 4, + "startOffset": 115620, + "endLine": 1478, + "endColumn": 12, + "endOffset": 115741 + } + } + }, + { + "to": { + "startLine": 1412, + "startColumn": 4, + "startOffset": 107404, + "endColumn": 87, + "endOffset": 107487 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1479, + "startColumn": 4, + "startOffset": 115746, + "endColumn": 87, + "endOffset": 115829 + } + } + }, + { + "to": { + "startLine": 1413, + "startColumn": 4, + "startOffset": 107492, + "endColumn": 89, + "endOffset": 107577 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1480, + "startColumn": 4, + "startOffset": 115834, + "endColumn": 89, + "endOffset": 115919 + } + } + }, + { + "to": { + "startLine": 1414, + "startColumn": 4, + "startOffset": 107582, + "endColumn": 109, + "endOffset": 107687 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1481, + "startColumn": 4, + "startOffset": 115924, + "endColumn": 109, + "endOffset": 116029 + } + } + }, + { + "to": { + "startLine": 1415, + "startColumn": 4, + "startOffset": 107692, + "endColumn": 83, + "endOffset": 107771 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1482, + "startColumn": 4, + "startOffset": 116034, + "endColumn": 83, + "endOffset": 116113 + } + } + }, + { + "to": { + "startLine": 1416, + "startColumn": 4, + "startOffset": 107776, + "endColumn": 53, + "endOffset": 107825 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1483, + "startColumn": 4, + "startOffset": 116118, + "endColumn": 53, + "endOffset": 116167 + } + } + }, + { + "to": { + "startLine": 1417, + "startColumn": 4, + "startOffset": 107830, + "endColumn": 121, + "endOffset": 107947 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1484, + "startColumn": 4, + "startOffset": 116172, + "endColumn": 121, + "endOffset": 116289 + } + } + }, + { + "to": { + "startLine": 1418, + "startColumn": 4, + "startOffset": 107952, + "endColumn": 105, + "endOffset": 108053 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1485, + "startColumn": 4, + "startOffset": 116294, + "endColumn": 105, + "endOffset": 116395 + } + } + }, + { + "to": { + "startLine": 1419, + "startColumn": 4, + "startOffset": 108058, + "endColumn": 109, + "endOffset": 108163 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1486, + "startColumn": 4, + "startOffset": 116400, + "endColumn": 109, + "endOffset": 116505 + } + } + }, + { + "to": { + "startLine": 1420, + "startColumn": 4, + "startOffset": 108168, + "endColumn": 83, + "endOffset": 108247 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1487, + "startColumn": 4, + "startOffset": 116510, + "endColumn": 83, + "endOffset": 116589 + } + } + }, + { + "to": { + "startLine": 1421, + "startColumn": 4, + "startOffset": 108252, + "endColumn": 125, + "endOffset": 108373 + }, + "from": { + "file": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/values/values.xml", + "position": { + "startLine": 1488, + "startColumn": 4, + "startOffset": 116594, + "endColumn": 125, + "endOffset": 116715 + } + } + } + ] + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/anim.json b/circlerefresh/build/intermediates/blame/res/debug/single/anim.json new file mode 100644 index 0000000..6b8ee34 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/anim.json @@ -0,0 +1,42 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_slide_out_bottom.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_shrink_fade_out_from_bottom.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_popup_exit.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_popup_enter.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_fade_out.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_fade_out.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_slide_out_top.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_grow_fade_in_from_bottom.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_slide_in_top.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_slide_in_bottom.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_fade_in.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_fade_in.xml" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/color-v11.json b/circlerefresh/build/intermediates/blame/res/debug/single/color-v11.json new file mode 100644 index 0000000..fca3e42 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/color-v11.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color-v11/abc_background_cache_hint_selector_material_dark.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color-v11/abc_background_cache_hint_selector_material_light.xml" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/color.json b/circlerefresh/build/intermediates/blame/res/debug/single/color.json new file mode 100644 index 0000000..da2b876 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/color.json @@ -0,0 +1,38 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_primary_text_material_dark.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_primary_text_material_light.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/switch_thumb_material_dark.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/abc_search_url_text.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_search_url_text.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_secondary_text_material_dark.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/switch_thumb_material_light.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_primary_text_disable_only_material_light.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_secondary_text_material_light.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_primary_text_disable_only_material_dark.xml" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json new file mode 100644 index 0000000..0bb5ffb --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json @@ -0,0 +1,158 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_cursor_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_text_cursor_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_focused_holo.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/drawable-ldrtl-hdpi-v17.json b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-ldrtl-hdpi-v17.json new file mode 100644 index 0000000..8983f00 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-ldrtl-hdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/drawable-ldrtl-mdpi-v17.json b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-ldrtl-mdpi-v17.json new file mode 100644 index 0000000..f9538d3 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-ldrtl-mdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/drawable-ldrtl-xhdpi-v17.json b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-ldrtl-xhdpi-v17.json new file mode 100644 index 0000000..15616d8 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-ldrtl-xhdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxhdpi-v17.json b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxhdpi-v17.json new file mode 100644 index 0000000..444dc1a --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxhdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxxhdpi-v17.json b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxxhdpi-v17.json new file mode 100644 index 0000000..4f05365 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxxhdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json new file mode 100644 index 0000000..00b2e19 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json @@ -0,0 +1,158 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_focused_holo.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_cursor_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_text_cursor_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/drawable-tvdpi-v4.json b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-tvdpi-v4.json new file mode 100644 index 0000000..d48d3cf --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-tvdpi-v4.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-tvdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-tvdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-tvdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-tvdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json new file mode 100644 index 0000000..4c8e397 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json @@ -0,0 +1,158 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_cursor_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_text_cursor_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json new file mode 100644 index 0000000..fe0b3ca --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json @@ -0,0 +1,158 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_cursor_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_text_cursor_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/drawable-xxxhdpi-v4.json b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-xxxhdpi-v4.json new file mode 100644 index 0000000..b998842 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/drawable-xxxhdpi-v4.json @@ -0,0 +1,78 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/drawable.json b/circlerefresh/build/intermediates/blame/res/debug/single/drawable.json new file mode 100644 index 0000000..9f606fd --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/drawable.json @@ -0,0 +1,82 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_btn_default_mtrl_shape.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_list_selector_holo_dark.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_dialog_material_background_dark.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_cab_background_top_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_tab_indicator_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_ratingbar_full_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_spinner_textfield_background_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_btn_borderless_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_list_selector_holo_light.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_switch_thumb_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_cab_background_internal_bg.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_item_background_holo_dark.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_item_background_holo_light.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_btn_radio_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_textfield_search_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_btn_check_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_edit_text_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_list_selector_background_transition_holo_dark.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_list_selector_background_transition_holo_light.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_dialog_material_background_light.xml" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/layout-v11.json b/circlerefresh/build/intermediates/blame/res/debug/single/layout-v11.json new file mode 100644 index 0000000..8d8578b --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/layout-v11.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout-v11/abc_screen_content_include.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout-v11/abc_screen_content_include.xml" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/layout.json b/circlerefresh/build/intermediates/blame/res/debug/single/layout.json new file mode 100644 index 0000000..04f700f --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/layout.json @@ -0,0 +1,118 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_menu_layout.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_list_menu_item_checkbox.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_mode_close_item_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_screen_simple.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_activity_chooser_view_list_item.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_search_view.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_search_view.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_bar_title_item.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_screen_toolbar.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_mode_bar.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_popup_menu_item_layout.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/select_dialog_multichoice_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_dialog_title_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_list_menu_item_icon.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_bar_up_container.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/activity_main.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/layout/activity_main.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_activity_chooser_view.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_simple_dropdown_hint.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_simple_dropdown_hint.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/select_dialog_item_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_screen_simple_overlay_action_mode.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_search_dropdown_item_icons_2line.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_alert_dialog_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_select_dialog_material.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_menu_item_layout.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_list_menu_item_radio.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_expanded_menu_layout.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_bar_view_list_nav_layout.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_list_menu_item_layout.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/support_simple_spinner_dropdown_item.xml" + }, + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/select_dialog_singlechoice_material.xml" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/menu.json b/circlerefresh/build/intermediates/blame/res/debug/single/menu.json new file mode 100644 index 0000000..270dffd --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/menu.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/menu/menu_main.xml", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/menu/menu_main.xml" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/mipmap-hdpi-v4.json b/circlerefresh/build/intermediates/blame/res/debug/single/mipmap-hdpi-v4.json new file mode 100644 index 0000000..e285949 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/mipmap-hdpi-v4.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/mipmap-hdpi-v4/ic_launcher.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/mipmap-hdpi/ic_launcher.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/mipmap-mdpi-v4.json b/circlerefresh/build/intermediates/blame/res/debug/single/mipmap-mdpi-v4.json new file mode 100644 index 0000000..0c42127 --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/mipmap-mdpi-v4.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/mipmap-mdpi-v4/ic_launcher.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/mipmap-mdpi/ic_launcher.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/mipmap-xhdpi-v4.json b/circlerefresh/build/intermediates/blame/res/debug/single/mipmap-xhdpi-v4.json new file mode 100644 index 0000000..e1e958f --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/mipmap-xhdpi-v4.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/mipmap-xhdpi-v4/ic_launcher.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/mipmap-xhdpi/ic_launcher.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/blame/res/debug/single/mipmap-xxhdpi-v4.json b/circlerefresh/build/intermediates/blame/res/debug/single/mipmap-xxhdpi-v4.json new file mode 100644 index 0000000..df518ea --- /dev/null +++ b/circlerefresh/build/intermediates/blame/res/debug/single/mipmap-xxhdpi-v4.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/mipmap-xxhdpi-v4/ic_launcher.png", + "source": "/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/mipmap-xxhdpi/ic_launcher.png" + } +] \ No newline at end of file diff --git a/circlerefresh/build/intermediates/bundles/debug/AndroidManifest.xml b/circlerefresh/build/intermediates/bundles/debug/AndroidManifest.xml index d297aa2..19ffe58 100644 --- a/circlerefresh/build/intermediates/bundles/debug/AndroidManifest.xml +++ b/circlerefresh/build/intermediates/bundles/debug/AndroidManifest.xml @@ -12,16 +12,6 @@ android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" - android:theme="@style/AppTheme" > - - - - - - - - + android:theme="@style/AppTheme" /> \ No newline at end of file diff --git a/circlerefresh/build/intermediates/bundles/debug/aapt/AndroidManifest.xml b/circlerefresh/build/intermediates/bundles/debug/aapt/AndroidManifest.xml deleted file mode 100644 index d297aa2..0000000 --- a/circlerefresh/build/intermediates/bundles/debug/aapt/AndroidManifest.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/bundles/debug/classes.jar b/circlerefresh/build/intermediates/bundles/debug/classes.jar deleted file mode 100644 index e2f101e..0000000 Binary files a/circlerefresh/build/intermediates/bundles/debug/classes.jar and /dev/null differ diff --git a/circlerefresh/build/intermediates/bundles/debug/res/layout/activity_main.xml b/circlerefresh/build/intermediates/bundles/debug/res/layout/activity_main.xml index 44bb441..9d09ddc 100644 --- a/circlerefresh/build/intermediates/bundles/debug/res/layout/activity_main.xml +++ b/circlerefresh/build/intermediates/bundles/debug/res/layout/activity_main.xml @@ -31,4 +31,4 @@ android:layout_height="wrap_content" /> - \ No newline at end of file + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/bundles/debug/res/menu/menu_main.xml b/circlerefresh/build/intermediates/bundles/debug/res/menu/menu_main.xml index c37e2bd..b1cb908 100644 --- a/circlerefresh/build/intermediates/bundles/debug/res/menu/menu_main.xml +++ b/circlerefresh/build/intermediates/bundles/debug/res/menu/menu_main.xml @@ -4,4 +4,3 @@ - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/bundles/debug/res/mipmap-hdpi/ic_launcher.png b/circlerefresh/build/intermediates/bundles/debug/res/mipmap-hdpi-v4/ic_launcher.png similarity index 100% rename from circlerefresh/build/intermediates/bundles/debug/res/mipmap-hdpi/ic_launcher.png rename to circlerefresh/build/intermediates/bundles/debug/res/mipmap-hdpi-v4/ic_launcher.png diff --git a/circlerefresh/build/intermediates/bundles/debug/res/mipmap-mdpi/ic_launcher.png b/circlerefresh/build/intermediates/bundles/debug/res/mipmap-mdpi-v4/ic_launcher.png similarity index 100% rename from circlerefresh/build/intermediates/bundles/debug/res/mipmap-mdpi/ic_launcher.png rename to circlerefresh/build/intermediates/bundles/debug/res/mipmap-mdpi-v4/ic_launcher.png diff --git a/circlerefresh/build/intermediates/bundles/debug/res/mipmap-xhdpi/ic_launcher.png b/circlerefresh/build/intermediates/bundles/debug/res/mipmap-xhdpi-v4/ic_launcher.png similarity index 100% rename from circlerefresh/build/intermediates/bundles/debug/res/mipmap-xhdpi/ic_launcher.png rename to circlerefresh/build/intermediates/bundles/debug/res/mipmap-xhdpi-v4/ic_launcher.png diff --git a/circlerefresh/build/intermediates/bundles/debug/res/mipmap-xxhdpi/ic_launcher.png b/circlerefresh/build/intermediates/bundles/debug/res/mipmap-xxhdpi-v4/ic_launcher.png similarity index 100% rename from circlerefresh/build/intermediates/bundles/debug/res/mipmap-xxhdpi/ic_launcher.png rename to circlerefresh/build/intermediates/bundles/debug/res/mipmap-xxhdpi-v4/ic_launcher.png diff --git a/circlerefresh/build/intermediates/bundles/debug/res/values-w820dp-v13/values-w820dp-v13.xml b/circlerefresh/build/intermediates/bundles/debug/res/values-w820dp-v13/values-w820dp-v13.xml new file mode 100644 index 0000000..3eda5f5 --- /dev/null +++ b/circlerefresh/build/intermediates/bundles/debug/res/values-w820dp-v13/values-w820dp-v13.xml @@ -0,0 +1,4 @@ + + + 64dp + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/bundles/debug/res/values-w820dp/values-w820dp.xml b/circlerefresh/build/intermediates/bundles/debug/res/values-w820dp/values-w820dp.xml deleted file mode 100644 index b3a1d3b..0000000 --- a/circlerefresh/build/intermediates/bundles/debug/res/values-w820dp/values-w820dp.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - 64dp - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/bundles/debug/res/values/values.xml b/circlerefresh/build/intermediates/bundles/debug/res/values/values.xml index 9501cae..eb41087 100644 --- a/circlerefresh/build/intermediates/bundles/debug/res/values/values.xml +++ b/circlerefresh/build/intermediates/bundles/debug/res/values/values.xml @@ -1,17 +1,11 @@ - - 16dp 16dp - - Settings CircleRefresh Hello world! - - diff --git a/circlerefresh/build/intermediates/bundles/release/R.txt b/circlerefresh/build/intermediates/bundles/release/R.txt deleted file mode 100644 index d0f8f54..0000000 --- a/circlerefresh/build/intermediates/bundles/release/R.txt +++ /dev/null @@ -1,1139 +0,0 @@ -int anim abc_fade_in 0x7f050000 -int anim abc_fade_out 0x7f050001 -int anim abc_grow_fade_in_from_bottom 0x7f050002 -int anim abc_popup_enter 0x7f050003 -int anim abc_popup_exit 0x7f050004 -int anim abc_shrink_fade_out_from_bottom 0x7f050005 -int anim abc_slide_in_bottom 0x7f050006 -int anim abc_slide_in_top 0x7f050007 -int anim abc_slide_out_bottom 0x7f050008 -int anim abc_slide_out_top 0x7f050009 -int attr AniBackColor 0x7f010025 -int attr AniForeColor 0x7f010026 -int attr CircleSmaller 0x7f010027 -int attr actionBarDivider 0x7f010066 -int attr actionBarItemBackground 0x7f010067 -int attr actionBarPopupTheme 0x7f010060 -int attr actionBarSize 0x7f010065 -int attr actionBarSplitStyle 0x7f010062 -int attr actionBarStyle 0x7f010061 -int attr actionBarTabBarStyle 0x7f01005c -int attr actionBarTabStyle 0x7f01005b -int attr actionBarTabTextStyle 0x7f01005d -int attr actionBarTheme 0x7f010063 -int attr actionBarWidgetTheme 0x7f010064 -int attr actionButtonStyle 0x7f010080 -int attr actionDropDownStyle 0x7f01007c -int attr actionLayout 0x7f010034 -int attr actionMenuTextAppearance 0x7f010068 -int attr actionMenuTextColor 0x7f010069 -int attr actionModeBackground 0x7f01006c -int attr actionModeCloseButtonStyle 0x7f01006b -int attr actionModeCloseDrawable 0x7f01006e -int attr actionModeCopyDrawable 0x7f010070 -int attr actionModeCutDrawable 0x7f01006f -int attr actionModeFindDrawable 0x7f010074 -int attr actionModePasteDrawable 0x7f010071 -int attr actionModePopupWindowStyle 0x7f010076 -int attr actionModeSelectAllDrawable 0x7f010072 -int attr actionModeShareDrawable 0x7f010073 -int attr actionModeSplitBackground 0x7f01006d -int attr actionModeStyle 0x7f01006a -int attr actionModeWebSearchDrawable 0x7f010075 -int attr actionOverflowButtonStyle 0x7f01005e -int attr actionOverflowMenuStyle 0x7f01005f -int attr actionProviderClass 0x7f010036 -int attr actionViewClass 0x7f010035 -int attr activityChooserViewStyle 0x7f010087 -int attr alertDialogButtonGroupStyle 0x7f0100a8 -int attr alertDialogCenterButtons 0x7f0100a9 -int attr alertDialogStyle 0x7f0100a7 -int attr alertDialogTheme 0x7f0100aa -int attr autoCompleteTextViewStyle 0x7f0100af -int attr background 0x7f01000c -int attr backgroundSplit 0x7f01000e -int attr backgroundStacked 0x7f01000d -int attr backgroundTint 0x7f0100c8 -int attr backgroundTintMode 0x7f0100c9 -int attr barSize 0x7f01002e -int attr buttonBarButtonStyle 0x7f010082 -int attr buttonBarNegativeButtonStyle 0x7f0100ad -int attr buttonBarNeutralButtonStyle 0x7f0100ae -int attr buttonBarPositiveButtonStyle 0x7f0100ac -int attr buttonBarStyle 0x7f010081 -int attr buttonPanelSideLayout 0x7f01001f -int attr buttonStyle 0x7f0100b0 -int attr buttonStyleSmall 0x7f0100b1 -int attr checkboxStyle 0x7f0100b2 -int attr checkedTextViewStyle 0x7f0100b3 -int attr closeIcon 0x7f01003d -int attr closeItemLayout 0x7f01001c -int attr collapseContentDescription 0x7f0100c2 -int attr collapseIcon 0x7f0100c1 -int attr color 0x7f010028 -int attr colorAccent 0x7f0100a1 -int attr colorButtonNormal 0x7f0100a5 -int attr colorControlActivated 0x7f0100a3 -int attr colorControlHighlight 0x7f0100a4 -int attr colorControlNormal 0x7f0100a2 -int attr colorPrimary 0x7f01009f -int attr colorPrimaryDark 0x7f0100a0 -int attr colorSwitchThumbNormal 0x7f0100a6 -int attr commitIcon 0x7f010042 -int attr contentInsetEnd 0x7f010017 -int attr contentInsetLeft 0x7f010018 -int attr contentInsetRight 0x7f010019 -int attr contentInsetStart 0x7f010016 -int attr customNavigationLayout 0x7f01000f -int attr dialogPreferredPadding 0x7f01007a -int attr dialogTheme 0x7f010079 -int attr disableChildrenWhenDisabled 0x7f010049 -int attr displayOptions 0x7f010005 -int attr divider 0x7f01000b -int attr dividerHorizontal 0x7f010086 -int attr dividerPadding 0x7f010032 -int attr dividerVertical 0x7f010085 -int attr drawableSize 0x7f01002a -int attr drawerArrowStyle 0x7f010000 -int attr dropDownListViewStyle 0x7f010097 -int attr dropdownListPreferredItemHeight 0x7f01007d -int attr editTextBackground 0x7f01008d -int attr editTextColor 0x7f01008c -int attr editTextStyle 0x7f0100b4 -int attr elevation 0x7f01001a -int attr expandActivityOverflowButtonDrawable 0x7f01001e -int attr gapBetweenBars 0x7f01002b -int attr goIcon 0x7f01003e -int attr height 0x7f010001 -int attr hideOnContentScroll 0x7f010015 -int attr homeAsUpIndicator 0x7f01007f -int attr homeLayout 0x7f010010 -int attr icon 0x7f010009 -int attr iconifiedByDefault 0x7f01003b -int attr indeterminateProgressStyle 0x7f010012 -int attr initialActivityCount 0x7f01001d -int attr isLightTheme 0x7f010002 -int attr itemPadding 0x7f010014 -int attr layout 0x7f01003a -int attr listChoiceBackgroundIndicator 0x7f01009e -int attr listDividerAlertDialog 0x7f01007b -int attr listItemLayout 0x7f010023 -int attr listLayout 0x7f010020 -int attr listPopupWindowStyle 0x7f010098 -int attr listPreferredItemHeight 0x7f010092 -int attr listPreferredItemHeightLarge 0x7f010094 -int attr listPreferredItemHeightSmall 0x7f010093 -int attr listPreferredItemPaddingLeft 0x7f010095 -int attr listPreferredItemPaddingRight 0x7f010096 -int attr logo 0x7f01000a -int attr maxButtonHeight 0x7f0100c0 -int attr measureWithLargestChild 0x7f010030 -int attr middleBarArrowSize 0x7f01002d -int attr multiChoiceItemLayout 0x7f010021 -int attr navigationContentDescription 0x7f0100c4 -int attr navigationIcon 0x7f0100c3 -int attr navigationMode 0x7f010004 -int attr overlapAnchor 0x7f010038 -int attr paddingEnd 0x7f0100c6 -int attr paddingStart 0x7f0100c5 -int attr panelBackground 0x7f01009b -int attr panelMenuListTheme 0x7f01009d -int attr panelMenuListWidth 0x7f01009c -int attr popupMenuStyle 0x7f01008a -int attr popupPromptView 0x7f010048 -int attr popupTheme 0x7f01001b -int attr popupWindowStyle 0x7f01008b -int attr preserveIconSpacing 0x7f010037 -int attr progressBarPadding 0x7f010013 -int attr progressBarStyle 0x7f010011 -int attr prompt 0x7f010046 -int attr queryBackground 0x7f010044 -int attr queryHint 0x7f01003c -int attr radioButtonStyle 0x7f0100b5 -int attr ratingBarStyle 0x7f0100b6 -int attr searchHintIcon 0x7f010040 -int attr searchIcon 0x7f01003f -int attr searchViewStyle 0x7f010091 -int attr selectableItemBackground 0x7f010083 -int attr selectableItemBackgroundBorderless 0x7f010084 -int attr showAsAction 0x7f010033 -int attr showDividers 0x7f010031 -int attr showText 0x7f010050 -int attr singleChoiceItemLayout 0x7f010022 -int attr spinBars 0x7f010029 -int attr spinnerDropDownItemStyle 0x7f01007e -int attr spinnerMode 0x7f010047 -int attr spinnerStyle 0x7f0100b7 -int attr splitTrack 0x7f01004f -int attr state_above_anchor 0x7f010039 -int attr submitBackground 0x7f010045 -int attr subtitle 0x7f010006 -int attr subtitleTextAppearance 0x7f0100ba -int attr subtitleTextStyle 0x7f010008 -int attr suggestionRowLayout 0x7f010043 -int attr switchMinWidth 0x7f01004d -int attr switchPadding 0x7f01004e -int attr switchStyle 0x7f0100b8 -int attr switchTextAppearance 0x7f01004c -int attr textAllCaps 0x7f010024 -int attr textAppearanceLargePopupMenu 0x7f010077 -int attr textAppearanceListItem 0x7f010099 -int attr textAppearanceListItemSmall 0x7f01009a -int attr textAppearanceSearchResultSubtitle 0x7f01008f -int attr textAppearanceSearchResultTitle 0x7f01008e -int attr textAppearanceSmallPopupMenu 0x7f010078 -int attr textColorAlertDialogListItem 0x7f0100ab -int attr textColorSearchUrl 0x7f010090 -int attr theme 0x7f0100c7 -int attr thickness 0x7f01002f -int attr thumbTextPadding 0x7f01004b -int attr title 0x7f010003 -int attr titleMarginBottom 0x7f0100bf -int attr titleMarginEnd 0x7f0100bd -int attr titleMarginStart 0x7f0100bc -int attr titleMarginTop 0x7f0100be -int attr titleMargins 0x7f0100bb -int attr titleTextAppearance 0x7f0100b9 -int attr titleTextStyle 0x7f010007 -int attr toolbarNavigationButtonStyle 0x7f010089 -int attr toolbarStyle 0x7f010088 -int attr topBottomBarArrowSize 0x7f01002c -int attr track 0x7f01004a -int attr voiceIcon 0x7f010041 -int attr windowActionBar 0x7f010051 -int attr windowActionBarOverlay 0x7f010053 -int attr windowActionModeOverlay 0x7f010054 -int attr windowFixedHeightMajor 0x7f010058 -int attr windowFixedHeightMinor 0x7f010056 -int attr windowFixedWidthMajor 0x7f010055 -int attr windowFixedWidthMinor 0x7f010057 -int attr windowMinWidthMajor 0x7f010059 -int attr windowMinWidthMinor 0x7f01005a -int attr windowNoTitle 0x7f010052 -int bool abc_action_bar_embed_tabs 0x7f090002 -int bool abc_action_bar_embed_tabs_pre_jb 0x7f090000 -int bool abc_action_bar_expanded_action_views_exclusive 0x7f090003 -int bool abc_config_actionMenuItemAllCaps 0x7f090004 -int bool abc_config_allowActionMenuItemTextWithIcon 0x7f090001 -int bool abc_config_closeDialogWhenTouchOutside 0x7f090005 -int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f090006 -int color abc_background_cache_hint_selector_material_dark 0x7f0b0033 -int color abc_background_cache_hint_selector_material_light 0x7f0b0034 -int color abc_input_method_navigation_guard 0x7f0b0000 -int color abc_primary_text_disable_only_material_dark 0x7f0b0035 -int color abc_primary_text_disable_only_material_light 0x7f0b0036 -int color abc_primary_text_material_dark 0x7f0b0037 -int color abc_primary_text_material_light 0x7f0b0038 -int color abc_search_url_text 0x7f0b0039 -int color abc_search_url_text_normal 0x7f0b0001 -int color abc_search_url_text_pressed 0x7f0b0002 -int color abc_search_url_text_selected 0x7f0b0003 -int color abc_secondary_text_material_dark 0x7f0b003a -int color abc_secondary_text_material_light 0x7f0b003b -int color accent_material_dark 0x7f0b0004 -int color accent_material_light 0x7f0b0005 -int color background_floating_material_dark 0x7f0b0006 -int color background_floating_material_light 0x7f0b0007 -int color background_material_dark 0x7f0b0008 -int color background_material_light 0x7f0b0009 -int color bright_foreground_disabled_material_dark 0x7f0b000a -int color bright_foreground_disabled_material_light 0x7f0b000b -int color bright_foreground_inverse_material_dark 0x7f0b000c -int color bright_foreground_inverse_material_light 0x7f0b000d -int color bright_foreground_material_dark 0x7f0b000e -int color bright_foreground_material_light 0x7f0b000f -int color button_material_dark 0x7f0b0010 -int color button_material_light 0x7f0b0011 -int color dim_foreground_disabled_material_dark 0x7f0b0012 -int color dim_foreground_disabled_material_light 0x7f0b0013 -int color dim_foreground_material_dark 0x7f0b0014 -int color dim_foreground_material_light 0x7f0b0015 -int color highlighted_text_material_dark 0x7f0b0016 -int color highlighted_text_material_light 0x7f0b0017 -int color hint_foreground_material_dark 0x7f0b0018 -int color hint_foreground_material_light 0x7f0b0019 -int color link_text_material_dark 0x7f0b001a -int color link_text_material_light 0x7f0b001b -int color material_blue_grey_800 0x7f0b001c -int color material_blue_grey_900 0x7f0b001d -int color material_blue_grey_950 0x7f0b001e -int color material_deep_teal_200 0x7f0b001f -int color material_deep_teal_500 0x7f0b0020 -int color primary_dark_material_dark 0x7f0b0021 -int color primary_dark_material_light 0x7f0b0022 -int color primary_material_dark 0x7f0b0023 -int color primary_material_light 0x7f0b0024 -int color primary_text_default_material_dark 0x7f0b0025 -int color primary_text_default_material_light 0x7f0b0026 -int color primary_text_disabled_material_dark 0x7f0b0027 -int color primary_text_disabled_material_light 0x7f0b0028 -int color ripple_material_dark 0x7f0b0029 -int color ripple_material_light 0x7f0b002a -int color secondary_text_default_material_dark 0x7f0b002b -int color secondary_text_default_material_light 0x7f0b002c -int color secondary_text_disabled_material_dark 0x7f0b002d -int color secondary_text_disabled_material_light 0x7f0b002e -int color switch_thumb_disabled_material_dark 0x7f0b002f -int color switch_thumb_disabled_material_light 0x7f0b0030 -int color switch_thumb_material_dark 0x7f0b003c -int color switch_thumb_material_light 0x7f0b003d -int color switch_thumb_normal_material_dark 0x7f0b0031 -int color switch_thumb_normal_material_light 0x7f0b0032 -int dimen abc_action_bar_content_inset_material 0x7f07000c -int dimen abc_action_bar_default_height_material 0x7f070001 -int dimen abc_action_bar_default_padding_material 0x7f070002 -int dimen abc_action_bar_icon_vertical_padding_material 0x7f070011 -int dimen abc_action_bar_navigation_padding_start_material 0x7f07000d -int dimen abc_action_bar_overflow_padding_end_material 0x7f07000e -int dimen abc_action_bar_overflow_padding_start_material 0x7f070012 -int dimen abc_action_bar_progress_bar_size 0x7f070003 -int dimen abc_action_bar_stacked_max_height 0x7f070013 -int dimen abc_action_bar_stacked_tab_max_width 0x7f070014 -int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f070015 -int dimen abc_action_bar_subtitle_top_margin_material 0x7f070016 -int dimen abc_action_button_min_height_material 0x7f070017 -int dimen abc_action_button_min_width_material 0x7f070018 -int dimen abc_action_button_min_width_overflow_material 0x7f070019 -int dimen abc_alert_dialog_button_bar_height 0x7f070000 -int dimen abc_button_inset_horizontal_material 0x7f07001a -int dimen abc_button_inset_vertical_material 0x7f07001b -int dimen abc_button_padding_horizontal_material 0x7f07001c -int dimen abc_button_padding_vertical_material 0x7f07001d -int dimen abc_config_prefDialogWidth 0x7f070006 -int dimen abc_control_corner_material 0x7f07001e -int dimen abc_control_inset_material 0x7f07001f -int dimen abc_control_padding_material 0x7f070020 -int dimen abc_dialog_list_padding_vertical_material 0x7f070021 -int dimen abc_dialog_min_width_major 0x7f070022 -int dimen abc_dialog_min_width_minor 0x7f070023 -int dimen abc_dialog_padding_material 0x7f070024 -int dimen abc_dialog_padding_top_material 0x7f070025 -int dimen abc_disabled_alpha_material_dark 0x7f070026 -int dimen abc_disabled_alpha_material_light 0x7f070027 -int dimen abc_dropdownitem_icon_width 0x7f070028 -int dimen abc_dropdownitem_text_padding_left 0x7f070029 -int dimen abc_dropdownitem_text_padding_right 0x7f07002a -int dimen abc_edit_text_inset_bottom_material 0x7f07002b -int dimen abc_edit_text_inset_horizontal_material 0x7f07002c -int dimen abc_edit_text_inset_top_material 0x7f07002d -int dimen abc_floating_window_z 0x7f07002e -int dimen abc_list_item_padding_horizontal_material 0x7f07002f -int dimen abc_panel_menu_list_width 0x7f070030 -int dimen abc_search_view_preferred_width 0x7f070031 -int dimen abc_search_view_text_min_width 0x7f070007 -int dimen abc_switch_padding 0x7f07000f -int dimen abc_text_size_body_1_material 0x7f070032 -int dimen abc_text_size_body_2_material 0x7f070033 -int dimen abc_text_size_button_material 0x7f070034 -int dimen abc_text_size_caption_material 0x7f070035 -int dimen abc_text_size_display_1_material 0x7f070036 -int dimen abc_text_size_display_2_material 0x7f070037 -int dimen abc_text_size_display_3_material 0x7f070038 -int dimen abc_text_size_display_4_material 0x7f070039 -int dimen abc_text_size_headline_material 0x7f07003a -int dimen abc_text_size_large_material 0x7f07003b -int dimen abc_text_size_medium_material 0x7f07003c -int dimen abc_text_size_menu_material 0x7f07003d -int dimen abc_text_size_small_material 0x7f07003e -int dimen abc_text_size_subhead_material 0x7f07003f -int dimen abc_text_size_subtitle_material_toolbar 0x7f070004 -int dimen abc_text_size_title_material 0x7f070040 -int dimen abc_text_size_title_material_toolbar 0x7f070005 -int dimen activity_horizontal_margin 0x7f070010 -int dimen activity_vertical_margin 0x7f070041 -int dimen dialog_fixed_height_major 0x7f070008 -int dimen dialog_fixed_height_minor 0x7f070009 -int dimen dialog_fixed_width_major 0x7f07000a -int dimen dialog_fixed_width_minor 0x7f07000b -int dimen disabled_alpha_material_dark 0x7f070042 -int dimen disabled_alpha_material_light 0x7f070043 -int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000 -int drawable abc_btn_borderless_material 0x7f020001 -int drawable abc_btn_check_material 0x7f020002 -int drawable abc_btn_check_to_on_mtrl_000 0x7f020003 -int drawable abc_btn_check_to_on_mtrl_015 0x7f020004 -int drawable abc_btn_default_mtrl_shape 0x7f020005 -int drawable abc_btn_radio_material 0x7f020006 -int drawable abc_btn_radio_to_on_mtrl_000 0x7f020007 -int drawable abc_btn_radio_to_on_mtrl_015 0x7f020008 -int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f020009 -int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000a -int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000b -int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000c -int drawable abc_cab_background_internal_bg 0x7f02000d -int drawable abc_cab_background_top_material 0x7f02000e -int drawable abc_cab_background_top_mtrl_alpha 0x7f02000f -int drawable abc_dialog_material_background_dark 0x7f020010 -int drawable abc_dialog_material_background_light 0x7f020011 -int drawable abc_edit_text_material 0x7f020012 -int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020013 -int drawable abc_ic_clear_mtrl_alpha 0x7f020014 -int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020015 -int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020016 -int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f020017 -int drawable abc_ic_menu_cut_mtrl_alpha 0x7f020018 -int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f020019 -int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001a -int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001b -int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001c -int drawable abc_ic_search_api_mtrl_alpha 0x7f02001d -int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f02001e -int drawable abc_item_background_holo_dark 0x7f02001f -int drawable abc_item_background_holo_light 0x7f020020 -int drawable abc_list_divider_mtrl_alpha 0x7f020021 -int drawable abc_list_focused_holo 0x7f020022 -int drawable abc_list_longpressed_holo 0x7f020023 -int drawable abc_list_pressed_holo_dark 0x7f020024 -int drawable abc_list_pressed_holo_light 0x7f020025 -int drawable abc_list_selector_background_transition_holo_dark 0x7f020026 -int drawable abc_list_selector_background_transition_holo_light 0x7f020027 -int drawable abc_list_selector_disabled_holo_dark 0x7f020028 -int drawable abc_list_selector_disabled_holo_light 0x7f020029 -int drawable abc_list_selector_holo_dark 0x7f02002a -int drawable abc_list_selector_holo_light 0x7f02002b -int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f02002c -int drawable abc_popup_background_mtrl_mult 0x7f02002d -int drawable abc_ratingbar_full_material 0x7f02002e -int drawable abc_spinner_mtrl_am_alpha 0x7f02002f -int drawable abc_spinner_textfield_background_material 0x7f020030 -int drawable abc_switch_thumb_material 0x7f020031 -int drawable abc_switch_track_mtrl_alpha 0x7f020032 -int drawable abc_tab_indicator_material 0x7f020033 -int drawable abc_tab_indicator_mtrl_alpha 0x7f020034 -int drawable abc_text_cursor_mtrl_alpha 0x7f020035 -int drawable abc_textfield_activated_mtrl_alpha 0x7f020036 -int drawable abc_textfield_default_mtrl_alpha 0x7f020037 -int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020038 -int drawable abc_textfield_search_default_mtrl_alpha 0x7f020039 -int drawable abc_textfield_search_material 0x7f02003a -int id action_bar 0x7f0c0040 -int id action_bar_activity_content 0x7f0c0000 -int id action_bar_container 0x7f0c003f -int id action_bar_root 0x7f0c003b -int id action_bar_spinner 0x7f0c0001 -int id action_bar_subtitle 0x7f0c0024 -int id action_bar_title 0x7f0c0023 -int id action_context_bar 0x7f0c0041 -int id action_menu_divider 0x7f0c0002 -int id action_menu_presenter 0x7f0c0003 -int id action_mode_bar 0x7f0c003d -int id action_mode_bar_stub 0x7f0c003c -int id action_mode_close_button 0x7f0c0025 -int id action_settings 0x7f0c0051 -int id activity_chooser_view_content 0x7f0c0026 -int id alertTitle 0x7f0c0030 -int id always 0x7f0c0016 -int id beginning 0x7f0c0013 -int id buttonPanel 0x7f0c0036 -int id checkbox 0x7f0c0038 -int id collapseActionView 0x7f0c0017 -int id contentPanel 0x7f0c0031 -int id custom 0x7f0c0035 -int id customPanel 0x7f0c0034 -int id decor_content_parent 0x7f0c003e -int id default_activity_button 0x7f0c0029 -int id dialog 0x7f0c001b -int id disableHome 0x7f0c000c -int id dropdown 0x7f0c001c -int id edit_query 0x7f0c0042 -int id end 0x7f0c0014 -int id expand_activities_button 0x7f0c0027 -int id expanded_menu 0x7f0c0037 -int id home 0x7f0c0004 -int id homeAsUp 0x7f0c000d -int id icon 0x7f0c002b -int id ifRoom 0x7f0c0018 -int id image 0x7f0c0028 -int id list 0x7f0c0050 -int id listMode 0x7f0c0009 -int id list_item 0x7f0c002a -int id middle 0x7f0c0015 -int id multiply 0x7f0c001e -int id never 0x7f0c0019 -int id none 0x7f0c000e -int id normal 0x7f0c000a -int id parentPanel 0x7f0c002d -int id progress_circular 0x7f0c0005 -int id progress_horizontal 0x7f0c0006 -int id radio 0x7f0c003a -int id refresh_layout 0x7f0c004f -int id screen 0x7f0c001f -int id scrollView 0x7f0c0032 -int id search_badge 0x7f0c0044 -int id search_bar 0x7f0c0043 -int id search_button 0x7f0c0045 -int id search_close_btn 0x7f0c004a -int id search_edit_frame 0x7f0c0046 -int id search_go_btn 0x7f0c004c -int id search_mag_icon 0x7f0c0047 -int id search_plate 0x7f0c0048 -int id search_src_text 0x7f0c0049 -int id search_voice_btn 0x7f0c004d -int id select_dialog_listview 0x7f0c004e -int id shortcut 0x7f0c0039 -int id showCustom 0x7f0c000f -int id showHome 0x7f0c0010 -int id showTitle 0x7f0c0011 -int id split_action_bar 0x7f0c0007 -int id src_atop 0x7f0c0020 -int id src_in 0x7f0c0021 -int id src_over 0x7f0c0022 -int id submit_area 0x7f0c004b -int id tabMode 0x7f0c000b -int id textSpacerNoButtons 0x7f0c0033 -int id title 0x7f0c002c -int id title_template 0x7f0c002f -int id topPanel 0x7f0c002e -int id up 0x7f0c0008 -int id useLogo 0x7f0c0012 -int id withText 0x7f0c001a -int id wrap_content 0x7f0c001d -int integer abc_config_activityDefaultDur 0x7f0a0001 -int integer abc_config_activityShortDur 0x7f0a0002 -int integer abc_max_action_buttons 0x7f0a0000 -int layout abc_action_bar_title_item 0x7f040000 -int layout abc_action_bar_up_container 0x7f040001 -int layout abc_action_bar_view_list_nav_layout 0x7f040002 -int layout abc_action_menu_item_layout 0x7f040003 -int layout abc_action_menu_layout 0x7f040004 -int layout abc_action_mode_bar 0x7f040005 -int layout abc_action_mode_close_item_material 0x7f040006 -int layout abc_activity_chooser_view 0x7f040007 -int layout abc_activity_chooser_view_list_item 0x7f040008 -int layout abc_alert_dialog_material 0x7f040009 -int layout abc_dialog_title_material 0x7f04000a -int layout abc_expanded_menu_layout 0x7f04000b -int layout abc_list_menu_item_checkbox 0x7f04000c -int layout abc_list_menu_item_icon 0x7f04000d -int layout abc_list_menu_item_layout 0x7f04000e -int layout abc_list_menu_item_radio 0x7f04000f -int layout abc_popup_menu_item_layout 0x7f040010 -int layout abc_screen_content_include 0x7f040011 -int layout abc_screen_simple 0x7f040012 -int layout abc_screen_simple_overlay_action_mode 0x7f040013 -int layout abc_screen_toolbar 0x7f040014 -int layout abc_search_dropdown_item_icons_2line 0x7f040015 -int layout abc_search_view 0x7f040016 -int layout abc_select_dialog_material 0x7f040017 -int layout abc_simple_dropdown_hint 0x7f040018 -int layout activity_main 0x7f040019 -int layout select_dialog_item_material 0x7f04001a -int layout select_dialog_multichoice_material 0x7f04001b -int layout select_dialog_singlechoice_material 0x7f04001c -int layout support_simple_spinner_dropdown_item 0x7f04001d -int menu menu_main 0x7f0d0000 -int mipmap ic_launcher 0x7f030000 -int string abc_action_bar_home_description 0x7f060000 -int string abc_action_bar_home_description_format 0x7f06000d -int string abc_action_bar_home_subtitle_description_format 0x7f06000e -int string abc_action_bar_up_description 0x7f060001 -int string abc_action_menu_overflow_description 0x7f060002 -int string abc_action_mode_done 0x7f060003 -int string abc_activity_chooser_view_see_all 0x7f060004 -int string abc_activitychooserview_choose_application 0x7f060005 -int string abc_search_hint 0x7f06000f -int string abc_searchview_description_clear 0x7f060006 -int string abc_searchview_description_query 0x7f060007 -int string abc_searchview_description_search 0x7f060008 -int string abc_searchview_description_submit 0x7f060009 -int string abc_searchview_description_voice 0x7f06000a -int string abc_shareactionprovider_share_with 0x7f06000b -int string abc_shareactionprovider_share_with_application 0x7f06000c -int string abc_toolbar_collapse_description 0x7f060010 -int string action_settings 0x7f060011 -int string app_name 0x7f060012 -int string hello_world 0x7f060013 -int style AlertDialog_AppCompat 0x7f08006b -int style AlertDialog_AppCompat_Light 0x7f08006c -int style Animation_AppCompat_Dialog 0x7f08006d -int style Animation_AppCompat_DropDownUp 0x7f08006e -int style AppTheme 0x7f08006f -int style Base_AlertDialog_AppCompat 0x7f080070 -int style Base_AlertDialog_AppCompat_Light 0x7f080071 -int style Base_Animation_AppCompat_Dialog 0x7f080072 -int style Base_Animation_AppCompat_DropDownUp 0x7f080073 -int style Base_DialogWindowTitle_AppCompat 0x7f080074 -int style Base_DialogWindowTitleBackground_AppCompat 0x7f080075 -int style Base_TextAppearance_AppCompat 0x7f080025 -int style Base_TextAppearance_AppCompat_Body1 0x7f080026 -int style Base_TextAppearance_AppCompat_Body2 0x7f080027 -int style Base_TextAppearance_AppCompat_Button 0x7f080016 -int style Base_TextAppearance_AppCompat_Caption 0x7f080028 -int style Base_TextAppearance_AppCompat_Display1 0x7f080029 -int style Base_TextAppearance_AppCompat_Display2 0x7f08002a -int style Base_TextAppearance_AppCompat_Display3 0x7f08002b -int style Base_TextAppearance_AppCompat_Display4 0x7f08002c -int style Base_TextAppearance_AppCompat_Headline 0x7f08002d -int style Base_TextAppearance_AppCompat_Inverse 0x7f080003 -int style Base_TextAppearance_AppCompat_Large 0x7f08002e -int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f080004 -int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f08002f -int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f080030 -int style Base_TextAppearance_AppCompat_Medium 0x7f080031 -int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f080005 -int style Base_TextAppearance_AppCompat_Menu 0x7f080032 -int style Base_TextAppearance_AppCompat_SearchResult 0x7f080076 -int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f080033 -int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f080034 -int style Base_TextAppearance_AppCompat_Small 0x7f080035 -int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f080006 -int style Base_TextAppearance_AppCompat_Subhead 0x7f080036 -int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f080007 -int style Base_TextAppearance_AppCompat_Title 0x7f080037 -int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f080008 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f080038 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f080039 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f08003a -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f08003b -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f08003c -int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f08003d -int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f08003e -int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f080077 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f08003f -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f080040 -int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f080041 -int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f080042 -int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f080078 -int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f080043 -int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f080044 -int style Base_Theme_AppCompat 0x7f080045 -int style Base_Theme_AppCompat_CompactMenu 0x7f080079 -int style Base_Theme_AppCompat_Dialog 0x7f080009 -int style Base_Theme_AppCompat_Dialog_Alert 0x7f08007a -int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f08007b -int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f08007c -int style Base_Theme_AppCompat_DialogWhenLarge 0x7f080001 -int style Base_Theme_AppCompat_Light 0x7f080046 -int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f08007d -int style Base_Theme_AppCompat_Light_Dialog 0x7f08000a -int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f08007e -int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f08007f -int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f080080 -int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f080002 -int style Base_ThemeOverlay_AppCompat 0x7f080081 -int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f080082 -int style Base_ThemeOverlay_AppCompat_Dark 0x7f080083 -int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f080084 -int style Base_ThemeOverlay_AppCompat_Light 0x7f080085 -int style Base_V11_Theme_AppCompat_Dialog 0x7f08000b -int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f08000c -int style Base_V21_Theme_AppCompat 0x7f080047 -int style Base_V21_Theme_AppCompat_Dialog 0x7f080048 -int style Base_V21_Theme_AppCompat_Light 0x7f080049 -int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f08004a -int style Base_V7_Theme_AppCompat 0x7f080086 -int style Base_V7_Theme_AppCompat_Dialog 0x7f080087 -int style Base_V7_Theme_AppCompat_Light 0x7f080088 -int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f080089 -int style Base_Widget_AppCompat_ActionBar 0x7f08008a -int style Base_Widget_AppCompat_ActionBar_Solid 0x7f08008b -int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f08008c -int style Base_Widget_AppCompat_ActionBar_TabText 0x7f08004b -int style Base_Widget_AppCompat_ActionBar_TabView 0x7f08004c -int style Base_Widget_AppCompat_ActionButton 0x7f08004d -int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f08004e -int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f08004f -int style Base_Widget_AppCompat_ActionMode 0x7f08008d -int style Base_Widget_AppCompat_ActivityChooserView 0x7f08008e -int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f080050 -int style Base_Widget_AppCompat_Button 0x7f080051 -int style Base_Widget_AppCompat_Button_Borderless 0x7f080052 -int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f080053 -int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f08008f -int style Base_Widget_AppCompat_Button_Small 0x7f080054 -int style Base_Widget_AppCompat_ButtonBar 0x7f080055 -int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f080090 -int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f080056 -int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f080057 -int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f080091 -int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f080000 -int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f080092 -int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f080058 -int style Base_Widget_AppCompat_EditText 0x7f080093 -int style Base_Widget_AppCompat_Light_ActionBar 0x7f080094 -int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f080095 -int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f080096 -int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f080059 -int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f08005a -int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f08005b -int style Base_Widget_AppCompat_Light_PopupMenu 0x7f08005c -int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f08005d -int style Base_Widget_AppCompat_ListPopupWindow 0x7f08005e -int style Base_Widget_AppCompat_ListView 0x7f08005f -int style Base_Widget_AppCompat_ListView_DropDown 0x7f080060 -int style Base_Widget_AppCompat_ListView_Menu 0x7f080061 -int style Base_Widget_AppCompat_PopupMenu 0x7f080062 -int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f080063 -int style Base_Widget_AppCompat_PopupWindow 0x7f080097 -int style Base_Widget_AppCompat_ProgressBar 0x7f08000d -int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f08000e -int style Base_Widget_AppCompat_RatingBar 0x7f080064 -int style Base_Widget_AppCompat_SearchView 0x7f080098 -int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f080099 -int style Base_Widget_AppCompat_Spinner 0x7f08000f -int style Base_Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f080065 -int style Base_Widget_AppCompat_Spinner_Underlined 0x7f080066 -int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f080067 -int style Base_Widget_AppCompat_Toolbar 0x7f08009a -int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f080068 -int style Platform_AppCompat 0x7f080010 -int style Platform_AppCompat_Light 0x7f080011 -int style Platform_ThemeOverlay_AppCompat_Dark 0x7f080069 -int style Platform_ThemeOverlay_AppCompat_Light 0x7f08006a -int style Platform_V11_AppCompat 0x7f080012 -int style Platform_V11_AppCompat_Light 0x7f080013 -int style Platform_V12_AppCompat 0x7f080014 -int style Platform_V12_AppCompat_Light 0x7f080015 -int style Platform_V14_AppCompat 0x7f080017 -int style Platform_V14_AppCompat_Light 0x7f080018 -int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f080019 -int style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f08001a -int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f08001b -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f08001c -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f08001d -int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f08001e -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f08001f -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f080020 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f080021 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f080022 -int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f080023 -int style RtlOverlay_Widget_AppCompat_Toolbar_Button_Navigation 0x7f080024 -int style TextAppearance_AppCompat 0x7f08009b -int style TextAppearance_AppCompat_Body1 0x7f08009c -int style TextAppearance_AppCompat_Body2 0x7f08009d -int style TextAppearance_AppCompat_Button 0x7f08009e -int style TextAppearance_AppCompat_Caption 0x7f08009f -int style TextAppearance_AppCompat_Display1 0x7f0800a0 -int style TextAppearance_AppCompat_Display2 0x7f0800a1 -int style TextAppearance_AppCompat_Display3 0x7f0800a2 -int style TextAppearance_AppCompat_Display4 0x7f0800a3 -int style TextAppearance_AppCompat_Headline 0x7f0800a4 -int style TextAppearance_AppCompat_Inverse 0x7f0800a5 -int style TextAppearance_AppCompat_Large 0x7f0800a6 -int style TextAppearance_AppCompat_Large_Inverse 0x7f0800a7 -int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0800a8 -int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0800a9 -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0800aa -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0800ab -int style TextAppearance_AppCompat_Medium 0x7f0800ac -int style TextAppearance_AppCompat_Medium_Inverse 0x7f0800ad -int style TextAppearance_AppCompat_Menu 0x7f0800ae -int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0800af -int style TextAppearance_AppCompat_SearchResult_Title 0x7f0800b0 -int style TextAppearance_AppCompat_Small 0x7f0800b1 -int style TextAppearance_AppCompat_Small_Inverse 0x7f0800b2 -int style TextAppearance_AppCompat_Subhead 0x7f0800b3 -int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0800b4 -int style TextAppearance_AppCompat_Title 0x7f0800b5 -int style TextAppearance_AppCompat_Title_Inverse 0x7f0800b6 -int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0800b7 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0800b8 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0800b9 -int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0800ba -int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0800bb -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0800bc -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0800bd -int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0800be -int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0800bf -int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0800c0 -int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0800c1 -int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0800c2 -int style TextAppearance_AppCompat_Widget_Switch 0x7f0800c3 -int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0800c4 -int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0800c5 -int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0800c6 -int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0800c7 -int style Theme_AppCompat 0x7f0800c8 -int style Theme_AppCompat_CompactMenu 0x7f0800c9 -int style Theme_AppCompat_Dialog 0x7f0800ca -int style Theme_AppCompat_Dialog_Alert 0x7f0800cb -int style Theme_AppCompat_Dialog_MinWidth 0x7f0800cc -int style Theme_AppCompat_DialogWhenLarge 0x7f0800cd -int style Theme_AppCompat_Light 0x7f0800ce -int style Theme_AppCompat_Light_DarkActionBar 0x7f0800cf -int style Theme_AppCompat_Light_Dialog 0x7f0800d0 -int style Theme_AppCompat_Light_Dialog_Alert 0x7f0800d1 -int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0800d2 -int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0800d3 -int style Theme_AppCompat_Light_NoActionBar 0x7f0800d4 -int style Theme_AppCompat_NoActionBar 0x7f0800d5 -int style ThemeOverlay_AppCompat 0x7f0800d6 -int style ThemeOverlay_AppCompat_ActionBar 0x7f0800d7 -int style ThemeOverlay_AppCompat_Dark 0x7f0800d8 -int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0800d9 -int style ThemeOverlay_AppCompat_Light 0x7f0800da -int style Widget_AppCompat_ActionBar 0x7f0800db -int style Widget_AppCompat_ActionBar_Solid 0x7f0800dc -int style Widget_AppCompat_ActionBar_TabBar 0x7f0800dd -int style Widget_AppCompat_ActionBar_TabText 0x7f0800de -int style Widget_AppCompat_ActionBar_TabView 0x7f0800df -int style Widget_AppCompat_ActionButton 0x7f0800e0 -int style Widget_AppCompat_ActionButton_CloseMode 0x7f0800e1 -int style Widget_AppCompat_ActionButton_Overflow 0x7f0800e2 -int style Widget_AppCompat_ActionMode 0x7f0800e3 -int style Widget_AppCompat_ActivityChooserView 0x7f0800e4 -int style Widget_AppCompat_AutoCompleteTextView 0x7f0800e5 -int style Widget_AppCompat_Button 0x7f0800e6 -int style Widget_AppCompat_Button_Borderless 0x7f0800e7 -int style Widget_AppCompat_Button_Borderless_Colored 0x7f0800e8 -int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0800e9 -int style Widget_AppCompat_Button_Small 0x7f0800ea -int style Widget_AppCompat_ButtonBar 0x7f0800eb -int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0800ec -int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0800ed -int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0800ee -int style Widget_AppCompat_CompoundButton_Switch 0x7f0800ef -int style Widget_AppCompat_DrawerArrowToggle 0x7f0800f0 -int style Widget_AppCompat_DropDownItem_Spinner 0x7f0800f1 -int style Widget_AppCompat_EditText 0x7f0800f2 -int style Widget_AppCompat_Light_ActionBar 0x7f0800f3 -int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0800f4 -int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0800f5 -int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0800f6 -int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0800f7 -int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0800f8 -int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0800f9 -int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0800fa -int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0800fb -int style Widget_AppCompat_Light_ActionButton 0x7f0800fc -int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0800fd -int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0800fe -int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0800ff -int style Widget_AppCompat_Light_ActivityChooserView 0x7f080100 -int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f080101 -int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f080102 -int style Widget_AppCompat_Light_ListPopupWindow 0x7f080103 -int style Widget_AppCompat_Light_ListView_DropDown 0x7f080104 -int style Widget_AppCompat_Light_PopupMenu 0x7f080105 -int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f080106 -int style Widget_AppCompat_Light_SearchView 0x7f080107 -int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f080108 -int style Widget_AppCompat_ListPopupWindow 0x7f080109 -int style Widget_AppCompat_ListView 0x7f08010a -int style Widget_AppCompat_ListView_DropDown 0x7f08010b -int style Widget_AppCompat_ListView_Menu 0x7f08010c -int style Widget_AppCompat_PopupMenu 0x7f08010d -int style Widget_AppCompat_PopupMenu_Overflow 0x7f08010e -int style Widget_AppCompat_PopupWindow 0x7f08010f -int style Widget_AppCompat_ProgressBar 0x7f080110 -int style Widget_AppCompat_ProgressBar_Horizontal 0x7f080111 -int style Widget_AppCompat_RatingBar 0x7f080112 -int style Widget_AppCompat_SearchView 0x7f080113 -int style Widget_AppCompat_SearchView_ActionBar 0x7f080114 -int style Widget_AppCompat_Spinner 0x7f080115 -int style Widget_AppCompat_Spinner_DropDown 0x7f080116 -int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f080117 -int style Widget_AppCompat_Spinner_Underlined 0x7f080118 -int style Widget_AppCompat_TextView_SpinnerItem 0x7f080119 -int style Widget_AppCompat_Toolbar 0x7f08011a -int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f08011b -int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01007f } -int styleable ActionBar_background 10 -int styleable ActionBar_backgroundSplit 12 -int styleable ActionBar_backgroundStacked 11 -int styleable ActionBar_contentInsetEnd 21 -int styleable ActionBar_contentInsetLeft 22 -int styleable ActionBar_contentInsetRight 23 -int styleable ActionBar_contentInsetStart 20 -int styleable ActionBar_customNavigationLayout 13 -int styleable ActionBar_displayOptions 3 -int styleable ActionBar_divider 9 -int styleable ActionBar_elevation 24 -int styleable ActionBar_height 0 -int styleable ActionBar_hideOnContentScroll 19 -int styleable ActionBar_homeAsUpIndicator 26 -int styleable ActionBar_homeLayout 14 -int styleable ActionBar_icon 7 -int styleable ActionBar_indeterminateProgressStyle 16 -int styleable ActionBar_itemPadding 18 -int styleable ActionBar_logo 8 -int styleable ActionBar_navigationMode 2 -int styleable ActionBar_popupTheme 25 -int styleable ActionBar_progressBarPadding 17 -int styleable ActionBar_progressBarStyle 15 -int styleable ActionBar_subtitle 4 -int styleable ActionBar_subtitleTextStyle 6 -int styleable ActionBar_title 1 -int styleable ActionBar_titleTextStyle 5 -int[] styleable ActionBarLayout { 0x010100b3 } -int styleable ActionBarLayout_android_layout_gravity 0 -int[] styleable ActionMenuItemView { 0x0101013f } -int styleable ActionMenuItemView_android_minWidth 0 -int[] styleable ActionMenuView { } -int[] styleable ActionMode { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c } -int styleable ActionMode_background 3 -int styleable ActionMode_backgroundSplit 4 -int styleable ActionMode_closeItemLayout 5 -int styleable ActionMode_height 0 -int styleable ActionMode_subtitleTextStyle 2 -int styleable ActionMode_titleTextStyle 1 -int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e } -int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1 -int styleable ActivityChooserView_initialActivityCount 0 -int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 } -int styleable AlertDialog_android_layout 0 -int styleable AlertDialog_buttonPanelSideLayout 1 -int styleable AlertDialog_listItemLayout 5 -int styleable AlertDialog_listLayout 2 -int styleable AlertDialog_multiChoiceItemLayout 3 -int styleable AlertDialog_singleChoiceItemLayout 4 -int[] styleable AppCompatTextView { 0x01010034, 0x7f010024 } -int styleable AppCompatTextView_android_textAppearance 0 -int styleable AppCompatTextView_textAllCaps 1 -int[] styleable CirCleRefreshLayout { 0x7f010025, 0x7f010026, 0x7f010027 } -int styleable CirCleRefreshLayout_AniBackColor 0 -int styleable CirCleRefreshLayout_AniForeColor 1 -int styleable CirCleRefreshLayout_CircleSmaller 2 -int[] styleable DrawerArrowToggle { 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f } -int styleable DrawerArrowToggle_barSize 6 -int styleable DrawerArrowToggle_color 0 -int styleable DrawerArrowToggle_drawableSize 2 -int styleable DrawerArrowToggle_gapBetweenBars 3 -int styleable DrawerArrowToggle_middleBarArrowSize 5 -int styleable DrawerArrowToggle_spinBars 1 -int styleable DrawerArrowToggle_thickness 7 -int styleable DrawerArrowToggle_topBottomBarArrowSize 4 -int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010030, 0x7f010031, 0x7f010032 } -int styleable LinearLayoutCompat_android_baselineAligned 2 -int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 -int styleable LinearLayoutCompat_android_gravity 0 -int styleable LinearLayoutCompat_android_orientation 1 -int styleable LinearLayoutCompat_android_weightSum 4 -int styleable LinearLayoutCompat_divider 5 -int styleable LinearLayoutCompat_dividerPadding 8 -int styleable LinearLayoutCompat_measureWithLargestChild 6 -int styleable LinearLayoutCompat_showDividers 7 -int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } -int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 -int styleable LinearLayoutCompat_Layout_android_layout_height 2 -int styleable LinearLayoutCompat_Layout_android_layout_weight 3 -int styleable LinearLayoutCompat_Layout_android_layout_width 1 -int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } -int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 -int styleable ListPopupWindow_android_dropDownVerticalOffset 1 -int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } -int styleable MenuGroup_android_checkableBehavior 5 -int styleable MenuGroup_android_enabled 0 -int styleable MenuGroup_android_id 1 -int styleable MenuGroup_android_menuCategory 3 -int styleable MenuGroup_android_orderInCategory 4 -int styleable MenuGroup_android_visible 2 -int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036 } -int styleable MenuItem_actionLayout 14 -int styleable MenuItem_actionProviderClass 16 -int styleable MenuItem_actionViewClass 15 -int styleable MenuItem_android_alphabeticShortcut 9 -int styleable MenuItem_android_checkable 11 -int styleable MenuItem_android_checked 3 -int styleable MenuItem_android_enabled 1 -int styleable MenuItem_android_icon 0 -int styleable MenuItem_android_id 2 -int styleable MenuItem_android_menuCategory 5 -int styleable MenuItem_android_numericShortcut 10 -int styleable MenuItem_android_onClick 12 -int styleable MenuItem_android_orderInCategory 6 -int styleable MenuItem_android_title 7 -int styleable MenuItem_android_titleCondensed 8 -int styleable MenuItem_android_visible 4 -int styleable MenuItem_showAsAction 13 -int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010037 } -int styleable MenuView_android_headerBackground 4 -int styleable MenuView_android_horizontalDivider 2 -int styleable MenuView_android_itemBackground 5 -int styleable MenuView_android_itemIconDisabledAlpha 6 -int styleable MenuView_android_itemTextAppearance 1 -int styleable MenuView_android_verticalDivider 3 -int styleable MenuView_android_windowAnimationStyle 0 -int styleable MenuView_preserveIconSpacing 7 -int[] styleable PopupWindow { 0x01010176, 0x7f010038 } -int styleable PopupWindow_android_popupBackground 0 -int styleable PopupWindow_overlapAnchor 1 -int[] styleable PopupWindowBackgroundState { 0x7f010039 } -int styleable PopupWindowBackgroundState_state_above_anchor 0 -int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045 } -int styleable SearchView_android_focusable 0 -int styleable SearchView_android_imeOptions 3 -int styleable SearchView_android_inputType 2 -int styleable SearchView_android_maxWidth 1 -int styleable SearchView_closeIcon 7 -int styleable SearchView_commitIcon 12 -int styleable SearchView_goIcon 8 -int styleable SearchView_iconifiedByDefault 5 -int styleable SearchView_layout 4 -int styleable SearchView_queryBackground 14 -int styleable SearchView_queryHint 6 -int styleable SearchView_searchHintIcon 10 -int styleable SearchView_searchIcon 9 -int styleable SearchView_submitBackground 15 -int styleable SearchView_suggestionRowLayout 13 -int styleable SearchView_voiceIcon 11 -int[] styleable Spinner { 0x010100af, 0x010100d4, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049 } -int styleable Spinner_android_background 1 -int styleable Spinner_android_dropDownHorizontalOffset 5 -int styleable Spinner_android_dropDownSelector 2 -int styleable Spinner_android_dropDownVerticalOffset 6 -int styleable Spinner_android_dropDownWidth 4 -int styleable Spinner_android_gravity 0 -int styleable Spinner_android_popupBackground 3 -int styleable Spinner_disableChildrenWhenDisabled 10 -int styleable Spinner_popupPromptView 9 -int styleable Spinner_prompt 7 -int styleable Spinner_spinnerMode 8 -int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050 } -int styleable SwitchCompat_android_textOff 1 -int styleable SwitchCompat_android_textOn 0 -int styleable SwitchCompat_android_thumb 2 -int styleable SwitchCompat_showText 9 -int styleable SwitchCompat_splitTrack 8 -int styleable SwitchCompat_switchMinWidth 6 -int styleable SwitchCompat_switchPadding 7 -int styleable SwitchCompat_switchTextAppearance 5 -int styleable SwitchCompat_thumbTextPadding 4 -int styleable SwitchCompat_track 3 -int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x7f010024 } -int styleable TextAppearance_android_textColor 3 -int styleable TextAppearance_android_textSize 0 -int styleable TextAppearance_android_textStyle 2 -int styleable TextAppearance_android_typeface 1 -int styleable TextAppearance_textAllCaps 4 -int[] styleable Theme { 0x01010057, 0x010100ae, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8 } -int styleable Theme_actionBarDivider 23 -int styleable Theme_actionBarItemBackground 24 -int styleable Theme_actionBarPopupTheme 17 -int styleable Theme_actionBarSize 22 -int styleable Theme_actionBarSplitStyle 19 -int styleable Theme_actionBarStyle 18 -int styleable Theme_actionBarTabBarStyle 13 -int styleable Theme_actionBarTabStyle 12 -int styleable Theme_actionBarTabTextStyle 14 -int styleable Theme_actionBarTheme 20 -int styleable Theme_actionBarWidgetTheme 21 -int styleable Theme_actionButtonStyle 49 -int styleable Theme_actionDropDownStyle 45 -int styleable Theme_actionMenuTextAppearance 25 -int styleable Theme_actionMenuTextColor 26 -int styleable Theme_actionModeBackground 29 -int styleable Theme_actionModeCloseButtonStyle 28 -int styleable Theme_actionModeCloseDrawable 31 -int styleable Theme_actionModeCopyDrawable 33 -int styleable Theme_actionModeCutDrawable 32 -int styleable Theme_actionModeFindDrawable 37 -int styleable Theme_actionModePasteDrawable 34 -int styleable Theme_actionModePopupWindowStyle 39 -int styleable Theme_actionModeSelectAllDrawable 35 -int styleable Theme_actionModeShareDrawable 36 -int styleable Theme_actionModeSplitBackground 30 -int styleable Theme_actionModeStyle 27 -int styleable Theme_actionModeWebSearchDrawable 38 -int styleable Theme_actionOverflowButtonStyle 15 -int styleable Theme_actionOverflowMenuStyle 16 -int styleable Theme_activityChooserViewStyle 56 -int styleable Theme_alertDialogButtonGroupStyle 89 -int styleable Theme_alertDialogCenterButtons 90 -int styleable Theme_alertDialogStyle 88 -int styleable Theme_alertDialogTheme 91 -int styleable Theme_android_windowAnimationStyle 1 -int styleable Theme_android_windowIsFloating 0 -int styleable Theme_autoCompleteTextViewStyle 96 -int styleable Theme_buttonBarButtonStyle 51 -int styleable Theme_buttonBarNegativeButtonStyle 94 -int styleable Theme_buttonBarNeutralButtonStyle 95 -int styleable Theme_buttonBarPositiveButtonStyle 93 -int styleable Theme_buttonBarStyle 50 -int styleable Theme_buttonStyle 97 -int styleable Theme_buttonStyleSmall 98 -int styleable Theme_checkboxStyle 99 -int styleable Theme_checkedTextViewStyle 100 -int styleable Theme_colorAccent 82 -int styleable Theme_colorButtonNormal 86 -int styleable Theme_colorControlActivated 84 -int styleable Theme_colorControlHighlight 85 -int styleable Theme_colorControlNormal 83 -int styleable Theme_colorPrimary 80 -int styleable Theme_colorPrimaryDark 81 -int styleable Theme_colorSwitchThumbNormal 87 -int styleable Theme_dialogPreferredPadding 43 -int styleable Theme_dialogTheme 42 -int styleable Theme_dividerHorizontal 55 -int styleable Theme_dividerVertical 54 -int styleable Theme_dropDownListViewStyle 72 -int styleable Theme_dropdownListPreferredItemHeight 46 -int styleable Theme_editTextBackground 62 -int styleable Theme_editTextColor 61 -int styleable Theme_editTextStyle 101 -int styleable Theme_homeAsUpIndicator 48 -int styleable Theme_listChoiceBackgroundIndicator 79 -int styleable Theme_listDividerAlertDialog 44 -int styleable Theme_listPopupWindowStyle 73 -int styleable Theme_listPreferredItemHeight 67 -int styleable Theme_listPreferredItemHeightLarge 69 -int styleable Theme_listPreferredItemHeightSmall 68 -int styleable Theme_listPreferredItemPaddingLeft 70 -int styleable Theme_listPreferredItemPaddingRight 71 -int styleable Theme_panelBackground 76 -int styleable Theme_panelMenuListTheme 78 -int styleable Theme_panelMenuListWidth 77 -int styleable Theme_popupMenuStyle 59 -int styleable Theme_popupWindowStyle 60 -int styleable Theme_radioButtonStyle 102 -int styleable Theme_ratingBarStyle 103 -int styleable Theme_searchViewStyle 66 -int styleable Theme_selectableItemBackground 52 -int styleable Theme_selectableItemBackgroundBorderless 53 -int styleable Theme_spinnerDropDownItemStyle 47 -int styleable Theme_spinnerStyle 104 -int styleable Theme_switchStyle 105 -int styleable Theme_textAppearanceLargePopupMenu 40 -int styleable Theme_textAppearanceListItem 74 -int styleable Theme_textAppearanceListItemSmall 75 -int styleable Theme_textAppearanceSearchResultSubtitle 64 -int styleable Theme_textAppearanceSearchResultTitle 63 -int styleable Theme_textAppearanceSmallPopupMenu 41 -int styleable Theme_textColorAlertDialogListItem 92 -int styleable Theme_textColorSearchUrl 65 -int styleable Theme_toolbarNavigationButtonStyle 58 -int styleable Theme_toolbarStyle 57 -int styleable Theme_windowActionBar 2 -int styleable Theme_windowActionBarOverlay 4 -int styleable Theme_windowActionModeOverlay 5 -int styleable Theme_windowFixedHeightMajor 9 -int styleable Theme_windowFixedHeightMinor 7 -int styleable Theme_windowFixedWidthMajor 6 -int styleable Theme_windowFixedWidthMinor 8 -int styleable Theme_windowMinWidthMajor 10 -int styleable Theme_windowMinWidthMinor 11 -int styleable Theme_windowNoTitle 3 -int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4 } -int styleable Toolbar_android_gravity 0 -int styleable Toolbar_android_minHeight 1 -int styleable Toolbar_collapseContentDescription 18 -int styleable Toolbar_collapseIcon 17 -int styleable Toolbar_contentInsetEnd 5 -int styleable Toolbar_contentInsetLeft 6 -int styleable Toolbar_contentInsetRight 7 -int styleable Toolbar_contentInsetStart 4 -int styleable Toolbar_maxButtonHeight 16 -int styleable Toolbar_navigationContentDescription 20 -int styleable Toolbar_navigationIcon 19 -int styleable Toolbar_popupTheme 8 -int styleable Toolbar_subtitle 3 -int styleable Toolbar_subtitleTextAppearance 10 -int styleable Toolbar_title 2 -int styleable Toolbar_titleMarginBottom 15 -int styleable Toolbar_titleMarginEnd 13 -int styleable Toolbar_titleMarginStart 12 -int styleable Toolbar_titleMarginTop 14 -int styleable Toolbar_titleMargins 11 -int styleable Toolbar_titleTextAppearance 9 -int[] styleable View { 0x01010000, 0x010100da, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9 } -int styleable View_android_focusable 1 -int styleable View_android_theme 0 -int styleable View_backgroundTint 5 -int styleable View_backgroundTintMode 6 -int styleable View_paddingEnd 3 -int styleable View_paddingStart 2 -int styleable View_theme 4 -int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } -int styleable ViewStubCompat_android_id 0 -int styleable ViewStubCompat_android_inflatedId 2 -int styleable ViewStubCompat_android_layout 1 diff --git a/circlerefresh/build/intermediates/bundles/release/classes.jar b/circlerefresh/build/intermediates/bundles/release/classes.jar deleted file mode 100644 index 33c434e..0000000 Binary files a/circlerefresh/build/intermediates/bundles/release/classes.jar and /dev/null differ diff --git a/circlerefresh/build/intermediates/bundles/release/res/layout/activity_main.xml b/circlerefresh/build/intermediates/bundles/release/res/layout/activity_main.xml index 44bb441..9d09ddc 100644 --- a/circlerefresh/build/intermediates/bundles/release/res/layout/activity_main.xml +++ b/circlerefresh/build/intermediates/bundles/release/res/layout/activity_main.xml @@ -31,4 +31,4 @@ android:layout_height="wrap_content" /> - \ No newline at end of file + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/bundles/release/res/menu/menu_main.xml b/circlerefresh/build/intermediates/bundles/release/res/menu/menu_main.xml index c37e2bd..b1cb908 100644 --- a/circlerefresh/build/intermediates/bundles/release/res/menu/menu_main.xml +++ b/circlerefresh/build/intermediates/bundles/release/res/menu/menu_main.xml @@ -4,4 +4,3 @@ - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/bundles/release/res/mipmap-hdpi/ic_launcher.png b/circlerefresh/build/intermediates/bundles/release/res/mipmap-hdpi-v4/ic_launcher.png similarity index 100% rename from circlerefresh/build/intermediates/bundles/release/res/mipmap-hdpi/ic_launcher.png rename to circlerefresh/build/intermediates/bundles/release/res/mipmap-hdpi-v4/ic_launcher.png diff --git a/circlerefresh/build/intermediates/bundles/release/res/mipmap-mdpi/ic_launcher.png b/circlerefresh/build/intermediates/bundles/release/res/mipmap-mdpi-v4/ic_launcher.png similarity index 100% rename from circlerefresh/build/intermediates/bundles/release/res/mipmap-mdpi/ic_launcher.png rename to circlerefresh/build/intermediates/bundles/release/res/mipmap-mdpi-v4/ic_launcher.png diff --git a/circlerefresh/build/intermediates/bundles/release/res/mipmap-xhdpi/ic_launcher.png b/circlerefresh/build/intermediates/bundles/release/res/mipmap-xhdpi-v4/ic_launcher.png similarity index 100% rename from circlerefresh/build/intermediates/bundles/release/res/mipmap-xhdpi/ic_launcher.png rename to circlerefresh/build/intermediates/bundles/release/res/mipmap-xhdpi-v4/ic_launcher.png diff --git a/circlerefresh/build/intermediates/bundles/release/res/mipmap-xxhdpi/ic_launcher.png b/circlerefresh/build/intermediates/bundles/release/res/mipmap-xxhdpi-v4/ic_launcher.png similarity index 100% rename from circlerefresh/build/intermediates/bundles/release/res/mipmap-xxhdpi/ic_launcher.png rename to circlerefresh/build/intermediates/bundles/release/res/mipmap-xxhdpi-v4/ic_launcher.png diff --git a/circlerefresh/build/intermediates/bundles/release/res/values-w820dp-v13/values-w820dp-v13.xml b/circlerefresh/build/intermediates/bundles/release/res/values-w820dp-v13/values-w820dp-v13.xml new file mode 100644 index 0000000..3eda5f5 --- /dev/null +++ b/circlerefresh/build/intermediates/bundles/release/res/values-w820dp-v13/values-w820dp-v13.xml @@ -0,0 +1,4 @@ + + + 64dp + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/bundles/release/res/values-w820dp/values-w820dp.xml b/circlerefresh/build/intermediates/bundles/release/res/values-w820dp/values-w820dp.xml deleted file mode 100644 index b3a1d3b..0000000 --- a/circlerefresh/build/intermediates/bundles/release/res/values-w820dp/values-w820dp.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - 64dp - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/bundles/release/res/values/values.xml b/circlerefresh/build/intermediates/bundles/release/res/values/values.xml index 9501cae..eb41087 100644 --- a/circlerefresh/build/intermediates/bundles/release/res/values/values.xml +++ b/circlerefresh/build/intermediates/bundles/release/res/values/values.xml @@ -1,17 +1,11 @@ - - 16dp 16dp - - Settings CircleRefresh Hello world! - - diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/AnimationView$1.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/AnimationView$1.class deleted file mode 100644 index d2c1042..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/AnimationView$1.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/AnimationView$AnimatorStatus.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/AnimationView$AnimatorStatus.class deleted file mode 100644 index 3a61fdc..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/AnimationView$AnimatorStatus.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/AnimationView$OnViewAniDone.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/AnimationView$OnViewAniDone.class deleted file mode 100644 index 8070c8c..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/AnimationView$OnViewAniDone.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/AnimationView.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/AnimationView.class deleted file mode 100644 index 9599458..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/AnimationView.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/BuildConfig.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/BuildConfig.class deleted file mode 100644 index 6c2de0c..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/BuildConfig.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$1.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$1.class deleted file mode 100644 index 7db2965..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$1.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$2.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$2.class deleted file mode 100644 index 0e1591d..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$2.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$3.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$3.class deleted file mode 100644 index 2b93bc5..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$3.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$4.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$4.class deleted file mode 100644 index f30d868..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$4.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$5.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$5.class deleted file mode 100644 index 9d4d8fb..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$5.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$OnRefreshListener.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$OnRefreshListener.class deleted file mode 100644 index b877386..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout$OnRefreshListener.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout.class deleted file mode 100644 index 9e8c030..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/CircleRefreshLayout.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/MainActivity$1.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/MainActivity$1.class deleted file mode 100644 index abfd537..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/MainActivity$1.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/MainActivity.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/MainActivity.class deleted file mode 100644 index b3a560e..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/MainActivity.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$anim.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$anim.class deleted file mode 100644 index 426e021..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$anim.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$attr.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$attr.class deleted file mode 100644 index c3fb171..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$attr.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$bool.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$bool.class deleted file mode 100644 index 778b99b..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$bool.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$color.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$color.class deleted file mode 100644 index 13dffcb..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$color.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$dimen.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$dimen.class deleted file mode 100644 index 3ee62f4..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$dimen.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$drawable.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$drawable.class deleted file mode 100644 index 07ecf0a..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$drawable.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$id.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$id.class deleted file mode 100644 index 74435fe..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$id.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$integer.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$integer.class deleted file mode 100644 index 2adf0b4..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$integer.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$layout.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$layout.class deleted file mode 100644 index 8ecd948..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$layout.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$menu.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$menu.class deleted file mode 100644 index 85ac6a7..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$menu.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$mipmap.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$mipmap.class deleted file mode 100644 index 9860fa5..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$mipmap.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$string.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$string.class deleted file mode 100644 index 43283b7..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$string.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$style.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$style.class deleted file mode 100644 index c39b17b..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$style.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$styleable.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$styleable.class deleted file mode 100644 index 71ca60c..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R$styleable.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R.class b/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R.class deleted file mode 100644 index 9465d39..0000000 Binary files a/circlerefresh/build/intermediates/classes/debug/com/tuesda/walker/circlerefresh/R.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/AnimationView$1.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/AnimationView$1.class deleted file mode 100644 index d2c1042..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/AnimationView$1.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/AnimationView$AnimatorStatus.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/AnimationView$AnimatorStatus.class deleted file mode 100644 index 3a61fdc..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/AnimationView$AnimatorStatus.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/AnimationView$OnViewAniDone.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/AnimationView$OnViewAniDone.class deleted file mode 100644 index 8070c8c..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/AnimationView$OnViewAniDone.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/AnimationView.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/AnimationView.class deleted file mode 100644 index 9599458..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/AnimationView.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/BuildConfig.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/BuildConfig.class deleted file mode 100644 index 174e9c5..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/BuildConfig.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$1.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$1.class deleted file mode 100644 index 7db2965..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$1.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$2.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$2.class deleted file mode 100644 index 0e1591d..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$2.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$3.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$3.class deleted file mode 100644 index 2b93bc5..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$3.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$4.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$4.class deleted file mode 100644 index f30d868..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$4.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$5.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$5.class deleted file mode 100644 index 9d4d8fb..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$5.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$OnCircleRefreshListener.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$OnCircleRefreshListener.class deleted file mode 100644 index a7f8e55..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout$OnCircleRefreshListener.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout.class deleted file mode 100644 index 4d30da7..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/CircleRefreshLayout.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$anim.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$anim.class deleted file mode 100644 index 426e021..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$anim.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$attr.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$attr.class deleted file mode 100644 index c3fb171..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$attr.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$bool.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$bool.class deleted file mode 100644 index 778b99b..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$bool.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$color.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$color.class deleted file mode 100644 index 13dffcb..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$color.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$dimen.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$dimen.class deleted file mode 100644 index 3ee62f4..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$dimen.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$drawable.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$drawable.class deleted file mode 100644 index 07ecf0a..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$drawable.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$id.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$id.class deleted file mode 100644 index 74435fe..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$id.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$integer.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$integer.class deleted file mode 100644 index 2adf0b4..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$integer.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$layout.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$layout.class deleted file mode 100644 index 8ecd948..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$layout.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$menu.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$menu.class deleted file mode 100644 index 85ac6a7..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$menu.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$mipmap.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$mipmap.class deleted file mode 100644 index 9860fa5..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$mipmap.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$string.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$string.class deleted file mode 100644 index 43283b7..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$string.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$style.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$style.class deleted file mode 100644 index c39b17b..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$style.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$styleable.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$styleable.class deleted file mode 100644 index 71ca60c..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R$styleable.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R.class b/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R.class deleted file mode 100644 index 9465d39..0000000 Binary files a/circlerefresh/build/intermediates/classes/release/com/tuesda/walker/circlerefresh/R.class and /dev/null differ diff --git a/circlerefresh/build/intermediates/incremental/aidl/androidTest/debug/dependency.store b/circlerefresh/build/intermediates/incremental/compileDebugAidl/dependency.store similarity index 100% rename from circlerefresh/build/intermediates/incremental/aidl/androidTest/debug/dependency.store rename to circlerefresh/build/intermediates/incremental/compileDebugAidl/dependency.store diff --git a/circlerefresh/build/intermediates/incremental/aidl/debug/dependency.store b/circlerefresh/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store similarity index 100% rename from circlerefresh/build/intermediates/incremental/aidl/debug/dependency.store rename to circlerefresh/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store diff --git a/circlerefresh/build/intermediates/incremental/aidl/release/dependency.store b/circlerefresh/build/intermediates/incremental/compileReleaseAidl/dependency.store similarity index 100% rename from circlerefresh/build/intermediates/incremental/aidl/release/dependency.store rename to circlerefresh/build/intermediates/incremental/compileReleaseAidl/dependency.store diff --git a/circlerefresh/build/intermediates/incremental/mergeAssets/androidTest/debug/merger.xml b/circlerefresh/build/intermediates/incremental/mergeAssets/androidTest/debug/merger.xml deleted file mode 100644 index 87f070a..0000000 --- a/circlerefresh/build/intermediates/incremental/mergeAssets/androidTest/debug/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeAssets/debug/merger.xml b/circlerefresh/build/intermediates/incremental/mergeAssets/debug/merger.xml deleted file mode 100644 index 7393a67..0000000 --- a/circlerefresh/build/intermediates/incremental/mergeAssets/debug/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeAssets/release/merger.xml b/circlerefresh/build/intermediates/incremental/mergeAssets/release/merger.xml deleted file mode 100644 index d0b8b87..0000000 --- a/circlerefresh/build/intermediates/incremental/mergeAssets/release/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties new file mode 100644 index 0000000..fde216d --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties @@ -0,0 +1,274 @@ +#Wed Jan 11 02:14:19 CST 2017 +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/support_simple_spinner_dropdown_item.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/support_simple_spinner_dropdown_item.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_list_selector_background_transition_holo_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_background_transition_holo_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_btn_default_mtrl_shape.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_default_mtrl_shape.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_btn_radio_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_radio_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_mode_bar.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_action_mode_bar.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_primary_text_material_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_material_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_shrink_fade_out_from_bottom.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_shrink_fade_out_from_bottom.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_grow_fade_in_from_bottom.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_grow_fade_in_from_bottom.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color-v11/abc_background_cache_hint_selector_material_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_simple_dropdown_hint.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_simple_dropdown_hint.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-tvdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-tvdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_popup_menu_item_layout.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_popup_menu_item_layout.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_fade_out.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_fade_out.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_slide_out_top.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_out_top.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/select_dialog_multichoice_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_multichoice_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_cab_background_internal_bg.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_cab_background_internal_bg.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color-v11/abc_background_cache_hint_selector_material_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_menu_item_layout.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_action_menu_item_layout.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_tab_indicator_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_tab_indicator_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_search_view.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_search_view.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_secondary_text_material_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/abc_secondary_text_material_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/mipmap-mdpi-v4/ic_launcher.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/mipmap-mdpi-v4/ic_launcher.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/mipmap-xxhdpi-v4/ic_launcher.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/mipmap-xxhdpi-v4/ic_launcher.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_edit_text_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_edit_text_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_text_cursor_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_text_cursor_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_focused_holo.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_search_url_text.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/abc_search_url_text.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_activity_chooser_view.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_activity_chooser_view.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_dialog_material_background_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_dialog_material_background_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_text_cursor_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_text_cursor_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_list_selector_holo_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_holo_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_menu_layout.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_action_menu_layout.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_screen_simple_overlay_action_mode.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_simple_overlay_action_mode.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_slide_out_bottom.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_out_bottom.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_cab_background_top_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_cab_background_top_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_list_menu_item_icon.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_icon.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/select_dialog_singlechoice_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_singlechoice_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/layout/activity_main.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/activity_main.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_secondary_text_material_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/abc_secondary_text_material_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_primary_text_material_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_material_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_switch_thumb_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_switch_thumb_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/mipmap-xhdpi-v4/ic_launcher.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/mipmap-xhdpi-v4/ic_launcher.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_item_background_holo_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_item_background_holo_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_text_cursor_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_text_cursor_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_mode_close_item_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_action_mode_close_item_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_activity_chooser_view_list_item.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_activity_chooser_view_list_item.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_search_dropdown_item_icons_2line.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_search_dropdown_item_icons_2line.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/mipmap-hdpi-v4/ic_launcher.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/mipmap-hdpi-v4/ic_launcher.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_primary_text_disable_only_material_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_disable_only_material_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_screen_toolbar.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_toolbar.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_screen_simple.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_simple.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_select_dialog_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_select_dialog_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_bar_up_container.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_up_container.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_item_background_holo_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_item_background_holo_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_text_cursor_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_text_cursor_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_list_selector_background_transition_holo_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_background_transition_holo_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/switch_thumb_material_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/switch_thumb_material_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_focused_holo.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_list_menu_item_radio.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_radio.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_alert_dialog_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_alert_dialog_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_popup_enter.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_popup_enter.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_expanded_menu_layout.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_expanded_menu_layout.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_primary_text_disable_only_material_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/abc_primary_text_disable_only_material_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_btn_borderless_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_borderless_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_bar_view_list_nav_layout.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_view_list_nav_layout.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_slide_in_top.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_in_top.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_textfield_search_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_textfield_search_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_fade_in.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_fade_in.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_dialog_material_background_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_dialog_material_background_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_bar_title_item.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_action_bar_title_item.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_popup_exit.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_popup_exit.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-tvdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-tvdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/switch_thumb_material_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/color/switch_thumb_material_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_dialog_title_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_dialog_title_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/menu/menu_main.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/menu/menu_main.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_btn_check_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_btn_check_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_spinner_textfield_background_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_spinner_textfield_background_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/select_dialog_item_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/select_dialog_item_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_list_selector_holo_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_list_selector_holo_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_list_menu_item_checkbox.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_checkbox.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_slide_in_bottom.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/anim/abc_slide_in_bottom.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_list_menu_item_layout.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout/abc_list_menu_item_layout.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_ratingbar_full_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable/abc_ratingbar_full_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout-v11/abc_screen_content_include.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/layout-v11/abc_screen_content_include.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml new file mode 100644 index 0000000..84812a8 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml @@ -0,0 +1,16 @@ + + + "Navigeer tuis" + "Navigeer op" + "Nog opsies" + "Klaar" + "Sien alles" + "Kies \'n program" + "Vee navraag uit" + "Soeknavraag" + "Soek" + "Dien navraag in" + "Stemsoektog" + "Deel met" + "Deel met %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml new file mode 100644 index 0000000..6d8ce8e --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml @@ -0,0 +1,16 @@ + + + "ወደ መነሻ ይዳስሱ" + "ወደ ላይ ይዳስሱ" + "ተጨማሪ አማራጮች" + "ተከናውኗል" + "ሁሉንም ይመልከቱ" + "መተግበሪያ ይምረጡ" + "መጠይቅ አጽዳ" + "የፍለጋ ጥያቄ" + "ፍለጋ" + "መጠይቅ ያስረክቡ" + "የድምፅ ፍለጋ" + "ከሚከተለው ጋር ያጋሩ" + "ከ%s ጋር ያጋሩ" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml new file mode 100644 index 0000000..6ee5951 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml @@ -0,0 +1,16 @@ + + + "التنقل إلى الشاشة الرئيسية" + "التنقل إلى أعلى" + "خيارات إضافية" + "تم" + "عرض الكل" + "اختيار تطبيق" + "محو طلب البحث" + "طلب البحث" + "بحث" + "إرسال طلب البحث" + "البحث الصوتي" + "مشاركة مع" + "‏مشاركة مع %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml new file mode 100644 index 0000000..aa7ff35 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml @@ -0,0 +1,16 @@ + + + "Придвижване към „Начало“" + "Придвижване нагоре" + "Още опции" + "Готово" + "Вижте всички" + "Изберете приложение" + "Изчистване на заявката" + "Заявка за търсене" + "Търсене" + "Изпращане на заявката" + "Гласово търсене" + "Споделяне със:" + "Споделяне със: %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn-rBD/values-bn-rBD.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn-rBD/values-bn-rBD.xml new file mode 100644 index 0000000..3ce5f3e --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn-rBD/values-bn-rBD.xml @@ -0,0 +1,16 @@ + + + "হোম এ নেভিগেট করুন" + "উপরের দিকে নেভিগেট করুন" + "আরো বিকল্প" + "সম্পন্ন হয়েছে" + "সবগুলো দেখুন" + "একটি অ্যাপ্লিকেশান চয়ন করুন" + "ক্যোয়ারী সাফ করুন" + "ক্যোয়ারী অনুসন্ধান করুন" + "অনুসন্ধান করুন" + "ক্যোয়ারী জমা দিন" + "ভয়েস অনুসন্ধান" + "এর সাথে ভাগ করুন" + "%s এর সাথে ভাগ করুন" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml new file mode 100644 index 0000000..80dd170 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml @@ -0,0 +1,16 @@ + + + "Navega a la pàgina d\'inici" + "Navega cap a dalt" + "Més opcions" + "Fet" + "Mostra\'ls tots" + "Selecciona una aplicació" + "Esborra la consulta" + "Consulta de cerca" + "Cerca" + "Envia la consulta" + "Cerca per veu" + "Comparteix amb" + "Comparteix amb %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml new file mode 100644 index 0000000..a862180 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml @@ -0,0 +1,16 @@ + + + "Přejít na plochu" + "Přejít nahoru" + "Více možností" + "Hotovo" + "Zobrazit vše" + "Vybrat aplikaci" + "Smazat dotaz" + "Vyhledávací dotaz" + "Hledat" + "Odeslat dotaz" + "Hlasové vyhledávání" + "Sdílet pomocí" + "Sdílet pomocí %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml new file mode 100644 index 0000000..91f5306 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml @@ -0,0 +1,16 @@ + + + "Naviger hjem" + "Naviger op" + "Flere muligheder" + "Luk" + "Se alle" + "Vælg en app" + "Ryd forespørgslen" + "Søgeforespørgsel" + "Søg" + "Indsend forespørgslen" + "Stemmesøgning" + "Del med" + "Del med %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml new file mode 100644 index 0000000..b6912f6 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml @@ -0,0 +1,16 @@ + + + "Zur Startseite" + "Nach oben" + "Weitere Optionen" + "Fertig" + "Alle ansehen" + "App auswählen" + "Suchanfrage löschen" + "Suchanfrage" + "Suchen" + "Suchanfrage senden" + "Sprachsuche" + "Freigeben für" + "Freigeben für %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml new file mode 100644 index 0000000..ad57bc3 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml @@ -0,0 +1,16 @@ + + + "Πλοήγηση στην αρχική σελίδα" + "Πλοήγηση προς τα επάνω" + "Περισσότερες επιλογές" + "Τέλος" + "Προβολή όλων" + "Επιλέξτε κάποια εφαρμογή" + "Διαγραφή ερωτήματος" + "Ερώτημα αναζήτησης" + "Αναζήτηση" + "Υποβολή ερωτήματος" + "Φωνητική αναζήτηση" + "Κοινή χρήση με" + "Κοινή χρήση με %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml new file mode 100644 index 0000000..dec9a30 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml @@ -0,0 +1,16 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Finished" + "See all" + "Choose an app" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml new file mode 100644 index 0000000..dec9a30 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml @@ -0,0 +1,16 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Finished" + "See all" + "Choose an app" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml new file mode 100644 index 0000000..7e84c58 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml @@ -0,0 +1,16 @@ + + + "Navegar a la página principal" + "Navegar hacia arriba" + "Más opciones" + "Listo" + "Ver todo" + "Elige una aplicación." + "Eliminar la consulta" + "Consulta de búsqueda" + "Búsqueda" + "Enviar consulta" + "Búsqueda por voz" + "Compartir con" + "Compartir con %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml new file mode 100644 index 0000000..b05af8f --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml @@ -0,0 +1,16 @@ + + + "Ir a la pantalla de inicio" + "Desplazarse hacia arriba" + "Más opciones" + "Listo" + "Ver todo" + "Seleccionar una aplicación" + "Borrar consulta" + "Consulta" + "Buscar" + "Enviar consulta" + "Búsqueda por voz" + "Compartir con" + "Compartir con %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et-rEE/values-et-rEE.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et-rEE/values-et-rEE.xml new file mode 100644 index 0000000..90b6d81 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et-rEE/values-et-rEE.xml @@ -0,0 +1,16 @@ + + + "Navigeerimine avaekraanile" + "Navigeerimine üles" + "Rohkem valikuid" + "Valmis" + "Kuva kõik" + "Valige rakendus" + "Päringu tühistamine" + "Otsingupäring" + "Otsing" + "Päringu esitamine" + "Häälotsing" + "Jagamine:" + "Jagamine kasutajaga %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-eu-rES/values-eu-rES.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-eu-rES/values-eu-rES.xml new file mode 100644 index 0000000..653ccd9 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-eu-rES/values-eu-rES.xml @@ -0,0 +1,16 @@ + + + "Joan orri nagusira" + "Joan gora" + "Aukera gehiago" + "Eginda" + "Ikusi guztiak" + "Aukeratu aplikazio bat" + "Garbitu kontsulta" + "Bilaketa-kontsulta" + "Bilatu" + "Bidali kontsulta" + "Ahots bidezko bilaketa" + "Partekatu hauekin" + "Partekatu %s erabiltzailearekin" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml new file mode 100644 index 0000000..04db10a --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml @@ -0,0 +1,16 @@ + + + "پیمایش به صفحه اصلی" + "پیمایش به بالا" + "گزینه‌های بیشتر" + "انجام شد" + "مشاهده همه" + "انتخاب برنامه" + "پاک کردن عبارت جستجو" + "عبارت جستجو" + "جستجو" + "ارسال عبارت جستجو" + "جستجوی شفاهی" + "اشتراک‌گذاری با" + "‏اشتراک‌گذاری با %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml new file mode 100644 index 0000000..883e8f4 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml @@ -0,0 +1,16 @@ + + + "Siirry etusivulle" + "Siirry ylös" + "Lisää" + "Valmis" + "Näytä kaikki" + "Valitse sovellus" + "Tyhjennä kysely" + "Hakulauseke" + "Haku" + "Lähetä kysely" + "Puhehaku" + "Jakaminen:" + "Jakaminen: %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml new file mode 100644 index 0000000..bb82426 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml @@ -0,0 +1,16 @@ + + + "Revenir à l\'accueil" + "Revenir en haut de la page" + "Plus d\'options" + "Terminé" + "Voir toutes les chaînes" + "Sélectionnez une application" + "Effacer la requête" + "Requête de recherche" + "Rechercher" + "Envoyer la requête" + "Recherche vocale" + "Partager avec" + "Partager avec %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml new file mode 100644 index 0000000..a73a2b3 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml @@ -0,0 +1,16 @@ + + + "Revenir à l\'accueil" + "Revenir en haut de la page" + "Plus d\'options" + "OK" + "Tout afficher" + "Sélectionner une application" + "Effacer la requête" + "Requête de recherche" + "Rechercher" + "Envoyer la requête" + "Recherche vocale" + "Partager avec" + "Partager avec %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl-rES/values-gl-rES.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl-rES/values-gl-rES.xml new file mode 100644 index 0000000..d5ca5e2 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl-rES/values-gl-rES.xml @@ -0,0 +1,16 @@ + + + "Ir á páxina de inicio" + "Desprazarse cara arriba" + "Máis opcións" + "Feito" + "Ver todas" + "Escoller unha aplicación" + "Borrar consulta" + "Consulta de busca" + "Buscar" + "Enviar consulta" + "Busca de voz" + "Compartir con" + "Compartir con %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml new file mode 100644 index 0000000..e38bb90 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml @@ -0,0 +1,4 @@ + + + 54dip + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml new file mode 100644 index 0000000..56a5d47 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml new file mode 100644 index 0000000..c3f81b6 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml @@ -0,0 +1,16 @@ + + + "मुखपृष्ठ पर नेविगेट करें" + "ऊपर नेविगेट करें" + "अधिक विकल्प" + "पूर्ण" + "सभी देखें" + "कोई एप्‍लिकेशन चुनें" + "क्‍वेरी साफ़ करें" + "खोज क्वेरी" + "खोजें" + "क्वेरी सबमिट करें" + "ध्वनि खोज" + "इसके द्वारा साझा करें" + "%s के साथ साझा करें" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml new file mode 100644 index 0000000..4eefcd3 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml @@ -0,0 +1,16 @@ + + + "Idi na početnu" + "Idi gore" + "Dodatne opcije" + "Gotovo" + "Prikaži sve" + "Odabir aplikacije" + "Izbriši upit" + "Upit za pretraživanje" + "Pretraživanje" + "Pošalji upit" + "Glasovno pretraživanje" + "Dijeljenje sa" + "Dijeljenje sa: %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml new file mode 100644 index 0000000..7a92ebe --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml @@ -0,0 +1,16 @@ + + + "Ugrás a főoldalra" + "Felfelé mozgatás" + "További lehetőségek" + "Kész" + "Összes megtekintése" + "Válasszon ki egy alkalmazást" + "Lekérdezés törlése" + "Keresési lekérdezés" + "Keresés" + "Lekérdezés küldése" + "Hangalapú keresés" + "Megosztás a következővel:" + "Megosztás a következővel: %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hy-rAM/values-hy-rAM.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hy-rAM/values-hy-rAM.xml new file mode 100644 index 0000000..9eaf5bb --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hy-rAM/values-hy-rAM.xml @@ -0,0 +1,16 @@ + + + "Ուղղվել տուն" + "Ուղղվել վերև" + "Այլ ընտրանքներ" + "Կատարված է" + "Տեսնել բոլորը" + "Ընտրել ծրագիր" + "Մաքրել հարցումը" + "Որոնման հարցում" + "Որոնել" + "Ուղարկել հարցումը" + "Ձայնային որոնում" + "Տարածել" + "Տարածել ըստ %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml new file mode 100644 index 0000000..ca27a16 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml @@ -0,0 +1,16 @@ + + + "Navigasi ke beranda" + "Navigasi naik" + "Opsi lain" + "Selesai" + "Lihat semua" + "Pilih aplikasi" + "Hapus kueri" + "Kueri penelusuran" + "Telusuri" + "Kirim kueri" + "Penelusuran suara" + "Bagikan dengan" + "Bagikan dengan %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-is-rIS/values-is-rIS.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-is-rIS/values-is-rIS.xml new file mode 100644 index 0000000..a43b829 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-is-rIS/values-is-rIS.xml @@ -0,0 +1,16 @@ + + + "Fara heim" + "Fara upp" + "Fleiri valkostir" + "Lokið" + "Sjá allt" + "Veldu forrit" + "Hreinsa fyrirspurn" + "Leitarfyrirspurn" + "Leita" + "Senda fyrirspurn" + "Raddleit" + "Deila með" + "Deila með %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml new file mode 100644 index 0000000..5afc397 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml @@ -0,0 +1,16 @@ + + + "Vai alla home page" + "Vai in alto" + "Altre opzioni" + "Fine" + "Visualizza tutte" + "Scegli un\'applicazione" + "Cancella query" + "Query di ricerca" + "Cerca" + "Invia query" + "Ricerca vocale" + "Condividi con" + "Condividi con %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml new file mode 100644 index 0000000..8d76e34 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml @@ -0,0 +1,16 @@ + + + "נווט לדף הבית" + "נווט למעלה" + "עוד אפשרויות" + "בוצע" + "ראה הכול" + "בחר אפליקציה" + "מחק שאילתה" + "שאילתת חיפוש" + "חפש" + "שלח שאילתה" + "חיפוש קולי" + "שתף עם" + "‏שתף עם %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml new file mode 100644 index 0000000..d638b59 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml @@ -0,0 +1,16 @@ + + + "ホームへ移動" + "上へ移動" + "その他のオプション" + "完了" + "すべて表示" + "アプリの選択" + "検索キーワードを削除" + "検索キーワード" + "検索" + "検索キーワードを送信" + "音声検索" + "共有" + "%sと共有" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka-rGE/values-ka-rGE.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka-rGE/values-ka-rGE.xml new file mode 100644 index 0000000..269ffd0 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka-rGE/values-ka-rGE.xml @@ -0,0 +1,16 @@ + + + "მთავარზე ნავიგაცია" + "ზემოთ ნავიგაცია" + "მეტი ვარიანტები" + "დასრულდა" + "ყველას ნახვა" + "აპის არჩევა" + "მოთხოვნის გასუფთავება" + "ძიების მოთხოვნა" + "ძიება" + "მოთხოვნის გადაგზავნა" + "ხმოვანი ძიება" + "გაზიარება:" + "%s-თან გაზიარება" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml new file mode 100644 index 0000000..87d0ff3 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml @@ -0,0 +1,16 @@ + + + "Негізгі бетте қозғалу" + "Жоғары қозғалу" + "Басқа опциялар" + "Орындалды" + "Барлығын көру" + "Қолданбаны таңдау" + "Сұрақты жою" + "Сұрақты іздеу" + "Іздеу" + "Сұрақты жіберу" + "Дауыс арқылы іздеу" + "Бөлісу" + "%s бөлісу" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km-rKH/values-km-rKH.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km-rKH/values-km-rKH.xml new file mode 100644 index 0000000..14bcf76 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km-rKH/values-km-rKH.xml @@ -0,0 +1,16 @@ + + + "រកមើល​ទៅ​ដើម" + "រកមើល​ឡើងលើ" + "ជម្រើស​ច្រើន​ទៀត" + "រួចរាល់" + "មើល​ទាំងអស់" + "ជ្រើស​កម្មវិធី​​" + "សម្អាត​សំណួរ" + "ស្វែងរក​សំណួរ" + "ស្វែងរក" + "ដាក់​​​ស្នើ​សំណួរ" + "ការស្វែងរក​សំឡេង" + "ចែករំលែក​ជាមួយ" + "ចែករំលែក​ជាមួយ %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kn-rIN/values-kn-rIN.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kn-rIN/values-kn-rIN.xml new file mode 100644 index 0000000..52464af --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kn-rIN/values-kn-rIN.xml @@ -0,0 +1,16 @@ + + + "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" + "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" + "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು" + "ಮುಗಿದಿದೆ" + "ಎಲ್ಲವನ್ನೂ ನೋಡಿ" + "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ" + "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು" + "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ" + "ಹುಡುಕು" + "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು" + "ಧ್ವನಿ ಹುಡುಕಾಟ" + "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" + "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml new file mode 100644 index 0000000..60a6261 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml @@ -0,0 +1,16 @@ + + + "홈 탐색" + "위로 탐색" + "옵션 더보기" + "완료" + "전체 보기" + "앱 선택" + "검색어 삭제" + "검색어" + "검색" + "검색어 보내기" + "음성 검색" + "공유 대상" + "%s와(과) 공유" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ky-rKG/values-ky-rKG.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ky-rKG/values-ky-rKG.xml new file mode 100644 index 0000000..6d6999b --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ky-rKG/values-ky-rKG.xml @@ -0,0 +1,16 @@ + + + "Үйгө багыттоо" + "Жогору" + "Көбүрөөк мүмкүнчүлүктөр" + "Даяр" + "Бардыгын көрүү" + "Колдонмо тандоо" + "Талаптарды тазалоо" + "Издөө талаптары" + "Издөө" + "Талап жөнөтүү" + "Үн аркылуу издөө" + "Бөлүшүү" + "%s аркылуу бөлүшүү" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml new file mode 100644 index 0000000..fabf9eb --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml @@ -0,0 +1,10 @@ + + + true + true + 48dp + 0dp + 32dp + 12dp + 14dp + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml new file mode 100644 index 0000000..55aba50 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml @@ -0,0 +1,14 @@ + + + true + true + 440dp + 192dip + 60% + 90% + 60% + 90% + 4 + + + + + + + + + + + + + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v12/values-v12.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v12/values-v12.xml new file mode 100644 index 0000000..b522a13 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v12/values-v12.xml @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v14/values-v14.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v14/values-v14.xml new file mode 100644 index 0000000..85f82ea --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v14/values-v14.xml @@ -0,0 +1,22 @@ + + + + + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml new file mode 100644 index 0000000..14a7133 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml new file mode 100644 index 0000000..7dad77f --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml @@ -0,0 +1,4 @@ + + + 0px + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml new file mode 100644 index 0000000..1c5a42f --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml @@ -0,0 +1,253 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml new file mode 100644 index 0000000..73045f9 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml @@ -0,0 +1,16 @@ + + + "Điều hướng về trang chủ" + "Điều hướng lên trên" + "Thêm tùy chọn" + "Xong" + "Xem tất cả" + "Chọn một ứng dụng" + "Xóa truy vấn" + "Tìm kiếm truy vấn" + "Tìm kiếm" + "Gửi truy vấn" + "Tìm kiếm bằng giọng nói" + "Chia sẻ với" + "Chia sẻ với %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml new file mode 100644 index 0000000..fd9dac9 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml @@ -0,0 +1,4 @@ + + + 3 + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml new file mode 100644 index 0000000..5b7dcf6 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml @@ -0,0 +1,5 @@ + + + true + true + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml new file mode 100644 index 0000000..dcd19ee --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml @@ -0,0 +1,4 @@ + + + 4 + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml new file mode 100644 index 0000000..4c058c2 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml @@ -0,0 +1,5 @@ + + + 192dip + 5 + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml new file mode 100644 index 0000000..966aafb --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml @@ -0,0 +1,4 @@ + + + false + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml new file mode 100644 index 0000000..3eda5f5 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml @@ -0,0 +1,4 @@ + + + 64dp + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml new file mode 100644 index 0000000..98b3f8c --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml @@ -0,0 +1,4 @@ + + + 256dip + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml new file mode 100644 index 0000000..ba8d9da --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml @@ -0,0 +1,10 @@ + + + false + 192dip + 60% + 90% + 50% + 70% + 5 + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml new file mode 100644 index 0000000..486ce12 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml @@ -0,0 +1,16 @@ + + + "转到主屏幕" + "转到上一层级" + "更多选项" + "完成" + "查看全部" + "选择应用" + "清除查询" + "搜索查询" + "搜索" + "提交查询" + "语音搜索" + "分享方式" + "通过%s分享" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml new file mode 100644 index 0000000..462f2b3 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml @@ -0,0 +1,16 @@ + + + "瀏覽主頁" + "向上瀏覽" + "更多選項" + "完成" + "顯示全部" + "選擇應用程式" + "清除查詢" + "搜尋查詢" + "搜尋" + "提交查詢" + "語音搜尋" + "分享對象" + "與「%s」分享" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml new file mode 100644 index 0000000..f297705 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml @@ -0,0 +1,16 @@ + + + "瀏覽首頁" + "向上瀏覽" + "更多選項" + "完成" + "查看全部" + "選擇應用程式" + "清除查詢" + "搜尋查詢" + "搜尋" + "提交查詢" + "語音搜尋" + "選擇分享對象" + "與「%s」分享" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml new file mode 100644 index 0000000..d383c89 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml @@ -0,0 +1,16 @@ + + + "Zulazulela ekhaya" + "Zulazulela phezulu" + "Izinketho eziningi" + "Kwenziwe" + "Buka konke" + "Khetha uhlelo lokusebenza" + "Sula inkinga" + "Umbuzo wosesho" + "Sesha" + "Hambisa umbuzo" + "Ukusesha ngezwi" + "Yabelana no-" + "Yabelana no-%s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml new file mode 100644 index 0000000..e1f8aca --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml @@ -0,0 +1,1423 @@ + + + + + + + true + false + true + true + false + true + false + @android:color/black + #7fa87f + @android:color/black + @android:color/black + @color/material_deep_teal_200 + @color/material_deep_teal_500 + #ff424242 + #ffeeeeee + #ff303030 + #ffeeeeee + #80ffffff + #80000000 + @color/bright_foreground_material_light + @color/bright_foreground_material_dark + @android:color/white + @android:color/black + #ff5a595b + #ffd6d7d7 + #80bebebe + #80323232 + #ffbebebe + #ff323232 + #6680cbc4 + #66009688 + @color/bright_foreground_disabled_material_dark + @color/bright_foreground_disabled_material_light + @color/material_deep_teal_200 + @color/material_deep_teal_500 + #ff37474f + #ff263238 + #ff21272b + #ff80cbc4 + #ff009688 + #ff000000 + #ff757575 + #ff212121 + #ffefefef + #ffffffff + #de000000 + #4Dffffff + #39000000 + #4dffffff + #1f000000 + #b3ffffff + #8a000000 + #36ffffff + #24000000 + #ff616161 + #ffbdbdbd + #ffbdbdbd + #fff1f1f1 + + + + + + + + + + + + + + + + + + + + + + + + + + + 16dp + 56dp + 4dp + 16dp + 0dp + 10dp + 6dp + 40dp + 48dp + 180dp + 5dp + -3dp + 48dp + 48dp + 36dp + 48dp + @dimen/abc_control_inset_material + 6dp + 8dp + @dimen/abc_control_padding_material + 320dp + 2dp + 4dp + 4dp + 8dp + 65% + 95% + 24dp + 18dp + 0.30 + 0.26 + 32dip + 8dip + 8dip + 7dp + 4dp + 10dp + 16dp + @dimen/abc_action_bar_content_inset_material + 296dp + 320dip + 160dip + 3dp + 14sp + 14sp + 14sp + 12sp + 34sp + 45sp + 56sp + 112sp + 24sp + 22sp + 18sp + 16sp + 14sp + 16sp + 16dp + 20sp + 20dp + 16dp + 16dp + 80% + 100% + 320dp + 320dp + 0.30 + 0.26 + + + + + + + + + + 220 + 150 + 2 + Navigate home + %1$s, %2$s + %1$s, %2$s, %3$s + Navigate up + More options + Done + See all + Choose an app + Search… + Clear query + Search query + Search + Submit query + Voice search + Share with + Share with %s + Collapse + Settings + CircleRefresh + Hello world! + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #ff2632382dp16dp#8a000000Share with %s48dp#36ffffff@color/material_deep_teal_200false@dimen/abc_control_padding_material@android:color/black#80fffffffalse10dpDone#ffffffff320dp4dp#39000000@android:color/white0.26#de00000012sp@color/material_deep_teal_20048dp36dpSubmit query320dip14sp@color/bright_foreground_disabled_material_light56sp14sp95%16spCollapse-3dp%1$s, %2$s, %3$s8dip0.3080%4dp#7fa87f#ff3030305dp#4dffffff296dp@color/bright_foreground_material_light#24000000#80bebebe180dp10dp#ffeeeeee14sp@dimen/abc_action_bar_content_inset_material40dp@android:color/black#ffefefef22sp34sp16sp24spSearch query#ff0096886dpNavigate up3dp#80323232#ffbdbdbdMore options320dp0dp22020sp15024dpNavigate home0.30112sp16dp0.2616dp#ff323232160dip#b3ffffff4dp#ff21272b16dp@color/material_deep_teal_500%1$s, %2$s45spfalse#80000000@color/material_deep_teal_50018sp#ff42424248dp65%Clear querytrue4dp@dimen/abc_control_inset_material#ff37474f6dptrueSearch…@color/bright_foreground_disabled_material_dark"Soeknavraag""Sien alles""Deel met""Kies \'n program""Soek""Stemsoektog""Deel met %s""Navigeer tuis""Nog opsies""Vee navraag uit""Klaar""Dien navraag in""Navigeer op""መጠይቅ ያስረክቡ""የድምፅ ፍለጋ""ከሚከተለው ጋር ያጋሩ""ወደ መነሻ ይዳስሱ""መተግበሪያ ይምረጡ""መጠይቅ አጽዳ""ተጨማሪ አማራጮች""የፍለጋ ጥያቄ""ወደ ላይ ይዳስሱ""ከ%s ጋር ያጋሩ""ተከናውኗል""ፍለጋ""ሁሉንም ይመልከቱ""محو طلب البحث""خيارات إضافية""التنقل إلى أعلى""تم""إرسال طلب البحث""طلب البحث""اختيار تطبيق""التنقل إلى الشاشة الرئيسية""‏مشاركة مع %s""البحث الصوتي""بحث""مشاركة مع""عرض الكل""Търсене""Още опции""Заявка за търсене""Изчистване на заявката""Готово""Споделяне със: %s""Изпращане на заявката""Изберете приложение""Гласово търсене""Придвижване нагоре""Придвижване към „Начало“""Вижте всички""Споделяне със:""হোম এ নেভিগেট করুন""একটি অ্যাপ্লিকেশান চয়ন করুন""উপরের দিকে নেভিগেট করুন""ক্যোয়ারী সাফ করুন""এর সাথে ভাগ করুন""ক্যোয়ারী জমা দিন""%s এর সাথে ভাগ করুন""ক্যোয়ারী অনুসন্ধান করুন""আরো বিকল্প""সবগুলো দেখুন""সম্পন্ন হয়েছে""অনুসন্ধান করুন""ভয়েস অনুসন্ধান""Selecciona una aplicació""Esborra la consulta""Envia la consulta""Navega cap a dalt""Comparteix amb""Navega a la pàgina d\'inici""Mostra\'ls tots""Comparteix amb %s""Consulta de cerca""Cerca""Fet""Cerca per veu""Més opcions""Sdílet pomocí %s""Hledat""Zobrazit vše""Hlasové vyhledávání""Přejít na plochu""Odeslat dotaz""Sdílet pomocí""Hotovo""Více možností""Smazat dotaz""Přejít nahoru""Vyhledávací dotaz""Vybrat aplikaci""Vælg en app""Indsend forespørgslen""Ryd forespørgslen""Søgeforespørgsel""Naviger hjem""Se alle""Søg""Del med""Naviger op""Luk""Del med %s""Flere muligheder""Stemmesøgning""Sprachsuche""Weitere Optionen""Suchanfrage löschen""Suchanfrage""Alle ansehen""Fertig""Zur Startseite""Freigeben für""Suchen""Freigeben für %s""Nach oben""App auswählen""Suchanfrage senden""Φωνητική αναζήτηση""Κοινή χρήση με %s""Υποβολή ερωτήματος""Κοινή χρήση με""Επιλέξτε κάποια εφαρμογή""Διαγραφή ερωτήματος""Πλοήγηση προς τα επάνω""Περισσότερες επιλογές""Τέλος""Πλοήγηση στην αρχική σελίδα""Ερώτημα αναζήτησης""Προβολή όλων""Αναζήτηση""Voice search""Submit query""See all""Clear query""Navigate home""Finished""More options""Search""Search query""Navigate up""Share with""Choose an app""Share with %s""Navigate home""Finished""See all""Voice search""Search""Choose an app""Clear query""Navigate up""Share with %s""More options""Submit query""Share with""Search query""Buscar""Ver todo""Consulta""Borrar consulta""Seleccionar una aplicación""Enviar consulta""Ir a la pantalla de inicio""Compartir con %s""Desplazarse hacia arriba""Búsqueda por voz""Listo""Más opciones""Compartir con""Navegar a la página principal""Elige una aplicación.""Navegar hacia arriba""Búsqueda por voz""Consulta de búsqueda""Enviar consulta""Compartir con""Listo""Compartir con %s""Más opciones""Eliminar la consulta""Ver todo""Búsqueda""Päringu tühistamine""Navigeerimine avaekraanile""Valmis""Jagamine kasutajaga %s""Päringu esitamine""Jagamine:""Rohkem valikuid""Otsingupäring""Kuva kõik""Otsing""Valige rakendus""Navigeerimine üles""Häälotsing""Bilatu""Joan orri nagusira""Garbitu kontsulta""Partekatu hauekin""Aukera gehiago""Partekatu %s erabiltzailearekin""Bilaketa-kontsulta""Bidali kontsulta""Ahots bidezko bilaketa""Joan gora""Eginda""Aukeratu aplikazio bat""Ikusi guztiak""اشتراک‌گذاری با""انتخاب برنامه""ارسال عبارت جستجو""پیمایش به صفحه اصلی""گزینه‌های بیشتر""جستجو""جستجوی شفاهی""عبارت جستجو""‏اشتراک‌گذاری با %s""پیمایش به بالا""مشاهده همه""انجام شد""پاک کردن عبارت جستجو""Valmis""Lähetä kysely""Jakaminen:""Siirry ylös""Siirry etusivulle""Valitse sovellus""Lisää""Näytä kaikki""Haku""Tyhjennä kysely""Puhehaku""Hakulauseke""Jakaminen: %s""Tout afficher""Partager avec""Rechercher""Sélectionner une application""Envoyer la requête""Revenir à l\'accueil""Plus d\'options""OK""Requête de recherche""Revenir en haut de la page""Partager avec %s""Effacer la requête""Recherche vocale""Revenir à l\'accueil""Partager avec %s""Terminé""Sélectionnez une application""Rechercher""Recherche vocale""Partager avec""Voir toutes les chaînes""Effacer la requête""Envoyer la requête""Requête de recherche""Plus d\'options""Revenir en haut de la page""Consulta de busca""Buscar""Compartir con %s""Desprazarse cara arriba""Borrar consulta""Feito""Enviar consulta""Máis opcións""Compartir con""Ver todas""Ir á páxina de inicio""Busca de voz""Escoller unha aplicación"54dip"पूर्ण""ध्वनि खोज""क्‍वेरी साफ़ करें""%s के साथ साझा करें""अधिक विकल्प""कोई एप्‍लिकेशन चुनें""सभी देखें""खोज क्वेरी""मुखपृष्ठ पर नेविगेट करें""खोजें""इसके द्वारा साझा करें""ऊपर नेविगेट करें""क्वेरी सबमिट करें""Gotovo""Prikaži sve""Odabir aplikacije""Idi na početnu""Pretraživanje""Dodatne opcije""Glasovno pretraživanje""Dijeljenje sa: %s""Upit za pretraživanje""Dijeljenje sa""Pošalji upit""Idi gore""Izbriši upit""Lekérdezés küldése""Ugrás a főoldalra""Lekérdezés törlése""Megosztás a következővel: %s""Hangalapú keresés""Kész""További lehetőségek""Megosztás a következővel:""Összes megtekintése""Felfelé mozgatás""Válasszon ki egy alkalmazást""Keresés""Keresési lekérdezés""Ուղարկել հարցումը""Տարածել""Տեսնել բոլորը""Այլ ընտրանքներ""Ուղղվել տուն""Կատարված է""Որոնել""Մաքրել հարցումը""Ձայնային որոնում""Ուղղվել վերև""Որոնման հարցում""Ընտրել ծրագիր""Տարածել ըստ %s""Navigasi ke beranda""Lihat semua""Bagikan dengan %s""Navigasi naik""Telusuri""Bagikan dengan""Opsi lain""Pilih aplikasi""Penelusuran suara""Selesai""Hapus kueri""Kirim kueri""Kueri penelusuran""Leita""Fara heim""Leitarfyrirspurn""Deila með""Raddleit""Fleiri valkostir""Hreinsa fyrirspurn""Deila með %s""Senda fyrirspurn""Sjá allt""Lokið""Fara upp""Veldu forrit""Scegli un\'applicazione""Ricerca vocale""Cancella query""Altre opzioni""Fine""Condividi con %s""Visualizza tutte""Vai in alto""Cerca""Invia query""Condividi con""Query di ricerca""Vai alla home page""מחק שאילתה""חפש""בחר אפליקציה""ראה הכול""‏שתף עם %s""עוד אפשרויות""בוצע""שלח שאילתה""שאילתת חיפוש""נווט לדף הבית""חיפוש קולי""שתף עם""נווט למעלה""アプリの選択""検索キーワードを削除""共有""検索キーワードを送信""上へ移動""%sと共有""すべて表示""その他のオプション""検索キーワード""検索""完了""音声検索""ホームへ移動""მოთხოვნის გადაგზავნა""ხმოვანი ძიება""მოთხოვნის გასუფთავება""გაზიარება:""მეტი ვარიანტები""%s-თან გაზიარება""მთავარზე ნავიგაცია""დასრულდა""ძიება""ზემოთ ნავიგაცია""ყველას ნახვა""აპის არჩევა""ძიების მოთხოვნა""Сұрақты іздеу""Іздеу""Орындалды""%s бөлісу""Дауыс арқылы іздеу""Жоғары қозғалу""Сұрақты жіберу""Бөлісу""Сұрақты жою""Басқа опциялар""Қолданбаны таңдау""Барлығын көру""Негізгі бетте қозғалу""ជម្រើស​ច្រើន​ទៀត""រួចរាល់""សម្អាត​សំណួរ""ដាក់​​​ស្នើ​សំណួរ""ស្វែងរក​សំណួរ""ចែករំលែក​ជាមួយ %s""មើល​ទាំងអស់""ការស្វែងរក​សំឡេង""រកមើល​ឡើងលើ""ចែករំលែក​ជាមួយ""រកមើល​ទៅ​ដើម""ស្វែងរក""ជ្រើស​កម្មវិធី​​""ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ""ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಹುಡುಕು""ಮುಗಿದಿದೆ""ಎಲ್ಲವನ್ನೂ ನೋಡಿ""ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು""ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ""ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು""ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು""ಧ್ವನಿ ಹುಡುಕಾಟ""옵션 더보기""검색""%s와(과) 공유""검색어""위로 탐색""검색어 삭제""음성 검색""검색어 보내기""공유 대상""완료""홈 탐색""전체 보기""앱 선택""Бөлүшүү""Издөө талаптары""%s аркылуу бөлүшүү""Колдонмо тандоо""Издөө""Үйгө багыттоо""Үн аркылуу издөө""Бардыгын көрүү""Талаптарды тазалоо""Талап жөнөтүү""Даяр""Көбүрөөк мүмкүнчүлүктөр""Жогору"32dp14dptrue48dp12dp0dptrue60%192dip0pxSettings16dpCircleRefresh64dp \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugAssets/merger.xml b/circlerefresh/build/intermediates/incremental/mergeDebugAssets/merger.xml new file mode 100644 index 0000000..1a7160f --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties b/circlerefresh/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties new file mode 100644 index 0000000..6a4f17c --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties @@ -0,0 +1,274 @@ +#Wed Jan 11 02:14:17 CST 2017 +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/support_simple_spinner_dropdown_item.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/layout/activity_main.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/activity_main.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_list_selector_background_transition_holo_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_btn_default_mtrl_shape.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_btn_radio_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_mode_bar.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_primary_text_material_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_shrink_fade_out_from_bottom.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_grow_fade_in_from_bottom.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color-v11/abc_background_cache_hint_selector_material_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_simple_dropdown_hint.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_simple_dropdown_hint.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-tvdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-tvdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_popup_menu_item_layout.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_fade_out.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_fade_out.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_slide_out_top.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/select_dialog_multichoice_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_cab_background_internal_bg.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color-v11/abc_background_cache_hint_selector_material_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_menu_item_layout.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_tab_indicator_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_search_view.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_search_view.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_secondary_text_material_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_edit_text_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_text_cursor_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_cursor_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_focused_holo.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_search_url_text.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/abc_search_url_text.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_activity_chooser_view.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_dialog_material_background_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_text_cursor_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_cursor_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_list_selector_holo_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/mipmap-xxhdpi/ic_launcher.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/mipmap-xxhdpi-v4/ic_launcher.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_menu_layout.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_screen_simple_overlay_action_mode.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_slide_out_bottom.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_cab_background_top_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_list_menu_item_icon.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/select_dialog_singlechoice_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_secondary_text_material_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_primary_text_material_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/mipmap-xhdpi/ic_launcher.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/mipmap-xhdpi-v4/ic_launcher.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_switch_thumb_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/menu/menu_main.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/menu/menu_main.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_item_background_holo_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_text_cursor_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_cursor_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_mode_close_item_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_activity_chooser_view_list_item.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_search_dropdown_item_icons_2line.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_primary_text_disable_only_material_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_screen_toolbar.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_screen_simple.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_select_dialog_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_bar_up_container.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_item_background_holo_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/mipmap-mdpi/ic_launcher.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/mipmap-mdpi-v4/ic_launcher.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_text_cursor_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_cursor_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_list_selector_background_transition_holo_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/switch_thumb_material_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_focused_holo.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_list_menu_item_radio.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/mipmap-hdpi/ic_launcher.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/mipmap-hdpi-v4/ic_launcher.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_alert_dialog_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_popup_enter.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_expanded_menu_layout.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/abc_primary_text_disable_only_material_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_btn_borderless_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_bar_view_list_nav_layout.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_slide_in_top.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_textfield_search_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_fade_in.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_fade_in.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_dialog_material_background_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_action_bar_title_item.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_popup_exit.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-tvdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-tvdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/color/switch_thumb_material_dark.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_dialog_title_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_btn_check_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_spinner_textfield_background_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/select_dialog_item_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_list_selector_holo_light.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_list_menu_item_checkbox.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/anim/abc_slide_in_bottom.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout/abc_list_menu_item_layout.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable/abc_ratingbar_full_material.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/layout-v11/abc_screen_content_include.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/layout-v11/abc_screen_content_include.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml new file mode 100644 index 0000000..84812a8 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml @@ -0,0 +1,16 @@ + + + "Navigeer tuis" + "Navigeer op" + "Nog opsies" + "Klaar" + "Sien alles" + "Kies \'n program" + "Vee navraag uit" + "Soeknavraag" + "Soek" + "Dien navraag in" + "Stemsoektog" + "Deel met" + "Deel met %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml new file mode 100644 index 0000000..6d8ce8e --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml @@ -0,0 +1,16 @@ + + + "ወደ መነሻ ይዳስሱ" + "ወደ ላይ ይዳስሱ" + "ተጨማሪ አማራጮች" + "ተከናውኗል" + "ሁሉንም ይመልከቱ" + "መተግበሪያ ይምረጡ" + "መጠይቅ አጽዳ" + "የፍለጋ ጥያቄ" + "ፍለጋ" + "መጠይቅ ያስረክቡ" + "የድምፅ ፍለጋ" + "ከሚከተለው ጋር ያጋሩ" + "ከ%s ጋር ያጋሩ" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml new file mode 100644 index 0000000..6ee5951 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml @@ -0,0 +1,16 @@ + + + "التنقل إلى الشاشة الرئيسية" + "التنقل إلى أعلى" + "خيارات إضافية" + "تم" + "عرض الكل" + "اختيار تطبيق" + "محو طلب البحث" + "طلب البحث" + "بحث" + "إرسال طلب البحث" + "البحث الصوتي" + "مشاركة مع" + "‏مشاركة مع %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml new file mode 100644 index 0000000..aa7ff35 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml @@ -0,0 +1,16 @@ + + + "Придвижване към „Начало“" + "Придвижване нагоре" + "Още опции" + "Готово" + "Вижте всички" + "Изберете приложение" + "Изчистване на заявката" + "Заявка за търсене" + "Търсене" + "Изпращане на заявката" + "Гласово търсене" + "Споделяне със:" + "Споделяне със: %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml new file mode 100644 index 0000000..3ce5f3e --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml @@ -0,0 +1,16 @@ + + + "হোম এ নেভিগেট করুন" + "উপরের দিকে নেভিগেট করুন" + "আরো বিকল্প" + "সম্পন্ন হয়েছে" + "সবগুলো দেখুন" + "একটি অ্যাপ্লিকেশান চয়ন করুন" + "ক্যোয়ারী সাফ করুন" + "ক্যোয়ারী অনুসন্ধান করুন" + "অনুসন্ধান করুন" + "ক্যোয়ারী জমা দিন" + "ভয়েস অনুসন্ধান" + "এর সাথে ভাগ করুন" + "%s এর সাথে ভাগ করুন" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml new file mode 100644 index 0000000..80dd170 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml @@ -0,0 +1,16 @@ + + + "Navega a la pàgina d\'inici" + "Navega cap a dalt" + "Més opcions" + "Fet" + "Mostra\'ls tots" + "Selecciona una aplicació" + "Esborra la consulta" + "Consulta de cerca" + "Cerca" + "Envia la consulta" + "Cerca per veu" + "Comparteix amb" + "Comparteix amb %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml new file mode 100644 index 0000000..a862180 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml @@ -0,0 +1,16 @@ + + + "Přejít na plochu" + "Přejít nahoru" + "Více možností" + "Hotovo" + "Zobrazit vše" + "Vybrat aplikaci" + "Smazat dotaz" + "Vyhledávací dotaz" + "Hledat" + "Odeslat dotaz" + "Hlasové vyhledávání" + "Sdílet pomocí" + "Sdílet pomocí %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml new file mode 100644 index 0000000..91f5306 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml @@ -0,0 +1,16 @@ + + + "Naviger hjem" + "Naviger op" + "Flere muligheder" + "Luk" + "Se alle" + "Vælg en app" + "Ryd forespørgslen" + "Søgeforespørgsel" + "Søg" + "Indsend forespørgslen" + "Stemmesøgning" + "Del med" + "Del med %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml new file mode 100644 index 0000000..b6912f6 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml @@ -0,0 +1,16 @@ + + + "Zur Startseite" + "Nach oben" + "Weitere Optionen" + "Fertig" + "Alle ansehen" + "App auswählen" + "Suchanfrage löschen" + "Suchanfrage" + "Suchen" + "Suchanfrage senden" + "Sprachsuche" + "Freigeben für" + "Freigeben für %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml new file mode 100644 index 0000000..ad57bc3 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml @@ -0,0 +1,16 @@ + + + "Πλοήγηση στην αρχική σελίδα" + "Πλοήγηση προς τα επάνω" + "Περισσότερες επιλογές" + "Τέλος" + "Προβολή όλων" + "Επιλέξτε κάποια εφαρμογή" + "Διαγραφή ερωτήματος" + "Ερώτημα αναζήτησης" + "Αναζήτηση" + "Υποβολή ερωτήματος" + "Φωνητική αναζήτηση" + "Κοινή χρήση με" + "Κοινή χρήση με %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml new file mode 100644 index 0000000..dec9a30 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml @@ -0,0 +1,16 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Finished" + "See all" + "Choose an app" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml new file mode 100644 index 0000000..dec9a30 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml @@ -0,0 +1,16 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Finished" + "See all" + "Choose an app" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml new file mode 100644 index 0000000..7e84c58 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml @@ -0,0 +1,16 @@ + + + "Navegar a la página principal" + "Navegar hacia arriba" + "Más opciones" + "Listo" + "Ver todo" + "Elige una aplicación." + "Eliminar la consulta" + "Consulta de búsqueda" + "Búsqueda" + "Enviar consulta" + "Búsqueda por voz" + "Compartir con" + "Compartir con %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml new file mode 100644 index 0000000..b05af8f --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml @@ -0,0 +1,16 @@ + + + "Ir a la pantalla de inicio" + "Desplazarse hacia arriba" + "Más opciones" + "Listo" + "Ver todo" + "Seleccionar una aplicación" + "Borrar consulta" + "Consulta" + "Buscar" + "Enviar consulta" + "Búsqueda por voz" + "Compartir con" + "Compartir con %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml new file mode 100644 index 0000000..90b6d81 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml @@ -0,0 +1,16 @@ + + + "Navigeerimine avaekraanile" + "Navigeerimine üles" + "Rohkem valikuid" + "Valmis" + "Kuva kõik" + "Valige rakendus" + "Päringu tühistamine" + "Otsingupäring" + "Otsing" + "Päringu esitamine" + "Häälotsing" + "Jagamine:" + "Jagamine kasutajaga %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml new file mode 100644 index 0000000..653ccd9 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml @@ -0,0 +1,16 @@ + + + "Joan orri nagusira" + "Joan gora" + "Aukera gehiago" + "Eginda" + "Ikusi guztiak" + "Aukeratu aplikazio bat" + "Garbitu kontsulta" + "Bilaketa-kontsulta" + "Bilatu" + "Bidali kontsulta" + "Ahots bidezko bilaketa" + "Partekatu hauekin" + "Partekatu %s erabiltzailearekin" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml new file mode 100644 index 0000000..04db10a --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml @@ -0,0 +1,16 @@ + + + "پیمایش به صفحه اصلی" + "پیمایش به بالا" + "گزینه‌های بیشتر" + "انجام شد" + "مشاهده همه" + "انتخاب برنامه" + "پاک کردن عبارت جستجو" + "عبارت جستجو" + "جستجو" + "ارسال عبارت جستجو" + "جستجوی شفاهی" + "اشتراک‌گذاری با" + "‏اشتراک‌گذاری با %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml new file mode 100644 index 0000000..883e8f4 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml @@ -0,0 +1,16 @@ + + + "Siirry etusivulle" + "Siirry ylös" + "Lisää" + "Valmis" + "Näytä kaikki" + "Valitse sovellus" + "Tyhjennä kysely" + "Hakulauseke" + "Haku" + "Lähetä kysely" + "Puhehaku" + "Jakaminen:" + "Jakaminen: %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml new file mode 100644 index 0000000..bb82426 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml @@ -0,0 +1,16 @@ + + + "Revenir à l\'accueil" + "Revenir en haut de la page" + "Plus d\'options" + "Terminé" + "Voir toutes les chaînes" + "Sélectionnez une application" + "Effacer la requête" + "Requête de recherche" + "Rechercher" + "Envoyer la requête" + "Recherche vocale" + "Partager avec" + "Partager avec %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml new file mode 100644 index 0000000..a73a2b3 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml @@ -0,0 +1,16 @@ + + + "Revenir à l\'accueil" + "Revenir en haut de la page" + "Plus d\'options" + "OK" + "Tout afficher" + "Sélectionner une application" + "Effacer la requête" + "Requête de recherche" + "Rechercher" + "Envoyer la requête" + "Recherche vocale" + "Partager avec" + "Partager avec %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml new file mode 100644 index 0000000..d5ca5e2 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml @@ -0,0 +1,16 @@ + + + "Ir á páxina de inicio" + "Desprazarse cara arriba" + "Máis opcións" + "Feito" + "Ver todas" + "Escoller unha aplicación" + "Borrar consulta" + "Consulta de busca" + "Buscar" + "Enviar consulta" + "Busca de voz" + "Compartir con" + "Compartir con %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml new file mode 100644 index 0000000..e38bb90 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml @@ -0,0 +1,4 @@ + + + 54dip + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml new file mode 100644 index 0000000..56a5d47 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml new file mode 100644 index 0000000..c3f81b6 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml @@ -0,0 +1,16 @@ + + + "मुखपृष्ठ पर नेविगेट करें" + "ऊपर नेविगेट करें" + "अधिक विकल्प" + "पूर्ण" + "सभी देखें" + "कोई एप्‍लिकेशन चुनें" + "क्‍वेरी साफ़ करें" + "खोज क्वेरी" + "खोजें" + "क्वेरी सबमिट करें" + "ध्वनि खोज" + "इसके द्वारा साझा करें" + "%s के साथ साझा करें" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml new file mode 100644 index 0000000..4eefcd3 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml @@ -0,0 +1,16 @@ + + + "Idi na početnu" + "Idi gore" + "Dodatne opcije" + "Gotovo" + "Prikaži sve" + "Odabir aplikacije" + "Izbriši upit" + "Upit za pretraživanje" + "Pretraživanje" + "Pošalji upit" + "Glasovno pretraživanje" + "Dijeljenje sa" + "Dijeljenje sa: %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml new file mode 100644 index 0000000..7a92ebe --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml @@ -0,0 +1,16 @@ + + + "Ugrás a főoldalra" + "Felfelé mozgatás" + "További lehetőségek" + "Kész" + "Összes megtekintése" + "Válasszon ki egy alkalmazást" + "Lekérdezés törlése" + "Keresési lekérdezés" + "Keresés" + "Lekérdezés küldése" + "Hangalapú keresés" + "Megosztás a következővel:" + "Megosztás a következővel: %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml new file mode 100644 index 0000000..9eaf5bb --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml @@ -0,0 +1,16 @@ + + + "Ուղղվել տուն" + "Ուղղվել վերև" + "Այլ ընտրանքներ" + "Կատարված է" + "Տեսնել բոլորը" + "Ընտրել ծրագիր" + "Մաքրել հարցումը" + "Որոնման հարցում" + "Որոնել" + "Ուղարկել հարցումը" + "Ձայնային որոնում" + "Տարածել" + "Տարածել ըստ %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml new file mode 100644 index 0000000..ca27a16 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml @@ -0,0 +1,16 @@ + + + "Navigasi ke beranda" + "Navigasi naik" + "Opsi lain" + "Selesai" + "Lihat semua" + "Pilih aplikasi" + "Hapus kueri" + "Kueri penelusuran" + "Telusuri" + "Kirim kueri" + "Penelusuran suara" + "Bagikan dengan" + "Bagikan dengan %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml new file mode 100644 index 0000000..a43b829 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml @@ -0,0 +1,16 @@ + + + "Fara heim" + "Fara upp" + "Fleiri valkostir" + "Lokið" + "Sjá allt" + "Veldu forrit" + "Hreinsa fyrirspurn" + "Leitarfyrirspurn" + "Leita" + "Senda fyrirspurn" + "Raddleit" + "Deila með" + "Deila með %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml new file mode 100644 index 0000000..5afc397 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml @@ -0,0 +1,16 @@ + + + "Vai alla home page" + "Vai in alto" + "Altre opzioni" + "Fine" + "Visualizza tutte" + "Scegli un\'applicazione" + "Cancella query" + "Query di ricerca" + "Cerca" + "Invia query" + "Ricerca vocale" + "Condividi con" + "Condividi con %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml new file mode 100644 index 0000000..8d76e34 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml @@ -0,0 +1,16 @@ + + + "נווט לדף הבית" + "נווט למעלה" + "עוד אפשרויות" + "בוצע" + "ראה הכול" + "בחר אפליקציה" + "מחק שאילתה" + "שאילתת חיפוש" + "חפש" + "שלח שאילתה" + "חיפוש קולי" + "שתף עם" + "‏שתף עם %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml new file mode 100644 index 0000000..d638b59 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml @@ -0,0 +1,16 @@ + + + "ホームへ移動" + "上へ移動" + "その他のオプション" + "完了" + "すべて表示" + "アプリの選択" + "検索キーワードを削除" + "検索キーワード" + "検索" + "検索キーワードを送信" + "音声検索" + "共有" + "%sと共有" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml new file mode 100644 index 0000000..269ffd0 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml @@ -0,0 +1,16 @@ + + + "მთავარზე ნავიგაცია" + "ზემოთ ნავიგაცია" + "მეტი ვარიანტები" + "დასრულდა" + "ყველას ნახვა" + "აპის არჩევა" + "მოთხოვნის გასუფთავება" + "ძიების მოთხოვნა" + "ძიება" + "მოთხოვნის გადაგზავნა" + "ხმოვანი ძიება" + "გაზიარება:" + "%s-თან გაზიარება" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml new file mode 100644 index 0000000..87d0ff3 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml @@ -0,0 +1,16 @@ + + + "Негізгі бетте қозғалу" + "Жоғары қозғалу" + "Басқа опциялар" + "Орындалды" + "Барлығын көру" + "Қолданбаны таңдау" + "Сұрақты жою" + "Сұрақты іздеу" + "Іздеу" + "Сұрақты жіберу" + "Дауыс арқылы іздеу" + "Бөлісу" + "%s бөлісу" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml new file mode 100644 index 0000000..14bcf76 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml @@ -0,0 +1,16 @@ + + + "រកមើល​ទៅ​ដើម" + "រកមើល​ឡើងលើ" + "ជម្រើស​ច្រើន​ទៀត" + "រួចរាល់" + "មើល​ទាំងអស់" + "ជ្រើស​កម្មវិធី​​" + "សម្អាត​សំណួរ" + "ស្វែងរក​សំណួរ" + "ស្វែងរក" + "ដាក់​​​ស្នើ​សំណួរ" + "ការស្វែងរក​សំឡេង" + "ចែករំលែក​ជាមួយ" + "ចែករំលែក​ជាមួយ %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml new file mode 100644 index 0000000..52464af --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml @@ -0,0 +1,16 @@ + + + "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" + "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" + "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು" + "ಮುಗಿದಿದೆ" + "ಎಲ್ಲವನ್ನೂ ನೋಡಿ" + "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ" + "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು" + "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ" + "ಹುಡುಕು" + "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು" + "ಧ್ವನಿ ಹುಡುಕಾಟ" + "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" + "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml new file mode 100644 index 0000000..60a6261 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml @@ -0,0 +1,16 @@ + + + "홈 탐색" + "위로 탐색" + "옵션 더보기" + "완료" + "전체 보기" + "앱 선택" + "검색어 삭제" + "검색어" + "검색" + "검색어 보내기" + "음성 검색" + "공유 대상" + "%s와(과) 공유" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml new file mode 100644 index 0000000..6d6999b --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml @@ -0,0 +1,16 @@ + + + "Үйгө багыттоо" + "Жогору" + "Көбүрөөк мүмкүнчүлүктөр" + "Даяр" + "Бардыгын көрүү" + "Колдонмо тандоо" + "Талаптарды тазалоо" + "Издөө талаптары" + "Издөө" + "Талап жөнөтүү" + "Үн аркылуу издөө" + "Бөлүшүү" + "%s аркылуу бөлүшүү" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml new file mode 100644 index 0000000..fabf9eb --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml @@ -0,0 +1,10 @@ + + + true + true + 48dp + 0dp + 32dp + 12dp + 14dp + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml new file mode 100644 index 0000000..55aba50 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml @@ -0,0 +1,14 @@ + + + true + true + 440dp + 192dip + 60% + 90% + 60% + 90% + 4 + + + + + + + + + + + + + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v12/values-v12.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v12/values-v12.xml new file mode 100644 index 0000000..b522a13 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v12/values-v12.xml @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml new file mode 100644 index 0000000..85f82ea --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml @@ -0,0 +1,22 @@ + + + + + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml new file mode 100644 index 0000000..14a7133 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml new file mode 100644 index 0000000..7dad77f --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml @@ -0,0 +1,4 @@ + + + 0px + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml new file mode 100644 index 0000000..1c5a42f --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml @@ -0,0 +1,253 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml new file mode 100644 index 0000000..73045f9 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml @@ -0,0 +1,16 @@ + + + "Điều hướng về trang chủ" + "Điều hướng lên trên" + "Thêm tùy chọn" + "Xong" + "Xem tất cả" + "Chọn một ứng dụng" + "Xóa truy vấn" + "Tìm kiếm truy vấn" + "Tìm kiếm" + "Gửi truy vấn" + "Tìm kiếm bằng giọng nói" + "Chia sẻ với" + "Chia sẻ với %s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml new file mode 100644 index 0000000..fd9dac9 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml @@ -0,0 +1,4 @@ + + + 3 + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml new file mode 100644 index 0000000..5b7dcf6 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml @@ -0,0 +1,5 @@ + + + true + true + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml new file mode 100644 index 0000000..dcd19ee --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml @@ -0,0 +1,4 @@ + + + 4 + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml new file mode 100644 index 0000000..4c058c2 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml @@ -0,0 +1,5 @@ + + + 192dip + 5 + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml new file mode 100644 index 0000000..966aafb --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml @@ -0,0 +1,4 @@ + + + false + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml new file mode 100644 index 0000000..3eda5f5 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml @@ -0,0 +1,4 @@ + + + 64dp + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml new file mode 100644 index 0000000..98b3f8c --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml @@ -0,0 +1,4 @@ + + + 256dip + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml new file mode 100644 index 0000000..ba8d9da --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml @@ -0,0 +1,10 @@ + + + false + 192dip + 60% + 90% + 50% + 70% + 5 + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml new file mode 100644 index 0000000..486ce12 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml @@ -0,0 +1,16 @@ + + + "转到主屏幕" + "转到上一层级" + "更多选项" + "完成" + "查看全部" + "选择应用" + "清除查询" + "搜索查询" + "搜索" + "提交查询" + "语音搜索" + "分享方式" + "通过%s分享" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml new file mode 100644 index 0000000..462f2b3 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml @@ -0,0 +1,16 @@ + + + "瀏覽主頁" + "向上瀏覽" + "更多選項" + "完成" + "顯示全部" + "選擇應用程式" + "清除查詢" + "搜尋查詢" + "搜尋" + "提交查詢" + "語音搜尋" + "分享對象" + "與「%s」分享" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml new file mode 100644 index 0000000..f297705 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml @@ -0,0 +1,16 @@ + + + "瀏覽首頁" + "向上瀏覽" + "更多選項" + "完成" + "查看全部" + "選擇應用程式" + "清除查詢" + "搜尋查詢" + "搜尋" + "提交查詢" + "語音搜尋" + "選擇分享對象" + "與「%s」分享" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml new file mode 100644 index 0000000..d383c89 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml @@ -0,0 +1,16 @@ + + + "Zulazulela ekhaya" + "Zulazulela phezulu" + "Izinketho eziningi" + "Kwenziwe" + "Buka konke" + "Khetha uhlelo lokusebenza" + "Sula inkinga" + "Umbuzo wosesho" + "Sesha" + "Hambisa umbuzo" + "Ukusesha ngezwi" + "Yabelana no-" + "Yabelana no-%s" + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml new file mode 100644 index 0000000..e1f8aca --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml @@ -0,0 +1,1423 @@ + + + + + + + true + false + true + true + false + true + false + @android:color/black + #7fa87f + @android:color/black + @android:color/black + @color/material_deep_teal_200 + @color/material_deep_teal_500 + #ff424242 + #ffeeeeee + #ff303030 + #ffeeeeee + #80ffffff + #80000000 + @color/bright_foreground_material_light + @color/bright_foreground_material_dark + @android:color/white + @android:color/black + #ff5a595b + #ffd6d7d7 + #80bebebe + #80323232 + #ffbebebe + #ff323232 + #6680cbc4 + #66009688 + @color/bright_foreground_disabled_material_dark + @color/bright_foreground_disabled_material_light + @color/material_deep_teal_200 + @color/material_deep_teal_500 + #ff37474f + #ff263238 + #ff21272b + #ff80cbc4 + #ff009688 + #ff000000 + #ff757575 + #ff212121 + #ffefefef + #ffffffff + #de000000 + #4Dffffff + #39000000 + #4dffffff + #1f000000 + #b3ffffff + #8a000000 + #36ffffff + #24000000 + #ff616161 + #ffbdbdbd + #ffbdbdbd + #fff1f1f1 + + + + + + + + + + + + + + + + + + + + + + + + + + + 16dp + 56dp + 4dp + 16dp + 0dp + 10dp + 6dp + 40dp + 48dp + 180dp + 5dp + -3dp + 48dp + 48dp + 36dp + 48dp + @dimen/abc_control_inset_material + 6dp + 8dp + @dimen/abc_control_padding_material + 320dp + 2dp + 4dp + 4dp + 8dp + 65% + 95% + 24dp + 18dp + 0.30 + 0.26 + 32dip + 8dip + 8dip + 7dp + 4dp + 10dp + 16dp + @dimen/abc_action_bar_content_inset_material + 296dp + 320dip + 160dip + 3dp + 14sp + 14sp + 14sp + 12sp + 34sp + 45sp + 56sp + 112sp + 24sp + 22sp + 18sp + 16sp + 14sp + 16sp + 16dp + 20sp + 20dp + 16dp + 16dp + 80% + 100% + 320dp + 320dp + 0.30 + 0.26 + + + + + + + + + + 220 + 150 + 2 + Navigate home + %1$s, %2$s + %1$s, %2$s, %3$s + Navigate up + More options + Done + See all + Choose an app + Search… + Clear query + Search query + Search + Submit query + Voice search + Share with + Share with %s + Collapse + Settings + CircleRefresh + Hello world! + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #ff2632382dp16dp#8a000000Share with %s48dp#36ffffff@color/material_deep_teal_200false@dimen/abc_control_padding_material@android:color/black#80fffffffalse10dpDone#ffffffff320dp4dp#39000000@android:color/white0.26#de00000012sp@color/material_deep_teal_20048dp36dpSubmit query320dip14sp@color/bright_foreground_disabled_material_light56sp14sp95%16spCollapse-3dp%1$s, %2$s, %3$s8dip0.3080%4dp#7fa87f#ff3030305dp#4dffffff296dp@color/bright_foreground_material_light#24000000#80bebebe180dp10dp#ffeeeeee14sp@dimen/abc_action_bar_content_inset_material40dp@android:color/black#ffefefef22sp34sp16sp24spSearch query#ff0096886dpNavigate up3dp#80323232#ffbdbdbdMore options320dp0dp22020sp15024dpNavigate home0.30112sp16dp0.2616dp#ff323232160dip#b3ffffff4dp#ff21272b16dp@color/material_deep_teal_500%1$s, %2$s45spfalse#80000000@color/material_deep_teal_50018sp#ff42424248dp65%Clear querytrue4dp@dimen/abc_control_inset_material#ff37474f6dptrueSearch…@color/bright_foreground_disabled_material_dark"Soeknavraag""Sien alles""Deel met""Kies \'n program""Soek""Stemsoektog""Deel met %s""Navigeer tuis""Nog opsies""Vee navraag uit""Klaar""Dien navraag in""Navigeer op""መጠይቅ ያስረክቡ""የድምፅ ፍለጋ""ከሚከተለው ጋር ያጋሩ""ወደ መነሻ ይዳስሱ""መተግበሪያ ይምረጡ""መጠይቅ አጽዳ""ተጨማሪ አማራጮች""የፍለጋ ጥያቄ""ወደ ላይ ይዳስሱ""ከ%s ጋር ያጋሩ""ተከናውኗል""ፍለጋ""ሁሉንም ይመልከቱ""محو طلب البحث""خيارات إضافية""التنقل إلى أعلى""تم""إرسال طلب البحث""طلب البحث""اختيار تطبيق""التنقل إلى الشاشة الرئيسية""‏مشاركة مع %s""البحث الصوتي""بحث""مشاركة مع""عرض الكل""Търсене""Още опции""Заявка за търсене""Изчистване на заявката""Готово""Споделяне със: %s""Изпращане на заявката""Изберете приложение""Гласово търсене""Придвижване нагоре""Придвижване към „Начало“""Вижте всички""Споделяне със:""হোম এ নেভিগেট করুন""একটি অ্যাপ্লিকেশান চয়ন করুন""উপরের দিকে নেভিগেট করুন""ক্যোয়ারী সাফ করুন""এর সাথে ভাগ করুন""ক্যোয়ারী জমা দিন""%s এর সাথে ভাগ করুন""ক্যোয়ারী অনুসন্ধান করুন""আরো বিকল্প""সবগুলো দেখুন""সম্পন্ন হয়েছে""অনুসন্ধান করুন""ভয়েস অনুসন্ধান""Selecciona una aplicació""Esborra la consulta""Envia la consulta""Navega cap a dalt""Comparteix amb""Navega a la pàgina d\'inici""Mostra\'ls tots""Comparteix amb %s""Consulta de cerca""Cerca""Fet""Cerca per veu""Més opcions""Sdílet pomocí %s""Hledat""Zobrazit vše""Hlasové vyhledávání""Přejít na plochu""Odeslat dotaz""Sdílet pomocí""Hotovo""Více možností""Smazat dotaz""Přejít nahoru""Vyhledávací dotaz""Vybrat aplikaci""Vælg en app""Indsend forespørgslen""Ryd forespørgslen""Søgeforespørgsel""Naviger hjem""Se alle""Søg""Del med""Naviger op""Luk""Del med %s""Flere muligheder""Stemmesøgning""Sprachsuche""Weitere Optionen""Suchanfrage löschen""Suchanfrage""Alle ansehen""Fertig""Zur Startseite""Freigeben für""Suchen""Freigeben für %s""Nach oben""App auswählen""Suchanfrage senden""Φωνητική αναζήτηση""Κοινή χρήση με %s""Υποβολή ερωτήματος""Κοινή χρήση με""Επιλέξτε κάποια εφαρμογή""Διαγραφή ερωτήματος""Πλοήγηση προς τα επάνω""Περισσότερες επιλογές""Τέλος""Πλοήγηση στην αρχική σελίδα""Ερώτημα αναζήτησης""Προβολή όλων""Αναζήτηση""Voice search""Submit query""See all""Clear query""Navigate home""Finished""More options""Search""Search query""Navigate up""Share with""Choose an app""Share with %s""Navigate home""Finished""See all""Voice search""Search""Choose an app""Clear query""Navigate up""Share with %s""More options""Submit query""Share with""Search query""Buscar""Ver todo""Consulta""Borrar consulta""Seleccionar una aplicación""Enviar consulta""Ir a la pantalla de inicio""Compartir con %s""Desplazarse hacia arriba""Búsqueda por voz""Listo""Más opciones""Compartir con""Navegar a la página principal""Elige una aplicación.""Navegar hacia arriba""Búsqueda por voz""Consulta de búsqueda""Enviar consulta""Compartir con""Listo""Compartir con %s""Más opciones""Eliminar la consulta""Ver todo""Búsqueda""Päringu tühistamine""Navigeerimine avaekraanile""Valmis""Jagamine kasutajaga %s""Päringu esitamine""Jagamine:""Rohkem valikuid""Otsingupäring""Kuva kõik""Otsing""Valige rakendus""Navigeerimine üles""Häälotsing""Bilatu""Joan orri nagusira""Garbitu kontsulta""Partekatu hauekin""Aukera gehiago""Partekatu %s erabiltzailearekin""Bilaketa-kontsulta""Bidali kontsulta""Ahots bidezko bilaketa""Joan gora""Eginda""Aukeratu aplikazio bat""Ikusi guztiak""اشتراک‌گذاری با""انتخاب برنامه""ارسال عبارت جستجو""پیمایش به صفحه اصلی""گزینه‌های بیشتر""جستجو""جستجوی شفاهی""عبارت جستجو""‏اشتراک‌گذاری با %s""پیمایش به بالا""مشاهده همه""انجام شد""پاک کردن عبارت جستجو""Valmis""Lähetä kysely""Jakaminen:""Siirry ylös""Siirry etusivulle""Valitse sovellus""Lisää""Näytä kaikki""Haku""Tyhjennä kysely""Puhehaku""Hakulauseke""Jakaminen: %s""Tout afficher""Partager avec""Rechercher""Sélectionner une application""Envoyer la requête""Revenir à l\'accueil""Plus d\'options""OK""Requête de recherche""Revenir en haut de la page""Partager avec %s""Effacer la requête""Recherche vocale""Revenir à l\'accueil""Partager avec %s""Terminé""Sélectionnez une application""Rechercher""Recherche vocale""Partager avec""Voir toutes les chaînes""Effacer la requête""Envoyer la requête""Requête de recherche""Plus d\'options""Revenir en haut de la page""Consulta de busca""Buscar""Compartir con %s""Desprazarse cara arriba""Borrar consulta""Feito""Enviar consulta""Máis opcións""Compartir con""Ver todas""Ir á páxina de inicio""Busca de voz""Escoller unha aplicación"54dip"पूर्ण""ध्वनि खोज""क्‍वेरी साफ़ करें""%s के साथ साझा करें""अधिक विकल्प""कोई एप्‍लिकेशन चुनें""सभी देखें""खोज क्वेरी""मुखपृष्ठ पर नेविगेट करें""खोजें""इसके द्वारा साझा करें""ऊपर नेविगेट करें""क्वेरी सबमिट करें""Gotovo""Prikaži sve""Odabir aplikacije""Idi na početnu""Pretraživanje""Dodatne opcije""Glasovno pretraživanje""Dijeljenje sa: %s""Upit za pretraživanje""Dijeljenje sa""Pošalji upit""Idi gore""Izbriši upit""Lekérdezés küldése""Ugrás a főoldalra""Lekérdezés törlése""Megosztás a következővel: %s""Hangalapú keresés""Kész""További lehetőségek""Megosztás a következővel:""Összes megtekintése""Felfelé mozgatás""Válasszon ki egy alkalmazást""Keresés""Keresési lekérdezés""Ուղարկել հարցումը""Տարածել""Տեսնել բոլորը""Այլ ընտրանքներ""Ուղղվել տուն""Կատարված է""Որոնել""Մաքրել հարցումը""Ձայնային որոնում""Ուղղվել վերև""Որոնման հարցում""Ընտրել ծրագիր""Տարածել ըստ %s""Navigasi ke beranda""Lihat semua""Bagikan dengan %s""Navigasi naik""Telusuri""Bagikan dengan""Opsi lain""Pilih aplikasi""Penelusuran suara""Selesai""Hapus kueri""Kirim kueri""Kueri penelusuran""Leita""Fara heim""Leitarfyrirspurn""Deila með""Raddleit""Fleiri valkostir""Hreinsa fyrirspurn""Deila með %s""Senda fyrirspurn""Sjá allt""Lokið""Fara upp""Veldu forrit""Scegli un\'applicazione""Ricerca vocale""Cancella query""Altre opzioni""Fine""Condividi con %s""Visualizza tutte""Vai in alto""Cerca""Invia query""Condividi con""Query di ricerca""Vai alla home page""מחק שאילתה""חפש""בחר אפליקציה""ראה הכול""‏שתף עם %s""עוד אפשרויות""בוצע""שלח שאילתה""שאילתת חיפוש""נווט לדף הבית""חיפוש קולי""שתף עם""נווט למעלה""アプリの選択""検索キーワードを削除""共有""検索キーワードを送信""上へ移動""%sと共有""すべて表示""その他のオプション""検索キーワード""検索""完了""音声検索""ホームへ移動""მოთხოვნის გადაგზავნა""ხმოვანი ძიება""მოთხოვნის გასუფთავება""გაზიარება:""მეტი ვარიანტები""%s-თან გაზიარება""მთავარზე ნავიგაცია""დასრულდა""ძიება""ზემოთ ნავიგაცია""ყველას ნახვა""აპის არჩევა""ძიების მოთხოვნა""Сұрақты іздеу""Іздеу""Орындалды""%s бөлісу""Дауыс арқылы іздеу""Жоғары қозғалу""Сұрақты жіберу""Бөлісу""Сұрақты жою""Басқа опциялар""Қолданбаны таңдау""Барлығын көру""Негізгі бетте қозғалу""ជម្រើស​ច្រើន​ទៀត""រួចរាល់""សម្អាត​សំណួរ""ដាក់​​​ស្នើ​សំណួរ""ស្វែងរក​សំណួរ""ចែករំលែក​ជាមួយ %s""មើល​ទាំងអស់""ការស្វែងរក​សំឡេង""រកមើល​ឡើងលើ""ចែករំលែក​ជាមួយ""រកមើល​ទៅ​ដើម""ស្វែងរក""ជ្រើស​កម្មវិធី​​""ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ""ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಹುಡುಕು""ಮುಗಿದಿದೆ""ಎಲ್ಲವನ್ನೂ ನೋಡಿ""ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು""ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ""ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು""ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು""ಧ್ವನಿ ಹುಡುಕಾಟ""옵션 더보기""검색""%s와(과) 공유""검색어""위로 탐색""검색어 삭제""음성 검색""검색어 보내기""공유 대상""완료""홈 탐색""전체 보기""앱 선택""Бөлүшүү""Издөө талаптары""%s аркылуу бөлүшүү""Колдонмо тандоо""Издөө""Үйгө багыттоо""Үн аркылуу издөө""Бардыгын көрүү""Талаптарды тазалоо""Талап жөнөтүү""Даяр""Көбүрөөк мүмкүнчүлүктөр""Жогору"32dp14dptrue48dp12dp0dptrue60%192dip0px64dp \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeDebugShaders/merger.xml b/circlerefresh/build/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000..9516d8c --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeReleaseAssets/merger.xml b/circlerefresh/build/intermediates/incremental/mergeReleaseAssets/merger.xml new file mode 100644 index 0000000..ed7aa2b --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeReleaseAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeReleaseShaders/merger.xml b/circlerefresh/build/intermediates/incremental/mergeReleaseShaders/merger.xml new file mode 100644 index 0000000..0ceb1b8 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/mergeReleaseShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeResources/androidTest/debug/merger.xml b/circlerefresh/build/intermediates/incremental/mergeResources/androidTest/debug/merger.xml deleted file mode 100644 index 150e157..0000000 --- a/circlerefresh/build/intermediates/incremental/mergeResources/androidTest/debug/merger.xml +++ /dev/null @@ -1,1326 +0,0 @@ - -#ff2632382dp16dp#8a000000Share with %s48dp#36ffffff@color/material_deep_teal_200false@dimen/abc_control_padding_material@android:color/black#80fffffffalse10dpDone#ffffffff320dp4dp#39000000@android:color/white0.26#de00000012sp@color/material_deep_teal_20048dp36dpSubmit query320dip14sp@color/bright_foreground_disabled_material_light56sp14sp95%16spCollapse-3dp%1$s, %2$s, %3$s8dip0.3080%4dp#7fa87f#ff3030305dp#4dffffff296dp@color/bright_foreground_material_light#24000000#80bebebe180dp10dp#ffeeeeee14sp@dimen/abc_action_bar_content_inset_material40dp@android:color/black#ffefefef22sp34sp16sp24spSearch query#ff0096886dpNavigate up3dp#80323232#ffbdbdbdMore options320dp0dp22020sp15024dpNavigate home0.30112sp16dp0.2616dp#ff323232160dip#b3ffffff4dp#ff21272b16dp@color/material_deep_teal_500%1$s, %2$s45spfalse#80000000@color/material_deep_teal_50018sp#ff42424248dp65%Clear querytrue4dp@dimen/abc_control_inset_material#ff37474f6dptrueSearch…@color/bright_foreground_disabled_material_dark"Soeknavraag""Sien alles""Deel met""Kies \'n program""Soek""Stemsoektog""Deel met %s""Navigeer tuis""Nog opsies""Vee navraag uit""Klaar""Dien navraag in""Navigeer op""መጠይቅ ያስረክቡ""የድምፅ ፍለጋ""ከሚከተለው ጋር ያጋሩ""ወደ መነሻ ይዳስሱ""መተግበሪያ ይምረጡ""መጠይቅ አጽዳ""ተጨማሪ አማራጮች""የፍለጋ ጥያቄ""ወደ ላይ ይዳስሱ""ከ%s ጋር ያጋሩ""ተከናውኗል""ፍለጋ""ሁሉንም ይመልከቱ""محو طلب البحث""خيارات إضافية""التنقل إلى أعلى""تم""إرسال طلب البحث""طلب البحث""اختيار تطبيق""التنقل إلى الشاشة الرئيسية""‏مشاركة مع %s""البحث الصوتي""بحث""مشاركة مع""عرض الكل""Търсене""Още опции""Заявка за търсене""Изчистване на заявката""Готово""Споделяне със: %s""Изпращане на заявката""Изберете приложение""Гласово търсене""Придвижване нагоре""Придвижване към „Начало“""Вижте всички""Споделяне със:""হোম এ নেভিগেট করুন""একটি অ্যাপ্লিকেশান চয়ন করুন""উপরের দিকে নেভিগেট করুন""ক্যোয়ারী সাফ করুন""এর সাথে ভাগ করুন""ক্যোয়ারী জমা দিন""%s এর সাথে ভাগ করুন""ক্যোয়ারী অনুসন্ধান করুন""আরো বিকল্প""সবগুলো দেখুন""সম্পন্ন হয়েছে""অনুসন্ধান করুন""ভয়েস অনুসন্ধান""Selecciona una aplicació""Esborra la consulta""Envia la consulta""Navega cap a dalt""Comparteix amb""Navega a la pàgina d\'inici""Mostra\'ls tots""Comparteix amb %s""Consulta de cerca""Cerca""Fet""Cerca per veu""Més opcions""Sdílet pomocí %s""Hledat""Zobrazit vše""Hlasové vyhledávání""Přejít na plochu""Odeslat dotaz""Sdílet pomocí""Hotovo""Více možností""Smazat dotaz""Přejít nahoru""Vyhledávací dotaz""Vybrat aplikaci""Vælg en app""Indsend forespørgslen""Ryd forespørgslen""Søgeforespørgsel""Naviger hjem""Se alle""Søg""Del med""Naviger op""Luk""Del med %s""Flere muligheder""Stemmesøgning""Sprachsuche""Weitere Optionen""Suchanfrage löschen""Suchanfrage""Alle ansehen""Fertig""Zur Startseite""Freigeben für""Suchen""Freigeben für %s""Nach oben""App auswählen""Suchanfrage senden""Φωνητική αναζήτηση""Κοινή χρήση με %s""Υποβολή ερωτήματος""Κοινή χρήση με""Επιλέξτε κάποια εφαρμογή""Διαγραφή ερωτήματος""Πλοήγηση προς τα επάνω""Περισσότερες επιλογές""Τέλος""Πλοήγηση στην αρχική σελίδα""Ερώτημα αναζήτησης""Προβολή όλων""Αναζήτηση""Voice search""Submit query""See all""Clear query""Navigate home""Finished""More options""Search""Search query""Navigate up""Share with""Choose an app""Share with %s""Navigate home""Finished""See all""Voice search""Search""Choose an app""Clear query""Navigate up""Share with %s""More options""Submit query""Share with""Search query""Buscar""Ver todo""Consulta""Borrar consulta""Seleccionar una aplicación""Enviar consulta""Ir a la pantalla de inicio""Compartir con %s""Desplazarse hacia arriba""Búsqueda por voz""Listo""Más opciones""Compartir con""Navegar a la página principal""Elige una aplicación.""Navegar hacia arriba""Búsqueda por voz""Consulta de búsqueda""Enviar consulta""Compartir con""Listo""Compartir con %s""Más opciones""Eliminar la consulta""Ver todo""Búsqueda""Päringu tühistamine""Navigeerimine avaekraanile""Valmis""Jagamine kasutajaga %s""Päringu esitamine""Jagamine:""Rohkem valikuid""Otsingupäring""Kuva kõik""Otsing""Valige rakendus""Navigeerimine üles""Häälotsing""Bilatu""Joan orri nagusira""Garbitu kontsulta""Partekatu hauekin""Aukera gehiago""Partekatu %s erabiltzailearekin""Bilaketa-kontsulta""Bidali kontsulta""Ahots bidezko bilaketa""Joan gora""Eginda""Aukeratu aplikazio bat""Ikusi guztiak""اشتراک‌گذاری با""انتخاب برنامه""ارسال عبارت جستجو""پیمایش به صفحه اصلی""گزینه‌های بیشتر""جستجو""جستجوی شفاهی""عبارت جستجو""‏اشتراک‌گذاری با %s""پیمایش به بالا""مشاهده همه""انجام شد""پاک کردن عبارت جستجو""Valmis""Lähetä kysely""Jakaminen:""Siirry ylös""Siirry etusivulle""Valitse sovellus""Lisää""Näytä kaikki""Haku""Tyhjennä kysely""Puhehaku""Hakulauseke""Jakaminen: %s""Tout afficher""Partager avec""Rechercher""Sélectionner une application""Envoyer la requête""Revenir à l\'accueil""Plus d\'options""OK""Requête de recherche""Revenir en haut de la page""Partager avec %s""Effacer la requête""Recherche vocale""Revenir à l\'accueil""Partager avec %s""Terminé""Sélectionnez une application""Rechercher""Recherche vocale""Partager avec""Voir toutes les chaînes""Effacer la requête""Envoyer la requête""Requête de recherche""Plus d\'options""Revenir en haut de la page""Consulta de busca""Buscar""Compartir con %s""Desprazarse cara arriba""Borrar consulta""Feito""Enviar consulta""Máis opcións""Compartir con""Ver todas""Ir á páxina de inicio""Busca de voz""Escoller unha aplicación"54dip"पूर्ण""ध्वनि खोज""क्‍वेरी साफ़ करें""%s के साथ साझा करें""अधिक विकल्प""कोई एप्‍लिकेशन चुनें""सभी देखें""खोज क्वेरी""मुखपृष्ठ पर नेविगेट करें""खोजें""इसके द्वारा साझा करें""ऊपर नेविगेट करें""क्वेरी सबमिट करें""Gotovo""Prikaži sve""Odabir aplikacije""Idi na početnu""Pretraživanje""Dodatne opcije""Glasovno pretraživanje""Dijeljenje sa: %s""Upit za pretraživanje""Dijeljenje sa""Pošalji upit""Idi gore""Izbriši upit""Lekérdezés küldése""Ugrás a főoldalra""Lekérdezés törlése""Megosztás a következővel: %s""Hangalapú keresés""Kész""További lehetőségek""Megosztás a következővel:""Összes megtekintése""Felfelé mozgatás""Válasszon ki egy alkalmazást""Keresés""Keresési lekérdezés""Ուղարկել հարցումը""Տարածել""Տեսնել բոլորը""Այլ ընտրանքներ""Ուղղվել տուն""Կատարված է""Որոնել""Մաքրել հարցումը""Ձայնային որոնում""Ուղղվել վերև""Որոնման հարցում""Ընտրել ծրագիր""Տարածել ըստ %s""Navigasi ke beranda""Lihat semua""Bagikan dengan %s""Navigasi naik""Telusuri""Bagikan dengan""Opsi lain""Pilih aplikasi""Penelusuran suara""Selesai""Hapus kueri""Kirim kueri""Kueri penelusuran""Leita""Fara heim""Leitarfyrirspurn""Deila með""Raddleit""Fleiri valkostir""Hreinsa fyrirspurn""Deila með %s""Senda fyrirspurn""Sjá allt""Lokið""Fara upp""Veldu forrit""Scegli un\'applicazione""Ricerca vocale""Cancella query""Altre opzioni""Fine""Condividi con %s""Visualizza tutte""Vai in alto""Cerca""Invia query""Condividi con""Query di ricerca""Vai alla home page""מחק שאילתה""חפש""בחר אפליקציה""ראה הכול""‏שתף עם %s""עוד אפשרויות""בוצע""שלח שאילתה""שאילתת חיפוש""נווט לדף הבית""חיפוש קולי""שתף עם""נווט למעלה""アプリの選択""検索キーワードを削除""共有""検索キーワードを送信""上へ移動""%sと共有""すべて表示""その他のオプション""検索キーワード""検索""完了""音声検索""ホームへ移動""მოთხოვნის გადაგზავნა""ხმოვანი ძიება""მოთხოვნის გასუფთავება""გაზიარება:""მეტი ვარიანტები""%s-თან გაზიარება""მთავარზე ნავიგაცია""დასრულდა""ძიება""ზემოთ ნავიგაცია""ყველას ნახვა""აპის არჩევა""ძიების მოთხოვნა""Сұрақты іздеу""Іздеу""Орындалды""%s бөлісу""Дауыс арқылы іздеу""Жоғары қозғалу""Сұрақты жіберу""Бөлісу""Сұрақты жою""Басқа опциялар""Қолданбаны таңдау""Барлығын көру""Негізгі бетте қозғалу""ជម្រើស​ច្រើន​ទៀត""រួចរាល់""សម្អាត​សំណួរ""ដាក់​​​ស្នើ​សំណួរ""ស្វែងរក​សំណួរ""ចែករំលែក​ជាមួយ %s""មើល​ទាំងអស់""ការស្វែងរក​សំឡេង""រកមើល​ឡើងលើ""ចែករំលែក​ជាមួយ""រកមើល​ទៅ​ដើម""ស្វែងរក""ជ្រើស​កម្មវិធី​​""ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ""ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಹುಡುಕು""ಮುಗಿದಿದೆ""ಎಲ್ಲವನ್ನೂ ನೋಡಿ""ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು""ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ""ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು""ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು""ಧ್ವನಿ ಹುಡುಕಾಟ""옵션 더보기""검색""%s와(과) 공유""검색어""위로 탐색""검색어 삭제""음성 검색""검색어 보내기""공유 대상""완료""홈 탐색""전체 보기""앱 선택""Бөлүшүү""Издөө талаптары""%s аркылуу бөлүшүү""Колдонмо тандоо""Издөө""Үйгө багыттоо""Үн аркылуу издөө""Бардыгын көрүү""Талаптарды тазалоо""Талап жөнөтүү""Даяр""Көбүрөөк мүмкүнчүлүктөр""Жогору"32dp14dptrue48dp12dp0dptrue60%192dip0pxSettings16dpCircleRefresh64dp \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeResources/debug/merger.xml b/circlerefresh/build/intermediates/incremental/mergeResources/debug/merger.xml deleted file mode 100644 index 664156b..0000000 --- a/circlerefresh/build/intermediates/incremental/mergeResources/debug/merger.xml +++ /dev/null @@ -1,1330 +0,0 @@ - -#ff2632382dp16dp#8a000000Share with %s48dp#36ffffff@color/material_deep_teal_200false@dimen/abc_control_padding_material@android:color/black#80fffffffalse10dpDone#ffffffff320dp4dp#39000000@android:color/white0.26#de00000012sp@color/material_deep_teal_20048dp36dpSubmit query320dip14sp@color/bright_foreground_disabled_material_light56sp14sp95%16spCollapse-3dp%1$s, %2$s, %3$s8dip0.3080%4dp#7fa87f#ff3030305dp#4dffffff296dp@color/bright_foreground_material_light#24000000#80bebebe180dp10dp#ffeeeeee14sp@dimen/abc_action_bar_content_inset_material40dp@android:color/black#ffefefef22sp34sp16sp24spSearch query#ff0096886dpNavigate up3dp#80323232#ffbdbdbdMore options320dp0dp22020sp15024dpNavigate home0.30112sp16dp0.2616dp#ff323232160dip#b3ffffff4dp#ff21272b16dp@color/material_deep_teal_500%1$s, %2$s45spfalse#80000000@color/material_deep_teal_50018sp#ff42424248dp65%Clear querytrue4dp@dimen/abc_control_inset_material#ff37474f6dptrueSearch…@color/bright_foreground_disabled_material_dark"Soeknavraag""Sien alles""Deel met""Kies \'n program""Soek""Stemsoektog""Deel met %s""Navigeer tuis""Nog opsies""Vee navraag uit""Klaar""Dien navraag in""Navigeer op""መጠይቅ ያስረክቡ""የድምፅ ፍለጋ""ከሚከተለው ጋር ያጋሩ""ወደ መነሻ ይዳስሱ""መተግበሪያ ይምረጡ""መጠይቅ አጽዳ""ተጨማሪ አማራጮች""የፍለጋ ጥያቄ""ወደ ላይ ይዳስሱ""ከ%s ጋር ያጋሩ""ተከናውኗል""ፍለጋ""ሁሉንም ይመልከቱ""محو طلب البحث""خيارات إضافية""التنقل إلى أعلى""تم""إرسال طلب البحث""طلب البحث""اختيار تطبيق""التنقل إلى الشاشة الرئيسية""‏مشاركة مع %s""البحث الصوتي""بحث""مشاركة مع""عرض الكل""Търсене""Още опции""Заявка за търсене""Изчистване на заявката""Готово""Споделяне със: %s""Изпращане на заявката""Изберете приложение""Гласово търсене""Придвижване нагоре""Придвижване към „Начало“""Вижте всички""Споделяне със:""হোম এ নেভিগেট করুন""একটি অ্যাপ্লিকেশান চয়ন করুন""উপরের দিকে নেভিগেট করুন""ক্যোয়ারী সাফ করুন""এর সাথে ভাগ করুন""ক্যোয়ারী জমা দিন""%s এর সাথে ভাগ করুন""ক্যোয়ারী অনুসন্ধান করুন""আরো বিকল্প""সবগুলো দেখুন""সম্পন্ন হয়েছে""অনুসন্ধান করুন""ভয়েস অনুসন্ধান""Selecciona una aplicació""Esborra la consulta""Envia la consulta""Navega cap a dalt""Comparteix amb""Navega a la pàgina d\'inici""Mostra\'ls tots""Comparteix amb %s""Consulta de cerca""Cerca""Fet""Cerca per veu""Més opcions""Sdílet pomocí %s""Hledat""Zobrazit vše""Hlasové vyhledávání""Přejít na plochu""Odeslat dotaz""Sdílet pomocí""Hotovo""Více možností""Smazat dotaz""Přejít nahoru""Vyhledávací dotaz""Vybrat aplikaci""Vælg en app""Indsend forespørgslen""Ryd forespørgslen""Søgeforespørgsel""Naviger hjem""Se alle""Søg""Del med""Naviger op""Luk""Del med %s""Flere muligheder""Stemmesøgning""Sprachsuche""Weitere Optionen""Suchanfrage löschen""Suchanfrage""Alle ansehen""Fertig""Zur Startseite""Freigeben für""Suchen""Freigeben für %s""Nach oben""App auswählen""Suchanfrage senden""Φωνητική αναζήτηση""Κοινή χρήση με %s""Υποβολή ερωτήματος""Κοινή χρήση με""Επιλέξτε κάποια εφαρμογή""Διαγραφή ερωτήματος""Πλοήγηση προς τα επάνω""Περισσότερες επιλογές""Τέλος""Πλοήγηση στην αρχική σελίδα""Ερώτημα αναζήτησης""Προβολή όλων""Αναζήτηση""Voice search""Submit query""See all""Clear query""Navigate home""Finished""More options""Search""Search query""Navigate up""Share with""Choose an app""Share with %s""Navigate home""Finished""See all""Voice search""Search""Choose an app""Clear query""Navigate up""Share with %s""More options""Submit query""Share with""Search query""Buscar""Ver todo""Consulta""Borrar consulta""Seleccionar una aplicación""Enviar consulta""Ir a la pantalla de inicio""Compartir con %s""Desplazarse hacia arriba""Búsqueda por voz""Listo""Más opciones""Compartir con""Navegar a la página principal""Elige una aplicación.""Navegar hacia arriba""Búsqueda por voz""Consulta de búsqueda""Enviar consulta""Compartir con""Listo""Compartir con %s""Más opciones""Eliminar la consulta""Ver todo""Búsqueda""Päringu tühistamine""Navigeerimine avaekraanile""Valmis""Jagamine kasutajaga %s""Päringu esitamine""Jagamine:""Rohkem valikuid""Otsingupäring""Kuva kõik""Otsing""Valige rakendus""Navigeerimine üles""Häälotsing""Bilatu""Joan orri nagusira""Garbitu kontsulta""Partekatu hauekin""Aukera gehiago""Partekatu %s erabiltzailearekin""Bilaketa-kontsulta""Bidali kontsulta""Ahots bidezko bilaketa""Joan gora""Eginda""Aukeratu aplikazio bat""Ikusi guztiak""اشتراک‌گذاری با""انتخاب برنامه""ارسال عبارت جستجو""پیمایش به صفحه اصلی""گزینه‌های بیشتر""جستجو""جستجوی شفاهی""عبارت جستجو""‏اشتراک‌گذاری با %s""پیمایش به بالا""مشاهده همه""انجام شد""پاک کردن عبارت جستجو""Valmis""Lähetä kysely""Jakaminen:""Siirry ylös""Siirry etusivulle""Valitse sovellus""Lisää""Näytä kaikki""Haku""Tyhjennä kysely""Puhehaku""Hakulauseke""Jakaminen: %s""Tout afficher""Partager avec""Rechercher""Sélectionner une application""Envoyer la requête""Revenir à l\'accueil""Plus d\'options""OK""Requête de recherche""Revenir en haut de la page""Partager avec %s""Effacer la requête""Recherche vocale""Revenir à l\'accueil""Partager avec %s""Terminé""Sélectionnez une application""Rechercher""Recherche vocale""Partager avec""Voir toutes les chaînes""Effacer la requête""Envoyer la requête""Requête de recherche""Plus d\'options""Revenir en haut de la page""Consulta de busca""Buscar""Compartir con %s""Desprazarse cara arriba""Borrar consulta""Feito""Enviar consulta""Máis opcións""Compartir con""Ver todas""Ir á páxina de inicio""Busca de voz""Escoller unha aplicación"54dip"पूर्ण""ध्वनि खोज""क्‍वेरी साफ़ करें""%s के साथ साझा करें""अधिक विकल्प""कोई एप्‍लिकेशन चुनें""सभी देखें""खोज क्वेरी""मुखपृष्ठ पर नेविगेट करें""खोजें""इसके द्वारा साझा करें""ऊपर नेविगेट करें""क्वेरी सबमिट करें""Gotovo""Prikaži sve""Odabir aplikacije""Idi na početnu""Pretraživanje""Dodatne opcije""Glasovno pretraživanje""Dijeljenje sa: %s""Upit za pretraživanje""Dijeljenje sa""Pošalji upit""Idi gore""Izbriši upit""Lekérdezés küldése""Ugrás a főoldalra""Lekérdezés törlése""Megosztás a következővel: %s""Hangalapú keresés""Kész""További lehetőségek""Megosztás a következővel:""Összes megtekintése""Felfelé mozgatás""Válasszon ki egy alkalmazást""Keresés""Keresési lekérdezés""Ուղարկել հարցումը""Տարածել""Տեսնել բոլորը""Այլ ընտրանքներ""Ուղղվել տուն""Կատարված է""Որոնել""Մաքրել հարցումը""Ձայնային որոնում""Ուղղվել վերև""Որոնման հարցում""Ընտրել ծրագիր""Տարածել ըստ %s""Navigasi ke beranda""Lihat semua""Bagikan dengan %s""Navigasi naik""Telusuri""Bagikan dengan""Opsi lain""Pilih aplikasi""Penelusuran suara""Selesai""Hapus kueri""Kirim kueri""Kueri penelusuran""Leita""Fara heim""Leitarfyrirspurn""Deila með""Raddleit""Fleiri valkostir""Hreinsa fyrirspurn""Deila með %s""Senda fyrirspurn""Sjá allt""Lokið""Fara upp""Veldu forrit""Scegli un\'applicazione""Ricerca vocale""Cancella query""Altre opzioni""Fine""Condividi con %s""Visualizza tutte""Vai in alto""Cerca""Invia query""Condividi con""Query di ricerca""Vai alla home page""מחק שאילתה""חפש""בחר אפליקציה""ראה הכול""‏שתף עם %s""עוד אפשרויות""בוצע""שלח שאילתה""שאילתת חיפוש""נווט לדף הבית""חיפוש קולי""שתף עם""נווט למעלה""アプリの選択""検索キーワードを削除""共有""検索キーワードを送信""上へ移動""%sと共有""すべて表示""その他のオプション""検索キーワード""検索""完了""音声検索""ホームへ移動""მოთხოვნის გადაგზავნა""ხმოვანი ძიება""მოთხოვნის გასუფთავება""გაზიარება:""მეტი ვარიანტები""%s-თან გაზიარება""მთავარზე ნავიგაცია""დასრულდა""ძიება""ზემოთ ნავიგაცია""ყველას ნახვა""აპის არჩევა""ძიების მოთხოვნა""Сұрақты іздеу""Іздеу""Орындалды""%s бөлісу""Дауыс арқылы іздеу""Жоғары қозғалу""Сұрақты жіберу""Бөлісу""Сұрақты жою""Басқа опциялар""Қолданбаны таңдау""Барлығын көру""Негізгі бетте қозғалу""ជម្រើស​ច្រើន​ទៀត""រួចរាល់""សម្អាត​សំណួរ""ដាក់​​​ស្នើ​សំណួរ""ស្វែងរក​សំណួរ""ចែករំលែក​ជាមួយ %s""មើល​ទាំងអស់""ការស្វែងរក​សំឡេង""រកមើល​ឡើងលើ""ចែករំលែក​ជាមួយ""រកមើល​ទៅ​ដើម""ស្វែងរក""ជ្រើស​កម្មវិធី​​""ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ""ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಹುಡುಕು""ಮುಗಿದಿದೆ""ಎಲ್ಲವನ್ನೂ ನೋಡಿ""ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು""ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ""ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು""ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು""ಧ್ವನಿ ಹುಡುಕಾಟ""옵션 더보기""검색""%s와(과) 공유""검색어""위로 탐색""검색어 삭제""음성 검색""검색어 보내기""공유 대상""완료""홈 탐색""전체 보기""앱 선택""Бөлүшүү""Издөө талаптары""%s аркылуу бөлүшүү""Колдонмо тандоо""Издөө""Үйгө багыттоо""Үн аркылуу издөө""Бардыгын көрүү""Талаптарды тазалоо""Талап жөнөтүү""Даяр""Көбүрөөк мүмкүнчүлүктөр""Жогору"32dp14dptrue48dp12dp0dptrue60%192dip0px64dp \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/mergeResources/release/merger.xml b/circlerefresh/build/intermediates/incremental/mergeResources/release/merger.xml deleted file mode 100644 index 97736f4..0000000 --- a/circlerefresh/build/intermediates/incremental/mergeResources/release/merger.xml +++ /dev/null @@ -1,1330 +0,0 @@ - -#ff2632382dp16dp#8a000000Share with %s48dp#36ffffff@color/material_deep_teal_200false@dimen/abc_control_padding_material@android:color/black#80fffffffalse10dpDone#ffffffff320dp4dp#39000000@android:color/white0.26#de00000012sp@color/material_deep_teal_20048dp36dpSubmit query320dip14sp@color/bright_foreground_disabled_material_light56sp14sp95%16spCollapse-3dp%1$s, %2$s, %3$s8dip0.3080%4dp#7fa87f#ff3030305dp#4dffffff296dp@color/bright_foreground_material_light#24000000#80bebebe180dp10dp#ffeeeeee14sp@dimen/abc_action_bar_content_inset_material40dp@android:color/black#ffefefef22sp34sp16sp24spSearch query#ff0096886dpNavigate up3dp#80323232#ffbdbdbdMore options320dp0dp22020sp15024dpNavigate home0.30112sp16dp0.2616dp#ff323232160dip#b3ffffff4dp#ff21272b16dp@color/material_deep_teal_500%1$s, %2$s45spfalse#80000000@color/material_deep_teal_50018sp#ff42424248dp65%Clear querytrue4dp@dimen/abc_control_inset_material#ff37474f6dptrueSearch…@color/bright_foreground_disabled_material_dark"Soeknavraag""Sien alles""Deel met""Kies \'n program""Soek""Stemsoektog""Deel met %s""Navigeer tuis""Nog opsies""Vee navraag uit""Klaar""Dien navraag in""Navigeer op""መጠይቅ ያስረክቡ""የድምፅ ፍለጋ""ከሚከተለው ጋር ያጋሩ""ወደ መነሻ ይዳስሱ""መተግበሪያ ይምረጡ""መጠይቅ አጽዳ""ተጨማሪ አማራጮች""የፍለጋ ጥያቄ""ወደ ላይ ይዳስሱ""ከ%s ጋር ያጋሩ""ተከናውኗል""ፍለጋ""ሁሉንም ይመልከቱ""محو طلب البحث""خيارات إضافية""التنقل إلى أعلى""تم""إرسال طلب البحث""طلب البحث""اختيار تطبيق""التنقل إلى الشاشة الرئيسية""‏مشاركة مع %s""البحث الصوتي""بحث""مشاركة مع""عرض الكل""Търсене""Още опции""Заявка за търсене""Изчистване на заявката""Готово""Споделяне със: %s""Изпращане на заявката""Изберете приложение""Гласово търсене""Придвижване нагоре""Придвижване към „Начало“""Вижте всички""Споделяне със:""হোম এ নেভিগেট করুন""একটি অ্যাপ্লিকেশান চয়ন করুন""উপরের দিকে নেভিগেট করুন""ক্যোয়ারী সাফ করুন""এর সাথে ভাগ করুন""ক্যোয়ারী জমা দিন""%s এর সাথে ভাগ করুন""ক্যোয়ারী অনুসন্ধান করুন""আরো বিকল্প""সবগুলো দেখুন""সম্পন্ন হয়েছে""অনুসন্ধান করুন""ভয়েস অনুসন্ধান""Selecciona una aplicació""Esborra la consulta""Envia la consulta""Navega cap a dalt""Comparteix amb""Navega a la pàgina d\'inici""Mostra\'ls tots""Comparteix amb %s""Consulta de cerca""Cerca""Fet""Cerca per veu""Més opcions""Sdílet pomocí %s""Hledat""Zobrazit vše""Hlasové vyhledávání""Přejít na plochu""Odeslat dotaz""Sdílet pomocí""Hotovo""Více možností""Smazat dotaz""Přejít nahoru""Vyhledávací dotaz""Vybrat aplikaci""Vælg en app""Indsend forespørgslen""Ryd forespørgslen""Søgeforespørgsel""Naviger hjem""Se alle""Søg""Del med""Naviger op""Luk""Del med %s""Flere muligheder""Stemmesøgning""Sprachsuche""Weitere Optionen""Suchanfrage löschen""Suchanfrage""Alle ansehen""Fertig""Zur Startseite""Freigeben für""Suchen""Freigeben für %s""Nach oben""App auswählen""Suchanfrage senden""Φωνητική αναζήτηση""Κοινή χρήση με %s""Υποβολή ερωτήματος""Κοινή χρήση με""Επιλέξτε κάποια εφαρμογή""Διαγραφή ερωτήματος""Πλοήγηση προς τα επάνω""Περισσότερες επιλογές""Τέλος""Πλοήγηση στην αρχική σελίδα""Ερώτημα αναζήτησης""Προβολή όλων""Αναζήτηση""Voice search""Submit query""See all""Clear query""Navigate home""Finished""More options""Search""Search query""Navigate up""Share with""Choose an app""Share with %s""Navigate home""Finished""See all""Voice search""Search""Choose an app""Clear query""Navigate up""Share with %s""More options""Submit query""Share with""Search query""Buscar""Ver todo""Consulta""Borrar consulta""Seleccionar una aplicación""Enviar consulta""Ir a la pantalla de inicio""Compartir con %s""Desplazarse hacia arriba""Búsqueda por voz""Listo""Más opciones""Compartir con""Navegar a la página principal""Elige una aplicación.""Navegar hacia arriba""Búsqueda por voz""Consulta de búsqueda""Enviar consulta""Compartir con""Listo""Compartir con %s""Más opciones""Eliminar la consulta""Ver todo""Búsqueda""Päringu tühistamine""Navigeerimine avaekraanile""Valmis""Jagamine kasutajaga %s""Päringu esitamine""Jagamine:""Rohkem valikuid""Otsingupäring""Kuva kõik""Otsing""Valige rakendus""Navigeerimine üles""Häälotsing""Bilatu""Joan orri nagusira""Garbitu kontsulta""Partekatu hauekin""Aukera gehiago""Partekatu %s erabiltzailearekin""Bilaketa-kontsulta""Bidali kontsulta""Ahots bidezko bilaketa""Joan gora""Eginda""Aukeratu aplikazio bat""Ikusi guztiak""اشتراک‌گذاری با""انتخاب برنامه""ارسال عبارت جستجو""پیمایش به صفحه اصلی""گزینه‌های بیشتر""جستجو""جستجوی شفاهی""عبارت جستجو""‏اشتراک‌گذاری با %s""پیمایش به بالا""مشاهده همه""انجام شد""پاک کردن عبارت جستجو""Valmis""Lähetä kysely""Jakaminen:""Siirry ylös""Siirry etusivulle""Valitse sovellus""Lisää""Näytä kaikki""Haku""Tyhjennä kysely""Puhehaku""Hakulauseke""Jakaminen: %s""Tout afficher""Partager avec""Rechercher""Sélectionner une application""Envoyer la requête""Revenir à l\'accueil""Plus d\'options""OK""Requête de recherche""Revenir en haut de la page""Partager avec %s""Effacer la requête""Recherche vocale""Revenir à l\'accueil""Partager avec %s""Terminé""Sélectionnez une application""Rechercher""Recherche vocale""Partager avec""Voir toutes les chaînes""Effacer la requête""Envoyer la requête""Requête de recherche""Plus d\'options""Revenir en haut de la page""Consulta de busca""Buscar""Compartir con %s""Desprazarse cara arriba""Borrar consulta""Feito""Enviar consulta""Máis opcións""Compartir con""Ver todas""Ir á páxina de inicio""Busca de voz""Escoller unha aplicación"54dip"पूर्ण""ध्वनि खोज""क्‍वेरी साफ़ करें""%s के साथ साझा करें""अधिक विकल्प""कोई एप्‍लिकेशन चुनें""सभी देखें""खोज क्वेरी""मुखपृष्ठ पर नेविगेट करें""खोजें""इसके द्वारा साझा करें""ऊपर नेविगेट करें""क्वेरी सबमिट करें""Gotovo""Prikaži sve""Odabir aplikacije""Idi na početnu""Pretraživanje""Dodatne opcije""Glasovno pretraživanje""Dijeljenje sa: %s""Upit za pretraživanje""Dijeljenje sa""Pošalji upit""Idi gore""Izbriši upit""Lekérdezés küldése""Ugrás a főoldalra""Lekérdezés törlése""Megosztás a következővel: %s""Hangalapú keresés""Kész""További lehetőségek""Megosztás a következővel:""Összes megtekintése""Felfelé mozgatás""Válasszon ki egy alkalmazást""Keresés""Keresési lekérdezés""Ուղարկել հարցումը""Տարածել""Տեսնել բոլորը""Այլ ընտրանքներ""Ուղղվել տուն""Կատարված է""Որոնել""Մաքրել հարցումը""Ձայնային որոնում""Ուղղվել վերև""Որոնման հարցում""Ընտրել ծրագիր""Տարածել ըստ %s""Navigasi ke beranda""Lihat semua""Bagikan dengan %s""Navigasi naik""Telusuri""Bagikan dengan""Opsi lain""Pilih aplikasi""Penelusuran suara""Selesai""Hapus kueri""Kirim kueri""Kueri penelusuran""Leita""Fara heim""Leitarfyrirspurn""Deila með""Raddleit""Fleiri valkostir""Hreinsa fyrirspurn""Deila með %s""Senda fyrirspurn""Sjá allt""Lokið""Fara upp""Veldu forrit""Scegli un\'applicazione""Ricerca vocale""Cancella query""Altre opzioni""Fine""Condividi con %s""Visualizza tutte""Vai in alto""Cerca""Invia query""Condividi con""Query di ricerca""Vai alla home page""מחק שאילתה""חפש""בחר אפליקציה""ראה הכול""‏שתף עם %s""עוד אפשרויות""בוצע""שלח שאילתה""שאילתת חיפוש""נווט לדף הבית""חיפוש קולי""שתף עם""נווט למעלה""アプリの選択""検索キーワードを削除""共有""検索キーワードを送信""上へ移動""%sと共有""すべて表示""その他のオプション""検索キーワード""検索""完了""音声検索""ホームへ移動""მოთხოვნის გადაგზავნა""ხმოვანი ძიება""მოთხოვნის გასუფთავება""გაზიარება:""მეტი ვარიანტები""%s-თან გაზიარება""მთავარზე ნავიგაცია""დასრულდა""ძიება""ზემოთ ნავიგაცია""ყველას ნახვა""აპის არჩევა""ძიების მოთხოვნა""Сұрақты іздеу""Іздеу""Орындалды""%s бөлісу""Дауыс арқылы іздеу""Жоғары қозғалу""Сұрақты жіберу""Бөлісу""Сұрақты жою""Басқа опциялар""Қолданбаны таңдау""Барлығын көру""Негізгі бетте қозғалу""ជម្រើស​ច្រើន​ទៀត""រួចរាល់""សម្អាត​សំណួរ""ដាក់​​​ស្នើ​សំណួរ""ស្វែងរក​សំណួរ""ចែករំលែក​ជាមួយ %s""មើល​ទាំងអស់""ការស្វែងរក​សំឡេង""រកមើល​ឡើងលើ""ចែករំលែក​ជាមួយ""រកមើល​ទៅ​ដើម""ស្វែងរក""ជ្រើស​កម្មវិធី​​""ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ""ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಹುಡುಕು""ಮುಗಿದಿದೆ""ಎಲ್ಲವನ್ನೂ ನೋಡಿ""ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು""ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ""ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು""ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು""ಧ್ವನಿ ಹುಡುಕಾಟ""옵션 더보기""검색""%s와(과) 공유""검색어""위로 탐색""검색어 삭제""음성 검색""검색어 보내기""공유 대상""완료""홈 탐색""전체 보기""앱 선택""Бөлүшүү""Издөө талаптары""%s аркылуу бөлүшүү""Колдонмо тандоо""Издөө""Үйгө багыттоо""Үн аркылуу издөө""Бардыгын көрүү""Талаптарды тазалоо""Талап жөнөтүү""Даяр""Көбүрөөк мүмкүнчүлүктөр""Жогору"32dp14dptrue48dp12dp0dptrue60%192dip0px64dp \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/circlerefresh/build/intermediates/incremental/packageDebugResources/compile-file-map.properties new file mode 100644 index 0000000..afbb079 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/packageDebugResources/compile-file-map.properties @@ -0,0 +1,7 @@ +#Wed Jan 11 02:14:18 CST 2017 +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/menu/menu_main.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/menu/menu_main.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/mipmap-xxhdpi/ic_launcher.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/mipmap-xxhdpi-v4/ic_launcher.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/layout/activity_main.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/layout/activity_main.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/mipmap-mdpi/ic_launcher.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/mipmap-mdpi-v4/ic_launcher.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/mipmap-xhdpi/ic_launcher.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/mipmap-xhdpi-v4/ic_launcher.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/mipmap-hdpi/ic_launcher.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/debug/res/mipmap-hdpi-v4/ic_launcher.png diff --git a/circlerefresh/build/intermediates/incremental/packageDebugResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml b/circlerefresh/build/intermediates/incremental/packageDebugResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml new file mode 100644 index 0000000..3eda5f5 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/packageDebugResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml @@ -0,0 +1,4 @@ + + + 64dp + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml b/circlerefresh/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml new file mode 100644 index 0000000..eb41087 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml @@ -0,0 +1,12 @@ + + + + 16dp + 16dp + Settings + CircleRefresh + Hello world! + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/packageDebugResources/merger.xml b/circlerefresh/build/intermediates/incremental/packageDebugResources/merger.xml new file mode 100644 index 0000000..4f39912 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/packageDebugResources/merger.xml @@ -0,0 +1,8 @@ + + + + + + 16dp16dpHello world!SettingsCircleRefresh64dp \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties b/circlerefresh/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties new file mode 100644 index 0000000..12b5b79 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties @@ -0,0 +1,7 @@ +#Wed Jan 11 02:14:10 CST 2017 +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/menu/menu_main.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/release/res/menu/menu_main.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/mipmap-xxhdpi/ic_launcher.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/release/res/mipmap-xxhdpi-v4/ic_launcher.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/layout/activity_main.xml=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/release/res/layout/activity_main.xml +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/mipmap-mdpi/ic_launcher.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/release/res/mipmap-mdpi-v4/ic_launcher.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/mipmap-xhdpi/ic_launcher.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/release/res/mipmap-xhdpi-v4/ic_launcher.png +/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/src/main/res/mipmap-hdpi/ic_launcher.png=/Users/Vurtex/Documents/GitHub/CircleRefreshLayout/circlerefresh/build/intermediates/bundles/release/res/mipmap-hdpi-v4/ic_launcher.png diff --git a/circlerefresh/build/intermediates/incremental/packageReleaseResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml b/circlerefresh/build/intermediates/incremental/packageReleaseResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml new file mode 100644 index 0000000..3eda5f5 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/packageReleaseResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml @@ -0,0 +1,4 @@ + + + 64dp + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/packageReleaseResources/merged.dir/values/values.xml b/circlerefresh/build/intermediates/incremental/packageReleaseResources/merged.dir/values/values.xml new file mode 100644 index 0000000..eb41087 --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/packageReleaseResources/merged.dir/values/values.xml @@ -0,0 +1,12 @@ + + + + 16dp + 16dp + Settings + CircleRefresh + Hello world! + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/packageReleaseResources/merger.xml b/circlerefresh/build/intermediates/incremental/packageReleaseResources/merger.xml new file mode 100644 index 0000000..4a9374e --- /dev/null +++ b/circlerefresh/build/intermediates/incremental/packageReleaseResources/merger.xml @@ -0,0 +1,8 @@ + + + + + + 16dp16dpHello world!SettingsCircleRefresh64dp \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/packageResources/debug/merger.xml b/circlerefresh/build/intermediates/incremental/packageResources/debug/merger.xml deleted file mode 100644 index be5ffa4..0000000 --- a/circlerefresh/build/intermediates/incremental/packageResources/debug/merger.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - 16dp16dpHello world!SettingsCircleRefresh64dp \ No newline at end of file diff --git a/circlerefresh/build/intermediates/incremental/packageResources/release/merger.xml b/circlerefresh/build/intermediates/incremental/packageResources/release/merger.xml deleted file mode 100644 index cedfe97..0000000 --- a/circlerefresh/build/intermediates/incremental/packageResources/release/merger.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - 16dp16dpHello world!SettingsCircleRefresh64dp \ No newline at end of file diff --git a/circlerefresh/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml b/circlerefresh/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml new file mode 100644 index 0000000..da80d7a --- /dev/null +++ b/circlerefresh/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/bundles/release/aapt/AndroidManifest.xml b/circlerefresh/build/intermediates/manifests/aapt/debug/AndroidManifest.xml similarity index 100% rename from circlerefresh/build/intermediates/bundles/release/aapt/AndroidManifest.xml rename to circlerefresh/build/intermediates/manifests/aapt/debug/AndroidManifest.xml diff --git a/circlerefresh/build/intermediates/manifests/aapt/release/AndroidManifest.xml b/circlerefresh/build/intermediates/manifests/aapt/release/AndroidManifest.xml new file mode 100644 index 0000000..19ffe58 --- /dev/null +++ b/circlerefresh/build/intermediates/manifests/aapt/release/AndroidManifest.xml @@ -0,0 +1,17 @@ + + + + + + + + \ No newline at end of file diff --git a/circlerefresh/build/intermediates/manifests/androidTest/debug/AndroidManifest.xml b/circlerefresh/build/intermediates/manifests/androidTest/debug/AndroidManifest.xml deleted file mode 100644 index 2f26963..0000000 --- a/circlerefresh/build/intermediates/manifests/androidTest/debug/AndroidManifest.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/manifests/tmp/manifestMerger873849283037843216.xml b/circlerefresh/build/intermediates/manifests/tmp/manifestMerger873849283037843216.xml deleted file mode 100644 index 2c449dc..0000000 --- a/circlerefresh/build/intermediates/manifests/tmp/manifestMerger873849283037843216.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_fade_in.xml b/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_fade_in.xml deleted file mode 100644 index 83c05fd..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_fade_in.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_fade_out.xml b/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_fade_out.xml deleted file mode 100644 index a95ad32..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_fade_out.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_grow_fade_in_from_bottom.xml b/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_grow_fade_in_from_bottom.xml deleted file mode 100644 index c7f2387..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_grow_fade_in_from_bottom.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_popup_enter.xml b/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_popup_enter.xml deleted file mode 100644 index 76345d0..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_popup_enter.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_popup_exit.xml b/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_popup_exit.xml deleted file mode 100644 index b5d7297..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_popup_exit.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_shrink_fade_out_from_bottom.xml b/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_shrink_fade_out_from_bottom.xml deleted file mode 100644 index 5539aaf..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_shrink_fade_out_from_bottom.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_slide_in_bottom.xml b/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_slide_in_bottom.xml deleted file mode 100644 index 1b50019..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_slide_in_bottom.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_slide_in_top.xml b/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_slide_in_top.xml deleted file mode 100644 index 34d9899..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_slide_in_top.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_slide_out_bottom.xml b/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_slide_out_bottom.xml deleted file mode 100644 index 503d013..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_slide_out_bottom.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_slide_out_top.xml b/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_slide_out_top.xml deleted file mode 100644 index 4ca065c..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/anim/abc_slide_out_top.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml b/circlerefresh/build/intermediates/res/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml deleted file mode 100644 index e7a4482..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_light.xml b/circlerefresh/build/intermediates/res/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_light.xml deleted file mode 100644 index c336b78..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/color-v11/abc_background_cache_hint_selector_material_light.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_background_cache_hint_selector_material_dark.xml b/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_background_cache_hint_selector_material_dark.xml deleted file mode 100644 index b457cfb..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_background_cache_hint_selector_material_dark.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_background_cache_hint_selector_material_light.xml b/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_background_cache_hint_selector_material_light.xml deleted file mode 100644 index 51aa31f..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_background_cache_hint_selector_material_light.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_primary_text_disable_only_material_dark.xml b/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_primary_text_disable_only_material_dark.xml deleted file mode 100644 index e53a261..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_primary_text_disable_only_material_dark.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_primary_text_disable_only_material_light.xml b/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_primary_text_disable_only_material_light.xml deleted file mode 100644 index 82d015a..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_primary_text_disable_only_material_light.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_primary_text_material_dark.xml b/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_primary_text_material_dark.xml deleted file mode 100644 index 6cd3631..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_primary_text_material_dark.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_primary_text_material_light.xml b/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_primary_text_material_light.xml deleted file mode 100644 index 4b9a59b..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_primary_text_material_light.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_search_url_text.xml b/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_search_url_text.xml deleted file mode 100644 index 2f9495c..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_search_url_text.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_secondary_text_material_dark.xml b/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_secondary_text_material_dark.xml deleted file mode 100644 index 27eb4e5..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_secondary_text_material_dark.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_secondary_text_material_light.xml b/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_secondary_text_material_light.xml deleted file mode 100644 index 984f7ac..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/color/abc_secondary_text_material_light.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/color/switch_thumb_material_dark.xml b/circlerefresh/build/intermediates/res/androidTest/debug/color/switch_thumb_material_dark.xml deleted file mode 100644 index a6d7488..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/color/switch_thumb_material_dark.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/color/switch_thumb_material_light.xml b/circlerefresh/build/intermediates/res/androidTest/debug/color/switch_thumb_material_light.xml deleted file mode 100644 index 4af30a1..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/color/switch_thumb_material_light.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png deleted file mode 100644 index cbc36f6..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png deleted file mode 100644 index c31cf86..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png deleted file mode 100644 index 90e9c39..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png deleted file mode 100644 index fb38e86..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png deleted file mode 100644 index d8f877f..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png deleted file mode 100644 index cc4c713..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index 7abd12b..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png deleted file mode 100644 index 9240aed..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png deleted file mode 100644 index f35df93..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index 93577af..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index 02c783f..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png deleted file mode 100644 index ef8c2b0..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png deleted file mode 100644 index 2bd4fc1..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png deleted file mode 100644 index 3a7e98a..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png deleted file mode 100644 index 4e921f0..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png deleted file mode 100644 index 140c1b2..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png deleted file mode 100644 index 4f175a0..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index e2414d4..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index 8e6b11f..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index 4e8ffd4..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index fba9cdb..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index 12210f3..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index 03f5115..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index 316b535..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index be4b613..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index 514a08c..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index 0ff2b9f..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index a988bff..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index 3270585..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index 60d647d..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index 42ee760..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index 241df42..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png deleted file mode 100644 index 441869a..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png deleted file mode 100644 index 3a6dfe5..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png deleted file mode 100644 index bbd2930..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png deleted file mode 100644 index a0b4fda..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png deleted file mode 100644 index 2677759..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png deleted file mode 100644 index a3f43bd..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index 01316d7..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png deleted file mode 100644 index 84a05d3..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png deleted file mode 100644 index 74e80d6..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index eb051f7..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index 0b6e858..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png deleted file mode 100644 index d7c003e..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png deleted file mode 100644 index e3d41d4..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png deleted file mode 100644 index c33227f..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png deleted file mode 100644 index d9352a2..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png deleted file mode 100644 index 4e144e6..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png deleted file mode 100644 index fe13750..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png deleted file mode 100644 index 6b754b2..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png deleted file mode 100644 index 2cb1fad..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png deleted file mode 100644 index 19c161d..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png deleted file mode 100644 index a11a793..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png deleted file mode 100644 index a5c3b6a..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png deleted file mode 100644 index 1014888..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index 253c4ce..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png deleted file mode 100644 index c75b932..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png deleted file mode 100644 index 9861e96..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index cc41394..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index 4f400a4..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png deleted file mode 100644 index c695e31..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png deleted file mode 100644 index 0ed85a8..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png deleted file mode 100644 index 646caba..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png deleted file mode 100644 index 65ae95b..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png deleted file mode 100644 index 3d3b511..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png deleted file mode 100644 index ce673e3..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png deleted file mode 100644 index 96c5ead..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png deleted file mode 100644 index ea9f8a0..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png deleted file mode 100644 index 9e8a671..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png deleted file mode 100644 index d818583..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png deleted file mode 100644 index a14548b..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png deleted file mode 100644 index 490098c..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index eceafab..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png deleted file mode 100644 index cd20661..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png deleted file mode 100644 index 00659e6..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index dafc1a6..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index 0e7fed5..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png deleted file mode 100644 index 575aa76..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png deleted file mode 100644 index db4091c..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png deleted file mode 100644 index ce16e11..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png deleted file mode 100644 index 5457ef9..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png deleted file mode 100644 index dd04580..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png deleted file mode 100644 index b510682..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png deleted file mode 100644 index c4f38cc..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png deleted file mode 100644 index 93ff40e..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png deleted file mode 100644 index 9bd5dda..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png deleted file mode 100644 index a4d9e8e..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png deleted file mode 100644 index 8287475..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png deleted file mode 100644 index 45d0100..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png deleted file mode 100644 index 56e1347..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png deleted file mode 100644 index e80690a..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png deleted file mode 100644 index 1fb028a..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png deleted file mode 100644 index 0341a44..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png deleted file mode 100644 index be3c6fe..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png deleted file mode 100644 index 10fe9fb..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png deleted file mode 100644 index 398ae02..0000000 Binary files a/circlerefresh/build/intermediates/res/androidTest/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_btn_borderless_material.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_btn_borderless_material.xml deleted file mode 100644 index edd11be..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_btn_borderless_material.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_btn_check_material.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_btn_check_material.xml deleted file mode 100644 index 891c0e8..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_btn_check_material.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_btn_default_mtrl_shape.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_btn_default_mtrl_shape.xml deleted file mode 100644 index a153917..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_btn_default_mtrl_shape.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_btn_radio_material.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_btn_radio_material.xml deleted file mode 100644 index 845d0f9..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_btn_radio_material.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_cab_background_internal_bg.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_cab_background_internal_bg.xml deleted file mode 100644 index a40cece..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_cab_background_internal_bg.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_cab_background_top_material.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_cab_background_top_material.xml deleted file mode 100644 index ec05fe3..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_cab_background_top_material.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_dialog_material_background_dark.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_dialog_material_background_dark.xml deleted file mode 100644 index aaa9e03..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_dialog_material_background_dark.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_dialog_material_background_light.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_dialog_material_background_light.xml deleted file mode 100644 index f8cf9e6..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_dialog_material_background_light.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_edit_text_material.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_edit_text_material.xml deleted file mode 100644 index 1437cdf..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_edit_text_material.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_item_background_holo_dark.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_item_background_holo_dark.xml deleted file mode 100644 index 557f835..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_item_background_holo_dark.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_item_background_holo_light.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_item_background_holo_light.xml deleted file mode 100644 index b362b01..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_item_background_holo_light.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_list_selector_background_transition_holo_dark.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_list_selector_background_transition_holo_dark.xml deleted file mode 100644 index 902e6a5..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_list_selector_background_transition_holo_dark.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_list_selector_background_transition_holo_light.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_list_selector_background_transition_holo_light.xml deleted file mode 100644 index e2f4107..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_list_selector_background_transition_holo_light.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_list_selector_holo_dark.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_list_selector_holo_dark.xml deleted file mode 100644 index 5e21b10..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_list_selector_holo_dark.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_list_selector_holo_light.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_list_selector_holo_light.xml deleted file mode 100644 index 1bf87f3..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_list_selector_holo_light.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_ratingbar_full_material.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_ratingbar_full_material.xml deleted file mode 100644 index 72e94e4..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_ratingbar_full_material.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_spinner_textfield_background_material.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_spinner_textfield_background_material.xml deleted file mode 100644 index 5fc873d..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_spinner_textfield_background_material.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_switch_thumb_material.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_switch_thumb_material.xml deleted file mode 100644 index 46f9405..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_switch_thumb_material.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_tab_indicator_material.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_tab_indicator_material.xml deleted file mode 100644 index 902b32f..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_tab_indicator_material.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_textfield_search_material.xml b/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_textfield_search_material.xml deleted file mode 100644 index b58548b..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/drawable/abc_textfield_search_material.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/layout-v11/abc_screen_content_include.xml b/circlerefresh/build/intermediates/res/androidTest/debug/layout-v11/abc_screen_content_include.xml deleted file mode 100644 index 23e5c2e..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/layout-v11/abc_screen_content_include.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_bar_title_item.xml b/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_bar_title_item.xml deleted file mode 100644 index 0adef12..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_bar_title_item.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_bar_up_container.xml b/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_bar_up_container.xml deleted file mode 100644 index 56261e4..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_bar_up_container.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_bar_view_list_nav_layout.xml b/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_bar_view_list_nav_layout.xml deleted file mode 100644 index aa34cee..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_bar_view_list_nav_layout.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_menu_item_layout.xml b/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_menu_item_layout.xml deleted file mode 100644 index 142dbb5..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_menu_item_layout.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_menu_layout.xml b/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_menu_layout.xml deleted file mode 100644 index 2149995..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_menu_layout.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_mode_bar.xml b/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_mode_bar.xml deleted file mode 100644 index 7f7f287..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_mode_bar.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_mode_close_item_material.xml b/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_mode_close_item_material.xml deleted file mode 100644 index 5b20a5c..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_action_mode_close_item_material.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_activity_chooser_view.xml b/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_activity_chooser_view.xml deleted file mode 100644 index c1f2bd6..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_activity_chooser_view.xml +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_activity_chooser_view_list_item.xml b/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_activity_chooser_view_list_item.xml deleted file mode 100644 index 7f13c74..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_activity_chooser_view_list_item.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_alert_dialog_material.xml b/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_alert_dialog_material.xml deleted file mode 100644 index 5712376..0000000 --- a/circlerefresh/build/intermediates/res/androidTest/debug/layout/abc_alert_dialog_material.xml +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -