diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..bdb0cab --- /dev/null +++ b/.gitattributes @@ -0,0 +1,17 @@ +# Auto detect text files and perform LF normalization +* text=auto + +# Custom for Visual Studio +*.cs diff=csharp + +# Standard to msysgit +*.doc diff=astextplain +*.DOC diff=astextplain +*.docx diff=astextplain +*.DOCX diff=astextplain +*.dot diff=astextplain +*.DOT diff=astextplain +*.pdf diff=astextplain +*.PDF diff=astextplain +*.rtf diff=astextplain +*.RTF diff=astextplain diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cd2946a --- /dev/null +++ b/.gitignore @@ -0,0 +1,47 @@ +# Windows image file caches +Thumbs.db +ehthumbs.db + +# Folder config file +Desktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msm +*.msp + +# Windows shortcuts +*.lnk + +# ========================= +# Operating System Files +# ========================= + +# OSX +# ========================= + +.DS_Store +.AppleDouble +.LSOverride + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk diff --git a/GPS/.gitignore b/GPS/.gitignore new file mode 100644 index 0000000..c6cbe56 --- /dev/null +++ b/GPS/.gitignore @@ -0,0 +1,8 @@ +*.iml +.gradle +/local.properties +/.idea/workspace.xml +/.idea/libraries +.DS_Store +/build +/captures diff --git a/GPS/.idea/.name b/GPS/.idea/.name new file mode 100644 index 0000000..bded522 --- /dev/null +++ b/GPS/.idea/.name @@ -0,0 +1 @@ +GPS \ No newline at end of file diff --git a/GPS/.idea/compiler.xml b/GPS/.idea/compiler.xml new file mode 100644 index 0000000..96cc43e --- /dev/null +++ b/GPS/.idea/compiler.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/GPS/.idea/copyright/profiles_settings.xml b/GPS/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000..e7bedf3 --- /dev/null +++ b/GPS/.idea/copyright/profiles_settings.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/GPS/.idea/encodings.xml b/GPS/.idea/encodings.xml new file mode 100644 index 0000000..97626ba --- /dev/null +++ b/GPS/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/GPS/.idea/gradle.xml b/GPS/.idea/gradle.xml new file mode 100644 index 0000000..76e6e14 --- /dev/null +++ b/GPS/.idea/gradle.xml @@ -0,0 +1,19 @@ + + + + + + \ No newline at end of file diff --git a/GPS/.idea/misc.xml b/GPS/.idea/misc.xml new file mode 100644 index 0000000..5d19981 --- /dev/null +++ b/GPS/.idea/misc.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/GPS/.idea/modules.xml b/GPS/.idea/modules.xml new file mode 100644 index 0000000..05c5b44 --- /dev/null +++ b/GPS/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/GPS/.idea/runConfigurations.xml b/GPS/.idea/runConfigurations.xml new file mode 100644 index 0000000..7f68460 --- /dev/null +++ b/GPS/.idea/runConfigurations.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/GPS/.idea/vcs.xml b/GPS/.idea/vcs.xml new file mode 100644 index 0000000..6564d52 --- /dev/null +++ b/GPS/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/GPS/app/.gitignore b/GPS/app/.gitignore new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/GPS/app/.gitignore @@ -0,0 +1 @@ + diff --git a/GPS/app/build.gradle b/GPS/app/build.gradle new file mode 100644 index 0000000..284d526 --- /dev/null +++ b/GPS/app/build.gradle @@ -0,0 +1,28 @@ +apply plugin: 'com.android.application' + +android { + compileSdkVersion 23 + buildToolsVersion "23.0.2" + + defaultConfig { + applicationId "com.example.user.gps" + minSdkVersion 16 + targetSdkVersion 23 + versionCode 1 + versionName "1.0" + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } +} + +dependencies { + compile fileTree(dir: 'libs', include: ['*.jar']) + testCompile 'junit:junit:4.12' + compile 'com.android.support:appcompat-v7:23.1.1' + compile 'com.google.android.gms:play-services:8.4.0' + compile 'com.android.support:design:23.1.1' +} diff --git a/GPS/app/build/generated/source/buildConfig/androidTest/debug/com/example/user/gps/test/BuildConfig.java b/GPS/app/build/generated/source/buildConfig/androidTest/debug/com/example/user/gps/test/BuildConfig.java new file mode 100644 index 0000000..fbbd550 --- /dev/null +++ b/GPS/app/build/generated/source/buildConfig/androidTest/debug/com/example/user/gps/test/BuildConfig.java @@ -0,0 +1,13 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package com.example.user.gps.test; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String APPLICATION_ID = "com.example.user.gps.test"; + public static final String BUILD_TYPE = "debug"; + public static final String FLAVOR = ""; + public static final int VERSION_CODE = 1; + public static final String VERSION_NAME = "1.0"; +} diff --git a/GPS/app/build/generated/source/buildConfig/debug/com/example/user/gps/BuildConfig.java b/GPS/app/build/generated/source/buildConfig/debug/com/example/user/gps/BuildConfig.java new file mode 100644 index 0000000..fe3d43c --- /dev/null +++ b/GPS/app/build/generated/source/buildConfig/debug/com/example/user/gps/BuildConfig.java @@ -0,0 +1,13 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package com.example.user.gps; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String APPLICATION_ID = "com.example.user.gps"; + public static final String BUILD_TYPE = "debug"; + public static final String FLAVOR = ""; + public static final int VERSION_CODE = 1; + public static final String VERSION_NAME = "1.0"; +} diff --git a/GPS/app/build/generated/source/r/debug/android/support/design/R.java b/GPS/app/build/generated/source/r/debug/android/support/design/R.java new file mode 100644 index 0000000..e2ef0c0 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/android/support/design/R.java @@ -0,0 +1,1527 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ +package android.support.design; + +public final class R { + public static final class anim { + public static final int abc_fade_in = 0x7f050000; + public static final int abc_fade_out = 0x7f050001; + public static final int abc_grow_fade_in_from_bottom = 0x7f050002; + public static final int abc_popup_enter = 0x7f050003; + public static final int abc_popup_exit = 0x7f050004; + public static final int abc_shrink_fade_out_from_bottom = 0x7f050005; + public static final int abc_slide_in_bottom = 0x7f050006; + public static final int abc_slide_in_top = 0x7f050007; + public static final int abc_slide_out_bottom = 0x7f050008; + public static final int abc_slide_out_top = 0x7f050009; + public static final int design_fab_in = 0x7f05000a; + public static final int design_fab_out = 0x7f05000b; + public static final int design_snackbar_in = 0x7f05000c; + public static final int design_snackbar_out = 0x7f05000d; + } + public static final class attr { + public static final int actionBarDivider = 0x7f0100c9; + public static final int actionBarItemBackground = 0x7f0100ca; + public static final int actionBarPopupTheme = 0x7f0100c3; + public static final int actionBarSize = 0x7f0100c8; + public static final int actionBarSplitStyle = 0x7f0100c5; + public static final int actionBarStyle = 0x7f0100c4; + public static final int actionBarTabBarStyle = 0x7f0100bf; + public static final int actionBarTabStyle = 0x7f0100be; + public static final int actionBarTabTextStyle = 0x7f0100c0; + public static final int actionBarTheme = 0x7f0100c6; + public static final int actionBarWidgetTheme = 0x7f0100c7; + public static final int actionButtonStyle = 0x7f0100e3; + public static final int actionDropDownStyle = 0x7f0100df; + public static final int actionLayout = 0x7f010072; + public static final int actionMenuTextAppearance = 0x7f0100cb; + public static final int actionMenuTextColor = 0x7f0100cc; + public static final int actionModeBackground = 0x7f0100cf; + public static final int actionModeCloseButtonStyle = 0x7f0100ce; + public static final int actionModeCloseDrawable = 0x7f0100d1; + public static final int actionModeCopyDrawable = 0x7f0100d3; + public static final int actionModeCutDrawable = 0x7f0100d2; + public static final int actionModeFindDrawable = 0x7f0100d7; + public static final int actionModePasteDrawable = 0x7f0100d4; + public static final int actionModePopupWindowStyle = 0x7f0100d9; + public static final int actionModeSelectAllDrawable = 0x7f0100d5; + public static final int actionModeShareDrawable = 0x7f0100d6; + public static final int actionModeSplitBackground = 0x7f0100d0; + public static final int actionModeStyle = 0x7f0100cd; + public static final int actionModeWebSearchDrawable = 0x7f0100d8; + public static final int actionOverflowButtonStyle = 0x7f0100c1; + public static final int actionOverflowMenuStyle = 0x7f0100c2; + public static final int actionProviderClass = 0x7f010074; + public static final int actionViewClass = 0x7f010073; + public static final int activityChooserViewStyle = 0x7f0100eb; + public static final int alertDialogButtonGroupStyle = 0x7f01010e; + public static final int alertDialogCenterButtons = 0x7f01010f; + public static final int alertDialogStyle = 0x7f01010d; + public static final int alertDialogTheme = 0x7f010110; + public static final int allowStacking = 0x7f010033; + public static final int arrowHeadLength = 0x7f010050; + public static final int arrowShaftLength = 0x7f010051; + public static final int autoCompleteTextViewStyle = 0x7f010115; + public static final int background = 0x7f010014; + public static final int backgroundSplit = 0x7f010016; + public static final int backgroundStacked = 0x7f010015; + public static final int backgroundTint = 0x7f010132; + public static final int backgroundTintMode = 0x7f010133; + public static final int barLength = 0x7f010052; + public static final int behavior_overlapTop = 0x7f010083; + public static final int borderWidth = 0x7f010057; + public static final int borderlessButtonStyle = 0x7f0100e8; + public static final int buttonBarButtonStyle = 0x7f0100e5; + public static final int buttonBarNegativeButtonStyle = 0x7f010113; + public static final int buttonBarNeutralButtonStyle = 0x7f010114; + public static final int buttonBarPositiveButtonStyle = 0x7f010112; + public static final int buttonBarStyle = 0x7f0100e4; + public static final int buttonPanelSideLayout = 0x7f01002a; + public static final int buttonStyle = 0x7f010116; + public static final int buttonStyleSmall = 0x7f010117; + public static final int buttonTint = 0x7f010043; + public static final int buttonTintMode = 0x7f010044; + public static final int checkboxStyle = 0x7f010118; + public static final int checkedTextViewStyle = 0x7f010119; + public static final int closeIcon = 0x7f010088; + public static final int closeItemLayout = 0x7f010024; + public static final int collapseContentDescription = 0x7f010129; + public static final int collapseIcon = 0x7f010128; + public static final int collapsedTitleGravity = 0x7f010040; + public static final int collapsedTitleTextAppearance = 0x7f01003c; + public static final int color = 0x7f01004c; + public static final int colorAccent = 0x7f010106; + public static final int colorButtonNormal = 0x7f01010a; + public static final int colorControlActivated = 0x7f010108; + public static final int colorControlHighlight = 0x7f010109; + public static final int colorControlNormal = 0x7f010107; + public static final int colorPrimary = 0x7f010104; + public static final int colorPrimaryDark = 0x7f010105; + public static final int colorSwitchThumbNormal = 0x7f01010b; + public static final int commitIcon = 0x7f01008d; + public static final int contentInsetEnd = 0x7f01001f; + public static final int contentInsetLeft = 0x7f010020; + public static final int contentInsetRight = 0x7f010021; + public static final int contentInsetStart = 0x7f01001e; + public static final int contentScrim = 0x7f01003d; + public static final int controlBackground = 0x7f01010c; + public static final int counterEnabled = 0x7f0100af; + public static final int counterMaxLength = 0x7f0100b0; + public static final int counterOverflowTextAppearance = 0x7f0100b2; + public static final int counterTextAppearance = 0x7f0100b1; + public static final int customNavigationLayout = 0x7f010017; + public static final int defaultQueryHint = 0x7f010087; + public static final int dialogPreferredPadding = 0x7f0100dd; + public static final int dialogTheme = 0x7f0100dc; + public static final int displayOptions = 0x7f01000d; + public static final int divider = 0x7f010013; + public static final int dividerHorizontal = 0x7f0100ea; + public static final int dividerPadding = 0x7f01005b; + public static final int dividerVertical = 0x7f0100e9; + public static final int drawableSize = 0x7f01004e; + public static final int drawerArrowStyle = 0x7f010000; + public static final int dropDownListViewStyle = 0x7f0100fc; + public static final int dropdownListPreferredItemHeight = 0x7f0100e0; + public static final int editTextBackground = 0x7f0100f1; + public static final int editTextColor = 0x7f0100f0; + public static final int editTextStyle = 0x7f01011a; + public static final int elevation = 0x7f010022; + public static final int errorEnabled = 0x7f0100ad; + public static final int errorTextAppearance = 0x7f0100ae; + public static final int expandActivityOverflowButtonDrawable = 0x7f010026; + public static final int expanded = 0x7f01002f; + public static final int expandedTitleGravity = 0x7f010041; + public static final int expandedTitleMargin = 0x7f010036; + public static final int expandedTitleMarginBottom = 0x7f01003a; + public static final int expandedTitleMarginEnd = 0x7f010039; + public static final int expandedTitleMarginStart = 0x7f010037; + public static final int expandedTitleMarginTop = 0x7f010038; + public static final int expandedTitleTextAppearance = 0x7f01003b; + public static final int fabSize = 0x7f010055; + public static final int foregroundInsidePadding = 0x7f010058; + public static final int gapBetweenBars = 0x7f01004f; + public static final int goIcon = 0x7f010089; + public static final int headerLayout = 0x7f01007b; + public static final int height = 0x7f010001; + public static final int hideOnContentScroll = 0x7f01001d; + public static final int hintAnimationEnabled = 0x7f0100b3; + public static final int hintTextAppearance = 0x7f0100ac; + public static final int homeAsUpIndicator = 0x7f0100e2; + public static final int homeLayout = 0x7f010018; + public static final int icon = 0x7f010011; + public static final int iconifiedByDefault = 0x7f010085; + public static final int imageButtonStyle = 0x7f0100f2; + public static final int indeterminateProgressStyle = 0x7f01001a; + public static final int initialActivityCount = 0x7f010025; + public static final int insetForeground = 0x7f010082; + public static final int isLightTheme = 0x7f010002; + public static final int itemBackground = 0x7f010079; + public static final int itemIconTint = 0x7f010077; + public static final int itemPadding = 0x7f01001c; + public static final int itemTextAppearance = 0x7f01007a; + public static final int itemTextColor = 0x7f010078; + public static final int keylines = 0x7f010045; + public static final int layout = 0x7f010084; + public static final int layoutManager = 0x7f01007e; + public static final int layout_anchor = 0x7f010048; + public static final int layout_anchorGravity = 0x7f01004a; + public static final int layout_behavior = 0x7f010047; + public static final int layout_collapseMode = 0x7f010034; + public static final int layout_collapseParallaxMultiplier = 0x7f010035; + public static final int layout_keyline = 0x7f010049; + public static final int layout_scrollFlags = 0x7f010030; + public static final int layout_scrollInterpolator = 0x7f010031; + public static final int listChoiceBackgroundIndicator = 0x7f010103; + public static final int listDividerAlertDialog = 0x7f0100de; + public static final int listItemLayout = 0x7f01002e; + public static final int listLayout = 0x7f01002b; + public static final int listPopupWindowStyle = 0x7f0100fd; + public static final int listPreferredItemHeight = 0x7f0100f7; + public static final int listPreferredItemHeightLarge = 0x7f0100f9; + public static final int listPreferredItemHeightSmall = 0x7f0100f8; + public static final int listPreferredItemPaddingLeft = 0x7f0100fa; + public static final int listPreferredItemPaddingRight = 0x7f0100fb; + public static final int logo = 0x7f010012; + public static final int logoDescription = 0x7f01012c; + public static final int maxActionInlineWidth = 0x7f010094; + public static final int maxButtonHeight = 0x7f010127; + public static final int measureWithLargestChild = 0x7f010059; + public static final int menu = 0x7f010076; + public static final int multiChoiceItemLayout = 0x7f01002c; + public static final int navigationContentDescription = 0x7f01012b; + public static final int navigationIcon = 0x7f01012a; + public static final int navigationMode = 0x7f01000c; + public static final int overlapAnchor = 0x7f01007c; + public static final int paddingEnd = 0x7f010130; + public static final int paddingStart = 0x7f01012f; + public static final int panelBackground = 0x7f010100; + public static final int panelMenuListTheme = 0x7f010102; + public static final int panelMenuListWidth = 0x7f010101; + public static final int popupMenuStyle = 0x7f0100ee; + public static final int popupTheme = 0x7f010023; + public static final int popupWindowStyle = 0x7f0100ef; + public static final int preserveIconSpacing = 0x7f010075; + public static final int pressedTranslationZ = 0x7f010056; + public static final int progressBarPadding = 0x7f01001b; + public static final int progressBarStyle = 0x7f010019; + public static final int queryBackground = 0x7f01008f; + public static final int queryHint = 0x7f010086; + public static final int radioButtonStyle = 0x7f01011b; + public static final int ratingBarStyle = 0x7f01011c; + public static final int reverseLayout = 0x7f010080; + public static final int rippleColor = 0x7f010054; + public static final int searchHintIcon = 0x7f01008b; + public static final int searchIcon = 0x7f01008a; + public static final int searchViewStyle = 0x7f0100f6; + public static final int seekBarStyle = 0x7f01011d; + public static final int selectableItemBackground = 0x7f0100e6; + public static final int selectableItemBackgroundBorderless = 0x7f0100e7; + public static final int showAsAction = 0x7f010071; + public static final int showDividers = 0x7f01005a; + public static final int showText = 0x7f01009b; + public static final int singleChoiceItemLayout = 0x7f01002d; + public static final int spanCount = 0x7f01007f; + public static final int spinBars = 0x7f01004d; + public static final int spinnerDropDownItemStyle = 0x7f0100e1; + public static final int spinnerStyle = 0x7f01011e; + public static final int splitTrack = 0x7f01009a; + public static final int stackFromEnd = 0x7f010081; + public static final int state_above_anchor = 0x7f01007d; + public static final int statusBarBackground = 0x7f010046; + public static final int statusBarScrim = 0x7f01003e; + public static final int submitBackground = 0x7f010090; + public static final int subtitle = 0x7f01000e; + public static final int subtitleTextAppearance = 0x7f010121; + public static final int subtitleTextColor = 0x7f01012e; + public static final int subtitleTextStyle = 0x7f010010; + public static final int suggestionRowLayout = 0x7f01008e; + public static final int switchMinWidth = 0x7f010098; + public static final int switchPadding = 0x7f010099; + public static final int switchStyle = 0x7f01011f; + public static final int switchTextAppearance = 0x7f010097; + public static final int tabBackground = 0x7f01009f; + public static final int tabContentStart = 0x7f01009e; + public static final int tabGravity = 0x7f0100a1; + public static final int tabIndicatorColor = 0x7f01009c; + public static final int tabIndicatorHeight = 0x7f01009d; + public static final int tabMaxWidth = 0x7f0100a3; + public static final int tabMinWidth = 0x7f0100a2; + public static final int tabMode = 0x7f0100a0; + public static final int tabPadding = 0x7f0100ab; + public static final int tabPaddingBottom = 0x7f0100aa; + public static final int tabPaddingEnd = 0x7f0100a9; + public static final int tabPaddingStart = 0x7f0100a7; + public static final int tabPaddingTop = 0x7f0100a8; + public static final int tabSelectedTextColor = 0x7f0100a6; + public static final int tabTextAppearance = 0x7f0100a4; + public static final int tabTextColor = 0x7f0100a5; + public static final int textAllCaps = 0x7f010032; + public static final int textAppearanceLargePopupMenu = 0x7f0100da; + public static final int textAppearanceListItem = 0x7f0100fe; + public static final int textAppearanceListItemSmall = 0x7f0100ff; + public static final int textAppearanceSearchResultSubtitle = 0x7f0100f4; + public static final int textAppearanceSearchResultTitle = 0x7f0100f3; + public static final int textAppearanceSmallPopupMenu = 0x7f0100db; + public static final int textColorAlertDialogListItem = 0x7f010111; + public static final int textColorSearchUrl = 0x7f0100f5; + public static final int theme = 0x7f010131; + public static final int thickness = 0x7f010053; + public static final int thumbTextPadding = 0x7f010096; + public static final int title = 0x7f01000b; + public static final int titleEnabled = 0x7f010042; + public static final int titleMarginBottom = 0x7f010126; + public static final int titleMarginEnd = 0x7f010124; + public static final int titleMarginStart = 0x7f010123; + public static final int titleMarginTop = 0x7f010125; + public static final int titleMargins = 0x7f010122; + public static final int titleTextAppearance = 0x7f010120; + public static final int titleTextColor = 0x7f01012d; + public static final int titleTextStyle = 0x7f01000f; + public static final int toolbarId = 0x7f01003f; + public static final int toolbarNavigationButtonStyle = 0x7f0100ed; + public static final int toolbarStyle = 0x7f0100ec; + public static final int track = 0x7f010095; + public static final int voiceIcon = 0x7f01008c; + public static final int windowActionBar = 0x7f0100b4; + public static final int windowActionBarOverlay = 0x7f0100b6; + public static final int windowActionModeOverlay = 0x7f0100b7; + public static final int windowFixedHeightMajor = 0x7f0100bb; + public static final int windowFixedHeightMinor = 0x7f0100b9; + public static final int windowFixedWidthMajor = 0x7f0100b8; + public static final int windowFixedWidthMinor = 0x7f0100ba; + public static final int windowMinWidthMajor = 0x7f0100bc; + public static final int windowMinWidthMinor = 0x7f0100bd; + public static final int windowNoTitle = 0x7f0100b5; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs = 0x7f080003; + public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f080001; + public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f080004; + public static final int abc_allow_stacked_button_bar = 0x7f080000; + public static final int abc_config_actionMenuItemAllCaps = 0x7f080005; + public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f080002; + public static final int abc_config_closeDialogWhenTouchOutside = 0x7f080006; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f080007; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark = 0x7f0d006a; + public static final int abc_background_cache_hint_selector_material_light = 0x7f0d006b; + public static final int abc_color_highlight_material = 0x7f0d006c; + public static final int abc_input_method_navigation_guard = 0x7f0d0000; + public static final int abc_primary_text_disable_only_material_dark = 0x7f0d006d; + public static final int abc_primary_text_disable_only_material_light = 0x7f0d006e; + public static final int abc_primary_text_material_dark = 0x7f0d006f; + public static final int abc_primary_text_material_light = 0x7f0d0070; + public static final int abc_search_url_text = 0x7f0d0071; + public static final int abc_search_url_text_normal = 0x7f0d0001; + public static final int abc_search_url_text_pressed = 0x7f0d0002; + public static final int abc_search_url_text_selected = 0x7f0d0003; + public static final int abc_secondary_text_material_dark = 0x7f0d0072; + public static final int abc_secondary_text_material_light = 0x7f0d0073; + public static final int accent_material_dark = 0x7f0d0004; + public static final int accent_material_light = 0x7f0d0005; + public static final int background_floating_material_dark = 0x7f0d0006; + public static final int background_floating_material_light = 0x7f0d0007; + public static final int background_material_dark = 0x7f0d0008; + public static final int background_material_light = 0x7f0d0009; + public static final int bright_foreground_disabled_material_dark = 0x7f0d000a; + public static final int bright_foreground_disabled_material_light = 0x7f0d000b; + public static final int bright_foreground_inverse_material_dark = 0x7f0d000c; + public static final int bright_foreground_inverse_material_light = 0x7f0d000d; + public static final int bright_foreground_material_dark = 0x7f0d000e; + public static final int bright_foreground_material_light = 0x7f0d000f; + public static final int button_material_dark = 0x7f0d0010; + public static final int button_material_light = 0x7f0d0011; + public static final int design_fab_shadow_end_color = 0x7f0d0026; + public static final int design_fab_shadow_mid_color = 0x7f0d0027; + public static final int design_fab_shadow_start_color = 0x7f0d0028; + public static final int design_fab_stroke_end_inner_color = 0x7f0d0029; + public static final int design_fab_stroke_end_outer_color = 0x7f0d002a; + public static final int design_fab_stroke_top_inner_color = 0x7f0d002b; + public static final int design_fab_stroke_top_outer_color = 0x7f0d002c; + public static final int design_snackbar_background_color = 0x7f0d002d; + public static final int design_textinput_error_color = 0x7f0d002e; + public static final int dim_foreground_disabled_material_dark = 0x7f0d002f; + public static final int dim_foreground_disabled_material_light = 0x7f0d0030; + public static final int dim_foreground_material_dark = 0x7f0d0031; + public static final int dim_foreground_material_light = 0x7f0d0032; + public static final int foreground_material_dark = 0x7f0d0033; + public static final int foreground_material_light = 0x7f0d0034; + public static final int highlighted_text_material_dark = 0x7f0d0035; + public static final int highlighted_text_material_light = 0x7f0d0036; + public static final int hint_foreground_material_dark = 0x7f0d0037; + public static final int hint_foreground_material_light = 0x7f0d0038; + public static final int material_blue_grey_800 = 0x7f0d0039; + public static final int material_blue_grey_900 = 0x7f0d003a; + public static final int material_blue_grey_950 = 0x7f0d003b; + public static final int material_deep_teal_200 = 0x7f0d003c; + public static final int material_deep_teal_500 = 0x7f0d003d; + public static final int material_grey_100 = 0x7f0d003e; + public static final int material_grey_300 = 0x7f0d003f; + public static final int material_grey_50 = 0x7f0d0040; + public static final int material_grey_600 = 0x7f0d0041; + public static final int material_grey_800 = 0x7f0d0042; + public static final int material_grey_850 = 0x7f0d0043; + public static final int material_grey_900 = 0x7f0d0044; + public static final int primary_dark_material_dark = 0x7f0d004b; + public static final int primary_dark_material_light = 0x7f0d004c; + public static final int primary_material_dark = 0x7f0d004d; + public static final int primary_material_light = 0x7f0d004e; + public static final int primary_text_default_material_dark = 0x7f0d004f; + public static final int primary_text_default_material_light = 0x7f0d0050; + public static final int primary_text_disabled_material_dark = 0x7f0d0051; + public static final int primary_text_disabled_material_light = 0x7f0d0052; + public static final int ripple_material_dark = 0x7f0d0053; + public static final int ripple_material_light = 0x7f0d0054; + public static final int secondary_text_default_material_dark = 0x7f0d0055; + public static final int secondary_text_default_material_light = 0x7f0d0056; + public static final int secondary_text_disabled_material_dark = 0x7f0d0057; + public static final int secondary_text_disabled_material_light = 0x7f0d0058; + public static final int switch_thumb_disabled_material_dark = 0x7f0d0059; + public static final int switch_thumb_disabled_material_light = 0x7f0d005a; + public static final int switch_thumb_material_dark = 0x7f0d0078; + public static final int switch_thumb_material_light = 0x7f0d0079; + public static final int switch_thumb_normal_material_dark = 0x7f0d005b; + public static final int switch_thumb_normal_material_light = 0x7f0d005c; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material = 0x7f09000d; + public static final int abc_action_bar_default_height_material = 0x7f090001; + public static final int abc_action_bar_default_padding_end_material = 0x7f09000e; + public static final int abc_action_bar_default_padding_start_material = 0x7f09000f; + public static final int abc_action_bar_icon_vertical_padding_material = 0x7f09001b; + public static final int abc_action_bar_overflow_padding_end_material = 0x7f09001c; + public static final int abc_action_bar_overflow_padding_start_material = 0x7f09001d; + public static final int abc_action_bar_progress_bar_size = 0x7f090002; + public static final int abc_action_bar_stacked_max_height = 0x7f09001e; + public static final int abc_action_bar_stacked_tab_max_width = 0x7f09001f; + public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f090020; + public static final int abc_action_bar_subtitle_top_margin_material = 0x7f090021; + public static final int abc_action_button_min_height_material = 0x7f090022; + public static final int abc_action_button_min_width_material = 0x7f090023; + public static final int abc_action_button_min_width_overflow_material = 0x7f090024; + public static final int abc_alert_dialog_button_bar_height = 0x7f090000; + public static final int abc_button_inset_horizontal_material = 0x7f090025; + public static final int abc_button_inset_vertical_material = 0x7f090026; + public static final int abc_button_padding_horizontal_material = 0x7f090027; + public static final int abc_button_padding_vertical_material = 0x7f090028; + public static final int abc_config_prefDialogWidth = 0x7f090005; + public static final int abc_control_corner_material = 0x7f090029; + public static final int abc_control_inset_material = 0x7f09002a; + public static final int abc_control_padding_material = 0x7f09002b; + public static final int abc_dialog_fixed_height_major = 0x7f090006; + public static final int abc_dialog_fixed_height_minor = 0x7f090007; + public static final int abc_dialog_fixed_width_major = 0x7f090008; + public static final int abc_dialog_fixed_width_minor = 0x7f090009; + public static final int abc_dialog_list_padding_vertical_material = 0x7f09002c; + public static final int abc_dialog_min_width_major = 0x7f09000a; + public static final int abc_dialog_min_width_minor = 0x7f09000b; + public static final int abc_dialog_padding_material = 0x7f09002d; + public static final int abc_dialog_padding_top_material = 0x7f09002e; + public static final int abc_disabled_alpha_material_dark = 0x7f09002f; + public static final int abc_disabled_alpha_material_light = 0x7f090030; + public static final int abc_dropdownitem_icon_width = 0x7f090031; + public static final int abc_dropdownitem_text_padding_left = 0x7f090032; + public static final int abc_dropdownitem_text_padding_right = 0x7f090033; + public static final int abc_edit_text_inset_bottom_material = 0x7f090034; + public static final int abc_edit_text_inset_horizontal_material = 0x7f090035; + public static final int abc_edit_text_inset_top_material = 0x7f090036; + public static final int abc_floating_window_z = 0x7f090037; + public static final int abc_list_item_padding_horizontal_material = 0x7f090038; + public static final int abc_panel_menu_list_width = 0x7f090039; + public static final int abc_search_view_preferred_width = 0x7f09003a; + public static final int abc_search_view_text_min_width = 0x7f09000c; + public static final int abc_seekbar_track_background_height_material = 0x7f09003b; + public static final int abc_seekbar_track_progress_height_material = 0x7f09003c; + public static final int abc_select_dialog_padding_start_material = 0x7f09003d; + public static final int abc_switch_padding = 0x7f090018; + public static final int abc_text_size_body_1_material = 0x7f09003e; + public static final int abc_text_size_body_2_material = 0x7f09003f; + public static final int abc_text_size_button_material = 0x7f090040; + public static final int abc_text_size_caption_material = 0x7f090041; + public static final int abc_text_size_display_1_material = 0x7f090042; + public static final int abc_text_size_display_2_material = 0x7f090043; + public static final int abc_text_size_display_3_material = 0x7f090044; + public static final int abc_text_size_display_4_material = 0x7f090045; + public static final int abc_text_size_headline_material = 0x7f090046; + public static final int abc_text_size_large_material = 0x7f090047; + public static final int abc_text_size_medium_material = 0x7f090048; + public static final int abc_text_size_menu_material = 0x7f090049; + public static final int abc_text_size_small_material = 0x7f09004a; + public static final int abc_text_size_subhead_material = 0x7f09004b; + public static final int abc_text_size_subtitle_material_toolbar = 0x7f090003; + public static final int abc_text_size_title_material = 0x7f09004c; + public static final int abc_text_size_title_material_toolbar = 0x7f090004; + public static final int design_appbar_elevation = 0x7f09004e; + public static final int design_fab_border_width = 0x7f09004f; + public static final int design_fab_content_size = 0x7f090050; + public static final int design_fab_elevation = 0x7f090051; + public static final int design_fab_size_mini = 0x7f090052; + public static final int design_fab_size_normal = 0x7f090053; + public static final int design_fab_translation_z_pressed = 0x7f090054; + public static final int design_navigation_elevation = 0x7f090055; + public static final int design_navigation_icon_padding = 0x7f090056; + public static final int design_navigation_icon_size = 0x7f090057; + public static final int design_navigation_max_width = 0x7f090058; + public static final int design_navigation_padding_bottom = 0x7f090059; + public static final int design_navigation_padding_top_default = 0x7f090019; + public static final int design_navigation_separator_vertical_padding = 0x7f09005a; + public static final int design_snackbar_action_inline_max_width = 0x7f090010; + public static final int design_snackbar_background_corner_radius = 0x7f090011; + public static final int design_snackbar_elevation = 0x7f09005b; + public static final int design_snackbar_extra_spacing_horizontal = 0x7f090012; + public static final int design_snackbar_max_width = 0x7f090013; + public static final int design_snackbar_min_width = 0x7f090014; + public static final int design_snackbar_padding_horizontal = 0x7f09005c; + public static final int design_snackbar_padding_vertical = 0x7f09005d; + public static final int design_snackbar_padding_vertical_2lines = 0x7f090015; + public static final int design_snackbar_text_size = 0x7f09005e; + public static final int design_tab_max_width = 0x7f09005f; + public static final int design_tab_scrollable_min_width = 0x7f090016; + public static final int design_tab_text_size = 0x7f090060; + public static final int design_tab_text_size_2line = 0x7f090061; + public static final int disabled_alpha_material_dark = 0x7f090062; + public static final int disabled_alpha_material_light = 0x7f090063; + public static final int highlight_alpha_material_colored = 0x7f090065; + public static final int highlight_alpha_material_dark = 0x7f090066; + public static final int highlight_alpha_material_light = 0x7f090067; + public static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f090068; + public static final int notification_large_icon_height = 0x7f090069; + public static final int notification_large_icon_width = 0x7f09006a; + public static final int notification_subtext_size = 0x7f09006b; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000; + public static final int abc_action_bar_item_background_material = 0x7f020001; + public static final int abc_btn_borderless_material = 0x7f020002; + public static final int abc_btn_check_material = 0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020005; + public static final int abc_btn_colored_material = 0x7f020006; + public static final int abc_btn_default_mtrl_shape = 0x7f020007; + public static final int abc_btn_radio_material = 0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a; + public static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b; + public static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c; + public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d; + public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e; + public static final int abc_cab_background_internal_bg = 0x7f02000f; + public static final int abc_cab_background_top_material = 0x7f020010; + public static final int abc_cab_background_top_mtrl_alpha = 0x7f020011; + public static final int abc_control_background_material = 0x7f020012; + public static final int abc_dialog_material_background_dark = 0x7f020013; + public static final int abc_dialog_material_background_light = 0x7f020014; + public static final int abc_edit_text_material = 0x7f020015; + public static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016; + public static final int abc_ic_clear_mtrl_alpha = 0x7f020017; + public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018; + public static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020019; + public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a; + public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b; + public static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c; + public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d; + public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e; + public static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001f; + public static final int abc_ic_search_api_mtrl_alpha = 0x7f020020; + public static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f020021; + public static final int abc_item_background_holo_dark = 0x7f020022; + public static final int abc_item_background_holo_light = 0x7f020023; + public static final int abc_list_divider_mtrl_alpha = 0x7f020024; + public static final int abc_list_focused_holo = 0x7f020025; + public static final int abc_list_longpressed_holo = 0x7f020026; + public static final int abc_list_pressed_holo_dark = 0x7f020027; + public static final int abc_list_pressed_holo_light = 0x7f020028; + public static final int abc_list_selector_background_transition_holo_dark = 0x7f020029; + public static final int abc_list_selector_background_transition_holo_light = 0x7f02002a; + public static final int abc_list_selector_disabled_holo_dark = 0x7f02002b; + public static final int abc_list_selector_disabled_holo_light = 0x7f02002c; + public static final int abc_list_selector_holo_dark = 0x7f02002d; + public static final int abc_list_selector_holo_light = 0x7f02002e; + public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f02002f; + public static final int abc_popup_background_mtrl_mult = 0x7f020030; + public static final int abc_ratingbar_full_material = 0x7f020031; + public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f020032; + public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f020033; + public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f020034; + public static final int abc_scrubber_primary_mtrl_alpha = 0x7f020035; + public static final int abc_scrubber_track_mtrl_alpha = 0x7f020036; + public static final int abc_seekbar_thumb_material = 0x7f020037; + public static final int abc_seekbar_track_material = 0x7f020038; + public static final int abc_spinner_mtrl_am_alpha = 0x7f020039; + public static final int abc_spinner_textfield_background_material = 0x7f02003a; + public static final int abc_switch_thumb_material = 0x7f02003b; + public static final int abc_switch_track_mtrl_alpha = 0x7f02003c; + public static final int abc_tab_indicator_material = 0x7f02003d; + public static final int abc_tab_indicator_mtrl_alpha = 0x7f02003e; + public static final int abc_text_cursor_material = 0x7f02003f; + public static final int abc_textfield_activated_mtrl_alpha = 0x7f020040; + public static final int abc_textfield_default_mtrl_alpha = 0x7f020041; + public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f020042; + public static final int abc_textfield_search_default_mtrl_alpha = 0x7f020043; + public static final int abc_textfield_search_material = 0x7f020044; + public static final int design_fab_background = 0x7f020076; + public static final int design_snackbar_background = 0x7f020077; + public static final int notification_template_icon_bg = 0x7f0200a4; + } + public static final class id { + public static final int action0 = 0x7f0e00ae; + public static final int action_bar = 0x7f0e0081; + public static final int action_bar_activity_content = 0x7f0e0000; + public static final int action_bar_container = 0x7f0e0080; + public static final int action_bar_root = 0x7f0e007c; + public static final int action_bar_spinner = 0x7f0e0001; + public static final int action_bar_subtitle = 0x7f0e0062; + public static final int action_bar_title = 0x7f0e0061; + public static final int action_context_bar = 0x7f0e0082; + public static final int action_divider = 0x7f0e00b2; + public static final int action_menu_divider = 0x7f0e0002; + public static final int action_menu_presenter = 0x7f0e0003; + public static final int action_mode_bar = 0x7f0e007e; + public static final int action_mode_bar_stub = 0x7f0e007d; + public static final int action_mode_close_button = 0x7f0e0063; + public static final int activity_chooser_view_content = 0x7f0e0064; + public static final int alertTitle = 0x7f0e0070; + public static final int always = 0x7f0e0039; + public static final int beginning = 0x7f0e0032; + public static final int bottom = 0x7f0e001d; + public static final int buttonPanel = 0x7f0e006b; + public static final int cancel_action = 0x7f0e00af; + public static final int center = 0x7f0e001e; + public static final int center_horizontal = 0x7f0e001f; + public static final int center_vertical = 0x7f0e0020; + public static final int checkbox = 0x7f0e0079; + public static final int chronometer = 0x7f0e00b5; + public static final int clip_horizontal = 0x7f0e002c; + public static final int clip_vertical = 0x7f0e002d; + public static final int collapseActionView = 0x7f0e003a; + public static final int contentPanel = 0x7f0e0071; + public static final int custom = 0x7f0e0077; + public static final int customPanel = 0x7f0e0076; + public static final int decor_content_parent = 0x7f0e007f; + public static final int default_activity_button = 0x7f0e0067; + public static final int design_menu_item_action_area = 0x7f0e009f; + public static final int design_menu_item_action_area_stub = 0x7f0e009e; + public static final int design_menu_item_text = 0x7f0e009d; + public static final int design_navigation_view = 0x7f0e009c; + public static final int disableHome = 0x7f0e000f; + public static final int edit_query = 0x7f0e0083; + public static final int end = 0x7f0e0021; + public static final int end_padder = 0x7f0e00ba; + public static final int enterAlways = 0x7f0e0016; + public static final int enterAlwaysCollapsed = 0x7f0e0017; + public static final int exitUntilCollapsed = 0x7f0e0018; + public static final int expand_activities_button = 0x7f0e0065; + public static final int expanded_menu = 0x7f0e0078; + public static final int fill = 0x7f0e002e; + public static final int fill_horizontal = 0x7f0e002f; + public static final int fill_vertical = 0x7f0e0022; + public static final int fixed = 0x7f0e0044; + public static final int home = 0x7f0e0005; + public static final int homeAsUp = 0x7f0e0010; + public static final int icon = 0x7f0e0069; + public static final int ifRoom = 0x7f0e003b; + public static final int image = 0x7f0e0066; + public static final int info = 0x7f0e00b9; + public static final int item_touch_helper_previous_elevation = 0x7f0e0006; + public static final int left = 0x7f0e0023; + public static final int line1 = 0x7f0e00b3; + public static final int line3 = 0x7f0e00b7; + public static final int listMode = 0x7f0e000c; + public static final int list_item = 0x7f0e0068; + public static final int media_actions = 0x7f0e00b1; + public static final int middle = 0x7f0e0033; + public static final int mini = 0x7f0e0031; + public static final int multiply = 0x7f0e0027; + public static final int navigation_header_container = 0x7f0e009b; + public static final int never = 0x7f0e003c; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int parallax = 0x7f0e001b; + public static final int parentPanel = 0x7f0e006d; + public static final int pin = 0x7f0e001c; + public static final int progress_circular = 0x7f0e0007; + public static final int progress_horizontal = 0x7f0e0008; + public static final int radio = 0x7f0e007b; + public static final int right = 0x7f0e0024; + public static final int screen = 0x7f0e0028; + public static final int scroll = 0x7f0e0019; + public static final int scrollIndicatorDown = 0x7f0e0075; + public static final int scrollIndicatorUp = 0x7f0e0072; + public static final int scrollView = 0x7f0e0073; + public static final int scrollable = 0x7f0e0045; + public static final int search_badge = 0x7f0e0085; + public static final int search_bar = 0x7f0e0084; + public static final int search_button = 0x7f0e0086; + public static final int search_close_btn = 0x7f0e008b; + public static final int search_edit_frame = 0x7f0e0087; + public static final int search_go_btn = 0x7f0e008d; + public static final int search_mag_icon = 0x7f0e0088; + public static final int search_plate = 0x7f0e0089; + public static final int search_src_text = 0x7f0e008a; + public static final int search_voice_btn = 0x7f0e008e; + public static final int select_dialog_listview = 0x7f0e008f; + public static final int shortcut = 0x7f0e007a; + public static final int showCustom = 0x7f0e0012; + public static final int showHome = 0x7f0e0013; + public static final int showTitle = 0x7f0e0014; + public static final int snackbar_action = 0x7f0e009a; + public static final int snackbar_text = 0x7f0e0099; + public static final int snap = 0x7f0e001a; + public static final int spacer = 0x7f0e006c; + public static final int split_action_bar = 0x7f0e0009; + public static final int src_atop = 0x7f0e0029; + public static final int src_in = 0x7f0e002a; + public static final int src_over = 0x7f0e002b; + public static final int start = 0x7f0e0025; + public static final int status_bar_latest_event_content = 0x7f0e00b0; + public static final int submit_area = 0x7f0e008c; + public static final int tabMode = 0x7f0e000e; + public static final int text = 0x7f0e00b8; + public static final int text2 = 0x7f0e00b6; + public static final int textSpacerNoButtons = 0x7f0e0074; + public static final int time = 0x7f0e00b4; + public static final int title = 0x7f0e006a; + public static final int title_template = 0x7f0e006f; + public static final int top = 0x7f0e0026; + public static final int topPanel = 0x7f0e006e; + public static final int up = 0x7f0e000a; + public static final int useLogo = 0x7f0e0015; + public static final int view_offset_helper = 0x7f0e000b; + public static final int withText = 0x7f0e003d; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int abc_config_activityDefaultDur = 0x7f0b0002; + public static final int abc_config_activityShortDur = 0x7f0b0003; + public static final int abc_max_action_buttons = 0x7f0b0000; + public static final int cancel_button_image_alpha = 0x7f0b0004; + public static final int design_snackbar_text_max_lines = 0x7f0b0001; + public static final int status_bar_notification_info_maxnum = 0x7f0b0006; + } + public static final class layout { + public static final int abc_action_bar_title_item = 0x7f040000; + public static final int abc_action_bar_up_container = 0x7f040001; + public static final int abc_action_bar_view_list_nav_layout = 0x7f040002; + public static final int abc_action_menu_item_layout = 0x7f040003; + public static final int abc_action_menu_layout = 0x7f040004; + public static final int abc_action_mode_bar = 0x7f040005; + public static final int abc_action_mode_close_item_material = 0x7f040006; + public static final int abc_activity_chooser_view = 0x7f040007; + public static final int abc_activity_chooser_view_list_item = 0x7f040008; + public static final int abc_alert_dialog_button_bar_material = 0x7f040009; + public static final int abc_alert_dialog_material = 0x7f04000a; + public static final int abc_dialog_title_material = 0x7f04000b; + public static final int abc_expanded_menu_layout = 0x7f04000c; + public static final int abc_list_menu_item_checkbox = 0x7f04000d; + public static final int abc_list_menu_item_icon = 0x7f04000e; + public static final int abc_list_menu_item_layout = 0x7f04000f; + public static final int abc_list_menu_item_radio = 0x7f040010; + public static final int abc_popup_menu_item_layout = 0x7f040011; + public static final int abc_screen_content_include = 0x7f040012; + public static final int abc_screen_simple = 0x7f040013; + public static final int abc_screen_simple_overlay_action_mode = 0x7f040014; + public static final int abc_screen_toolbar = 0x7f040015; + public static final int abc_search_dropdown_item_icons_2line = 0x7f040016; + public static final int abc_search_view = 0x7f040017; + public static final int abc_select_dialog_material = 0x7f040018; + public static final int design_layout_snackbar = 0x7f04001c; + public static final int design_layout_snackbar_include = 0x7f04001d; + public static final int design_layout_tab_icon = 0x7f04001e; + public static final int design_layout_tab_text = 0x7f04001f; + public static final int design_menu_item_action_area = 0x7f040020; + public static final int design_navigation_item = 0x7f040021; + public static final int design_navigation_item_header = 0x7f040022; + public static final int design_navigation_item_separator = 0x7f040023; + public static final int design_navigation_item_subheader = 0x7f040024; + public static final int design_navigation_menu = 0x7f040025; + public static final int design_navigation_menu_item = 0x7f040026; + public static final int notification_media_action = 0x7f04002a; + public static final int notification_media_cancel_action = 0x7f04002b; + public static final int notification_template_big_media = 0x7f04002c; + public static final int notification_template_big_media_narrow = 0x7f04002d; + public static final int notification_template_lines = 0x7f04002e; + public static final int notification_template_media = 0x7f04002f; + public static final int notification_template_part_chronometer = 0x7f040030; + public static final int notification_template_part_time = 0x7f040031; + public static final int select_dialog_item_material = 0x7f040036; + public static final int select_dialog_multichoice_material = 0x7f040037; + public static final int select_dialog_singlechoice_material = 0x7f040038; + public static final int support_simple_spinner_dropdown_item = 0x7f040039; + } + public static final class string { + public static final int abc_action_bar_home_description = 0x7f070000; + public static final int abc_action_bar_home_description_format = 0x7f070001; + public static final int abc_action_bar_home_subtitle_description_format = 0x7f070002; + public static final int abc_action_bar_up_description = 0x7f070003; + public static final int abc_action_menu_overflow_description = 0x7f070004; + public static final int abc_action_mode_done = 0x7f070005; + public static final int abc_activity_chooser_view_see_all = 0x7f070006; + public static final int abc_activitychooserview_choose_application = 0x7f070007; + public static final int abc_capital_off = 0x7f070008; + public static final int abc_capital_on = 0x7f070009; + public static final int abc_search_hint = 0x7f07000a; + public static final int abc_searchview_description_clear = 0x7f07000b; + public static final int abc_searchview_description_query = 0x7f07000c; + public static final int abc_searchview_description_search = 0x7f07000d; + public static final int abc_searchview_description_submit = 0x7f07000e; + public static final int abc_searchview_description_voice = 0x7f07000f; + public static final int abc_shareactionprovider_share_with = 0x7f070010; + public static final int abc_shareactionprovider_share_with_application = 0x7f070011; + public static final int abc_toolbar_collapse_description = 0x7f070012; + public static final int appbar_scrolling_view_behavior = 0x7f070041; + public static final int character_counter_pattern = 0x7f070047; + public static final int status_bar_notification_info_overflow = 0x7f07003d; + } + public static final class style { + public static final int AlertDialog_AppCompat = 0x7f0a0080; + public static final int AlertDialog_AppCompat_Light = 0x7f0a0081; + public static final int Animation_AppCompat_Dialog = 0x7f0a0082; + public static final int Animation_AppCompat_DropDownUp = 0x7f0a0083; + public static final int Base_AlertDialog_AppCompat = 0x7f0a0087; + public static final int Base_AlertDialog_AppCompat_Light = 0x7f0a0088; + public static final int Base_Animation_AppCompat_Dialog = 0x7f0a0089; + public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0a008a; + public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0a008c; + public static final int Base_DialogWindowTitle_AppCompat = 0x7f0a008b; + public static final int Base_TextAppearance_AppCompat = 0x7f0a0032; + public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0a0033; + public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0a0034; + public static final int Base_TextAppearance_AppCompat_Button = 0x7f0a001b; + public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0a0035; + public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0a0036; + public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0a0037; + public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0a0038; + public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0a0039; + public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0a003a; + public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0a0005; + public static final int Base_TextAppearance_AppCompat_Large = 0x7f0a003b; + public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0a0006; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a003c; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a003d; + public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0a003e; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0a0007; + public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0a003f; + public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0a008d; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a0040; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0a0041; + public static final int Base_TextAppearance_AppCompat_Small = 0x7f0a0042; + public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0a0008; + public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0a0043; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a0009; + public static final int Base_TextAppearance_AppCompat_Title = 0x7f0a0044; + public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0a000a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a0045; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a0046; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a0047; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a0048; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a0049; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a004a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a004b; + public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0a004c; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a007c; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a008e; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a004d; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a004e; + public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0a004f; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a0050; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a008f; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a0051; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a0052; + public static final int Base_ThemeOverlay_AppCompat = 0x7f0a0098; + public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0a0099; + public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0a009a; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a009b; + public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0a009c; + public static final int Base_Theme_AppCompat = 0x7f0a0053; + public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0a0090; + public static final int Base_Theme_AppCompat_Dialog = 0x7f0a000b; + public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0a0002; + public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0a0091; + public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0a0092; + public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0a0093; + public static final int Base_Theme_AppCompat_Light = 0x7f0a0054; + public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0a0094; + public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0a000c; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0003; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0a0095; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0a0096; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a0097; + public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f0a000d; + public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0a000e; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0a0017; + public static final int Base_V12_Widget_AppCompat_EditText = 0x7f0a0018; + public static final int Base_V21_Theme_AppCompat = 0x7f0a0055; + public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0a0056; + public static final int Base_V21_Theme_AppCompat_Light = 0x7f0a0057; + public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0a0058; + public static final int Base_V22_Theme_AppCompat = 0x7f0a007a; + public static final int Base_V22_Theme_AppCompat_Light = 0x7f0a007b; + public static final int Base_V23_Theme_AppCompat = 0x7f0a007d; + public static final int Base_V23_Theme_AppCompat_Light = 0x7f0a007e; + public static final int Base_V7_Theme_AppCompat = 0x7f0a009d; + public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0a009e; + public static final int Base_V7_Theme_AppCompat_Light = 0x7f0a009f; + public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0a00a0; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0a00a1; + public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0a00a2; + public static final int Base_Widget_AppCompat_ActionBar = 0x7f0a00a3; + public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0a00a4; + public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0a00a5; + public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0a0059; + public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0a005a; + public static final int Base_Widget_AppCompat_ActionButton = 0x7f0a005b; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0a005c; + public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0a005d; + public static final int Base_Widget_AppCompat_ActionMode = 0x7f0a00a6; + public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0a00a7; + public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0a0019; + public static final int Base_Widget_AppCompat_Button = 0x7f0a005e; + public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0a0062; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a00a9; + public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0a005f; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0060; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a00a8; + public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0a007f; + public static final int Base_Widget_AppCompat_Button_Small = 0x7f0a0061; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0063; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0064; + public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0a00aa; + public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0a0000; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0a00ab; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0a0065; + public static final int Base_Widget_AppCompat_EditText = 0x7f0a001a; + public static final int Base_Widget_AppCompat_ImageButton = 0x7f0a0066; + public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0a00ac; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a00ad; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a00ae; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a0067; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a0068; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a0069; + public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0a006a; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a006b; + public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0a006c; + public static final int Base_Widget_AppCompat_ListView = 0x7f0a006d; + public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0a006e; + public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0a006f; + public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0a0070; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0071; + public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0a00af; + public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0a000f; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a0010; + public static final int Base_Widget_AppCompat_RatingBar = 0x7f0a0072; + public static final int Base_Widget_AppCompat_SearchView = 0x7f0a00b0; + public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0a00b1; + public static final int Base_Widget_AppCompat_SeekBar = 0x7f0a0073; + public static final int Base_Widget_AppCompat_Spinner = 0x7f0a0074; + public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0a0004; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0a0075; + public static final int Base_Widget_AppCompat_Toolbar = 0x7f0a00b2; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a0076; + public static final int Base_Widget_Design_TabLayout = 0x7f0a00b3; + public static final int Platform_AppCompat = 0x7f0a0011; + public static final int Platform_AppCompat_Light = 0x7f0a0012; + public static final int Platform_ThemeOverlay_AppCompat = 0x7f0a0077; + public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0a0078; + public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0a0079; + public static final int Platform_V11_AppCompat = 0x7f0a0013; + public static final int Platform_V11_AppCompat_Light = 0x7f0a0014; + public static final int Platform_V14_AppCompat = 0x7f0a001c; + public static final int Platform_V14_AppCompat_Light = 0x7f0a001d; + public static final int Platform_Widget_AppCompat_Spinner = 0x7f0a0015; + public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0a0023; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0a0024; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0a0025; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0a0026; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0a0027; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0a0028; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0a002e; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0a0029; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0a002a; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0a002b; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0a002c; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0a002d; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0a002f; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0030; + public static final int TextAppearance_AppCompat = 0x7f0a00b4; + public static final int TextAppearance_AppCompat_Body1 = 0x7f0a00b5; + public static final int TextAppearance_AppCompat_Body2 = 0x7f0a00b6; + public static final int TextAppearance_AppCompat_Button = 0x7f0a00b7; + public static final int TextAppearance_AppCompat_Caption = 0x7f0a00b8; + public static final int TextAppearance_AppCompat_Display1 = 0x7f0a00b9; + public static final int TextAppearance_AppCompat_Display2 = 0x7f0a00ba; + public static final int TextAppearance_AppCompat_Display3 = 0x7f0a00bb; + public static final int TextAppearance_AppCompat_Display4 = 0x7f0a00bc; + public static final int TextAppearance_AppCompat_Headline = 0x7f0a00bd; + public static final int TextAppearance_AppCompat_Inverse = 0x7f0a00be; + public static final int TextAppearance_AppCompat_Large = 0x7f0a00bf; + public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0a00c0; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0a00c1; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0a00c2; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a00c3; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a00c4; + public static final int TextAppearance_AppCompat_Medium = 0x7f0a00c5; + public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0a00c6; + public static final int TextAppearance_AppCompat_Menu = 0x7f0a00c7; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a00c8; + public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0a00c9; + public static final int TextAppearance_AppCompat_Small = 0x7f0a00ca; + public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0a00cb; + public static final int TextAppearance_AppCompat_Subhead = 0x7f0a00cc; + public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a00cd; + public static final int TextAppearance_AppCompat_Title = 0x7f0a00ce; + public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0a00cf; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a00d0; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a00d1; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a00d2; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a00d3; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a00d4; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a00d5; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0a00d6; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a00d7; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0a00d8; + public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0a00d9; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a00da; + public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a00db; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a00dc; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a00dd; + public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0a00de; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a00df; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded = 0x7f0a00e0; + public static final int TextAppearance_Design_Counter = 0x7f0a00e1; + public static final int TextAppearance_Design_Counter_Overflow = 0x7f0a00e2; + public static final int TextAppearance_Design_Error = 0x7f0a00e3; + public static final int TextAppearance_Design_Hint = 0x7f0a00e4; + public static final int TextAppearance_Design_Snackbar_Message = 0x7f0a00e5; + public static final int TextAppearance_Design_Tab = 0x7f0a00e6; + public static final int TextAppearance_StatusBar_EventContent = 0x7f0a001e; + public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f0a001f; + public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f0a0020; + public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f0a0021; + public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f0a0022; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a00e7; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a00e8; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a00e9; + public static final int ThemeOverlay_AppCompat = 0x7f0a00fc; + public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0a00fd; + public static final int ThemeOverlay_AppCompat_Dark = 0x7f0a00fe; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a00ff; + public static final int ThemeOverlay_AppCompat_Light = 0x7f0a0100; + public static final int Theme_AppCompat = 0x7f0a00ea; + public static final int Theme_AppCompat_CompactMenu = 0x7f0a00eb; + public static final int Theme_AppCompat_Dialog = 0x7f0a00ec; + public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0a00ef; + public static final int Theme_AppCompat_Dialog_Alert = 0x7f0a00ed; + public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0a00ee; + public static final int Theme_AppCompat_Light = 0x7f0a00f0; + public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0a00f1; + public static final int Theme_AppCompat_Light_Dialog = 0x7f0a00f2; + public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a00f5; + public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0a00f3; + public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a00f4; + public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0a00f6; + public static final int Theme_AppCompat_NoActionBar = 0x7f0a00f7; + public static final int Widget_AppCompat_ActionBar = 0x7f0a0105; + public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0a0106; + public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0a0107; + public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0a0108; + public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0a0109; + public static final int Widget_AppCompat_ActionButton = 0x7f0a010a; + public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0a010b; + public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0a010c; + public static final int Widget_AppCompat_ActionMode = 0x7f0a010d; + public static final int Widget_AppCompat_ActivityChooserView = 0x7f0a010e; + public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0a010f; + public static final int Widget_AppCompat_Button = 0x7f0a0110; + public static final int Widget_AppCompat_ButtonBar = 0x7f0a0116; + public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a0117; + public static final int Widget_AppCompat_Button_Borderless = 0x7f0a0111; + public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0112; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a0113; + public static final int Widget_AppCompat_Button_Colored = 0x7f0a0114; + public static final int Widget_AppCompat_Button_Small = 0x7f0a0115; + public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0118; + public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0119; + public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0a011a; + public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0a011b; + public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0a011c; + public static final int Widget_AppCompat_EditText = 0x7f0a011d; + public static final int Widget_AppCompat_ImageButton = 0x7f0a011e; + public static final int Widget_AppCompat_Light_ActionBar = 0x7f0a011f; + public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a0120; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0a0121; + public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a0122; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0a0123; + public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a0124; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a0125; + public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a0126; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0a0127; + public static final int Widget_AppCompat_Light_ActionButton = 0x7f0a0128; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0a0129; + public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0a012a; + public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0a012b; + public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0a012c; + public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0a012d; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0a012e; + public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0a012f; + public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0a0130; + public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0a0131; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0132; + public static final int Widget_AppCompat_Light_SearchView = 0x7f0a0133; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0a0134; + public static final int Widget_AppCompat_ListPopupWindow = 0x7f0a0135; + public static final int Widget_AppCompat_ListView = 0x7f0a0136; + public static final int Widget_AppCompat_ListView_DropDown = 0x7f0a0137; + public static final int Widget_AppCompat_ListView_Menu = 0x7f0a0138; + public static final int Widget_AppCompat_PopupMenu = 0x7f0a0139; + public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0a013a; + public static final int Widget_AppCompat_PopupWindow = 0x7f0a013b; + public static final int Widget_AppCompat_ProgressBar = 0x7f0a013c; + public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a013d; + public static final int Widget_AppCompat_RatingBar = 0x7f0a013e; + public static final int Widget_AppCompat_SearchView = 0x7f0a013f; + public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0a0140; + public static final int Widget_AppCompat_SeekBar = 0x7f0a0141; + public static final int Widget_AppCompat_Spinner = 0x7f0a0142; + public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0a0143; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0a0144; + public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0a0145; + public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0a0146; + public static final int Widget_AppCompat_Toolbar = 0x7f0a0147; + public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a0148; + public static final int Widget_Design_AppBarLayout = 0x7f0a0149; + public static final int Widget_Design_CollapsingToolbar = 0x7f0a014a; + public static final int Widget_Design_CoordinatorLayout = 0x7f0a014b; + public static final int Widget_Design_FloatingActionButton = 0x7f0a014c; + public static final int Widget_Design_NavigationView = 0x7f0a014d; + public static final int Widget_Design_ScrimInsetsFrameLayout = 0x7f0a014e; + public static final int Widget_Design_Snackbar = 0x7f0a014f; + public static final int Widget_Design_TabLayout = 0x7f0a0001; + public static final int Widget_Design_TextInputLayout = 0x7f0a0150; + } + public static final class styleable { + public static final int[] ActionBar = { 0x7f010001, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f0100e2 }; + public static final int[] ActionBarLayout = { 0x010100b3 }; + public static final int ActionBarLayout_android_layout_gravity = 0; + public static final int ActionBar_background = 10; + public static final int ActionBar_backgroundSplit = 12; + public static final int ActionBar_backgroundStacked = 11; + public static final int ActionBar_contentInsetEnd = 21; + public static final int ActionBar_contentInsetLeft = 22; + public static final int ActionBar_contentInsetRight = 23; + public static final int ActionBar_contentInsetStart = 20; + public static final int ActionBar_customNavigationLayout = 13; + public static final int ActionBar_displayOptions = 3; + public static final int ActionBar_divider = 9; + public static final int ActionBar_elevation = 24; + public static final int ActionBar_height = 0; + public static final int ActionBar_hideOnContentScroll = 19; + public static final int ActionBar_homeAsUpIndicator = 26; + public static final int ActionBar_homeLayout = 14; + public static final int ActionBar_icon = 7; + public static final int ActionBar_indeterminateProgressStyle = 16; + public static final int ActionBar_itemPadding = 18; + public static final int ActionBar_logo = 8; + public static final int ActionBar_navigationMode = 2; + public static final int ActionBar_popupTheme = 25; + public static final int ActionBar_progressBarPadding = 17; + public static final int ActionBar_progressBarStyle = 15; + public static final int ActionBar_subtitle = 4; + public static final int ActionBar_subtitleTextStyle = 6; + public static final int ActionBar_title = 1; + public static final int ActionBar_titleTextStyle = 5; + public static final int[] ActionMenuItemView = { 0x0101013f }; + public static final int ActionMenuItemView_android_minWidth = 0; + public static final int[] ActionMenuView = { }; + public static final int[] ActionMode = { 0x7f010001, 0x7f01000f, 0x7f010010, 0x7f010014, 0x7f010016, 0x7f010024 }; + public static final int ActionMode_background = 3; + public static final int ActionMode_backgroundSplit = 4; + public static final int ActionMode_closeItemLayout = 5; + public static final int ActionMode_height = 0; + public static final int ActionMode_subtitleTextStyle = 2; + public static final int ActionMode_titleTextStyle = 1; + public static final int[] ActivityChooserView = { 0x7f010025, 0x7f010026 }; + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + public static final int ActivityChooserView_initialActivityCount = 0; + public static final int[] AlertDialog = { 0x010100f2, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }; + public static final int AlertDialog_android_layout = 0; + public static final int AlertDialog_buttonPanelSideLayout = 1; + public static final int AlertDialog_listItemLayout = 5; + public static final int AlertDialog_listLayout = 2; + public static final int AlertDialog_multiChoiceItemLayout = 3; + public static final int AlertDialog_singleChoiceItemLayout = 4; + public static final int[] AppBarLayout = { 0x010100d4, 0x7f010022, 0x7f01002f }; + public static final int[] AppBarLayout_LayoutParams = { 0x7f010030, 0x7f010031 }; + public static final int AppBarLayout_LayoutParams_layout_scrollFlags = 0; + public static final int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1; + public static final int AppBarLayout_android_background = 0; + public static final int AppBarLayout_elevation = 1; + public static final int AppBarLayout_expanded = 2; + public static final int[] AppCompatTextView = { 0x01010034, 0x7f010032 }; + public static final int AppCompatTextView_android_textAppearance = 0; + public static final int AppCompatTextView_textAllCaps = 1; + public static final int[] ButtonBarLayout = { 0x7f010033 }; + public static final int ButtonBarLayout_allowStacking = 0; + public static final int[] CollapsingAppBarLayout_LayoutParams = { 0x7f010034, 0x7f010035 }; + public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0; + public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1; + public static final int[] CollapsingToolbarLayout = { 0x7f01000b, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042 }; + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 11; + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; + public static final int CollapsingToolbarLayout_contentScrim = 8; + public static final int CollapsingToolbarLayout_expandedTitleGravity = 12; + public static final int CollapsingToolbarLayout_expandedTitleMargin = 1; + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2; + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3; + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; + public static final int CollapsingToolbarLayout_statusBarScrim = 9; + public static final int CollapsingToolbarLayout_title = 0; + public static final int CollapsingToolbarLayout_titleEnabled = 13; + public static final int CollapsingToolbarLayout_toolbarId = 10; + public static final int[] CompoundButton = { 0x01010107, 0x7f010043, 0x7f010044 }; + public static final int CompoundButton_android_button = 0; + public static final int CompoundButton_buttonTint = 1; + public static final int CompoundButton_buttonTintMode = 2; + public static final int[] CoordinatorLayout = { 0x7f010045, 0x7f010046 }; + public static final int[] CoordinatorLayout_LayoutParams = { 0x010100b3, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a }; + public static final int CoordinatorLayout_LayoutParams_android_layout_gravity = 0; + public static final int CoordinatorLayout_LayoutParams_layout_anchor = 2; + public static final int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4; + public static final int CoordinatorLayout_LayoutParams_layout_behavior = 1; + public static final int CoordinatorLayout_LayoutParams_layout_keyline = 3; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] DrawerArrowToggle = { 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053 }; + public static final int DrawerArrowToggle_arrowHeadLength = 4; + public static final int DrawerArrowToggle_arrowShaftLength = 5; + public static final int DrawerArrowToggle_barLength = 6; + public static final int DrawerArrowToggle_color = 0; + public static final int DrawerArrowToggle_drawableSize = 2; + public static final int DrawerArrowToggle_gapBetweenBars = 3; + public static final int DrawerArrowToggle_spinBars = 1; + public static final int DrawerArrowToggle_thickness = 7; + public static final int[] FloatingActionButton = { 0x7f010022, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010132, 0x7f010133 }; + public static final int FloatingActionButton_backgroundTint = 5; + public static final int FloatingActionButton_backgroundTintMode = 6; + public static final int FloatingActionButton_borderWidth = 4; + public static final int FloatingActionButton_elevation = 0; + public static final int FloatingActionButton_fabSize = 2; + public static final int FloatingActionButton_pressedTranslationZ = 3; + public static final int FloatingActionButton_rippleColor = 1; + public static final int[] ForegroundLinearLayout = { 0x01010109, 0x01010200, 0x7f010058 }; + public static final int ForegroundLinearLayout_android_foreground = 0; + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f010013, 0x7f010059, 0x7f01005a, 0x7f01005b }; + public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + public static final int LinearLayoutCompat_android_baselineAligned = 2; + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + public static final int LinearLayoutCompat_android_gravity = 0; + public static final int LinearLayoutCompat_android_orientation = 1; + public static final int LinearLayoutCompat_android_weightSum = 4; + public static final int LinearLayoutCompat_divider = 5; + public static final int LinearLayoutCompat_dividerPadding = 8; + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + public static final int LinearLayoutCompat_showDividers = 7; + public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad }; + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; + public static final int MenuGroup_android_checkableBehavior = 5; + public static final int MenuGroup_android_enabled = 0; + public static final int MenuGroup_android_id = 1; + public static final int MenuGroup_android_menuCategory = 3; + public static final int MenuGroup_android_orderInCategory = 4; + public static final int MenuGroup_android_visible = 2; + public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074 }; + public static final int MenuItem_actionLayout = 14; + public static final int MenuItem_actionProviderClass = 16; + public static final int MenuItem_actionViewClass = 15; + public static final int MenuItem_android_alphabeticShortcut = 9; + public static final int MenuItem_android_checkable = 11; + public static final int MenuItem_android_checked = 3; + public static final int MenuItem_android_enabled = 1; + public static final int MenuItem_android_icon = 0; + public static final int MenuItem_android_id = 2; + public static final int MenuItem_android_menuCategory = 5; + public static final int MenuItem_android_numericShortcut = 10; + public static final int MenuItem_android_onClick = 12; + public static final int MenuItem_android_orderInCategory = 6; + public static final int MenuItem_android_title = 7; + public static final int MenuItem_android_titleCondensed = 8; + public static final int MenuItem_android_visible = 4; + public static final int MenuItem_showAsAction = 13; + public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010075 }; + public static final int MenuView_android_headerBackground = 4; + public static final int MenuView_android_horizontalDivider = 2; + public static final int MenuView_android_itemBackground = 5; + public static final int MenuView_android_itemIconDisabledAlpha = 6; + public static final int MenuView_android_itemTextAppearance = 1; + public static final int MenuView_android_verticalDivider = 3; + public static final int MenuView_android_windowAnimationStyle = 0; + public static final int MenuView_preserveIconSpacing = 7; + public static final int[] NavigationView = { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010022, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b }; + public static final int NavigationView_android_background = 0; + public static final int NavigationView_android_fitsSystemWindows = 1; + public static final int NavigationView_android_maxWidth = 2; + public static final int NavigationView_elevation = 3; + public static final int NavigationView_headerLayout = 9; + public static final int NavigationView_itemBackground = 7; + public static final int NavigationView_itemIconTint = 5; + public static final int NavigationView_itemTextAppearance = 8; + public static final int NavigationView_itemTextColor = 6; + public static final int NavigationView_menu = 4; + public static final int[] PopupWindow = { 0x01010176, 0x7f01007c }; + public static final int[] PopupWindowBackgroundState = { 0x7f01007d }; + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + public static final int PopupWindow_android_popupBackground = 0; + public static final int PopupWindow_overlapAnchor = 1; + public static final int[] RecyclerView = { 0x010100c4, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081 }; + public static final int RecyclerView_android_orientation = 0; + public static final int RecyclerView_layoutManager = 1; + public static final int RecyclerView_reverseLayout = 3; + public static final int RecyclerView_spanCount = 2; + public static final int RecyclerView_stackFromEnd = 4; + public static final int[] ScrimInsetsFrameLayout = { 0x7f010082 }; + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + public static final int[] ScrollingViewBehavior_Params = { 0x7f010083 }; + public static final int ScrollingViewBehavior_Params_behavior_overlapTop = 0; + public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090 }; + public static final int SearchView_android_focusable = 0; + public static final int SearchView_android_imeOptions = 3; + public static final int SearchView_android_inputType = 2; + public static final int SearchView_android_maxWidth = 1; + public static final int SearchView_closeIcon = 8; + public static final int SearchView_commitIcon = 13; + public static final int SearchView_defaultQueryHint = 7; + public static final int SearchView_goIcon = 9; + public static final int SearchView_iconifiedByDefault = 5; + public static final int SearchView_layout = 4; + public static final int SearchView_queryBackground = 15; + public static final int SearchView_queryHint = 6; + public static final int SearchView_searchHintIcon = 11; + public static final int SearchView_searchIcon = 10; + public static final int SearchView_submitBackground = 16; + public static final int SearchView_suggestionRowLayout = 14; + public static final int SearchView_voiceIcon = 12; + public static final int[] SnackbarLayout = { 0x0101011f, 0x7f010022, 0x7f010094 }; + public static final int SnackbarLayout_android_maxWidth = 0; + public static final int SnackbarLayout_elevation = 1; + public static final int SnackbarLayout_maxActionInlineWidth = 2; + public static final int[] Spinner = { 0x01010176, 0x0101017b, 0x01010262, 0x7f010023 }; + public static final int Spinner_android_dropDownWidth = 2; + public static final int Spinner_android_popupBackground = 0; + public static final int Spinner_android_prompt = 1; + public static final int Spinner_popupTheme = 3; + public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b }; + public static final int SwitchCompat_android_textOff = 1; + public static final int SwitchCompat_android_textOn = 0; + public static final int SwitchCompat_android_thumb = 2; + public static final int SwitchCompat_showText = 9; + public static final int SwitchCompat_splitTrack = 8; + public static final int SwitchCompat_switchMinWidth = 6; + public static final int SwitchCompat_switchPadding = 7; + public static final int SwitchCompat_switchTextAppearance = 5; + public static final int SwitchCompat_thumbTextPadding = 4; + public static final int SwitchCompat_track = 3; + public static final int[] TabLayout = { 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab }; + public static final int TabLayout_tabBackground = 3; + public static final int TabLayout_tabContentStart = 2; + public static final int TabLayout_tabGravity = 5; + public static final int TabLayout_tabIndicatorColor = 0; + public static final int TabLayout_tabIndicatorHeight = 1; + public static final int TabLayout_tabMaxWidth = 7; + public static final int TabLayout_tabMinWidth = 6; + public static final int TabLayout_tabMode = 4; + public static final int TabLayout_tabPadding = 15; + public static final int TabLayout_tabPaddingBottom = 14; + public static final int TabLayout_tabPaddingEnd = 13; + public static final int TabLayout_tabPaddingStart = 11; + public static final int TabLayout_tabPaddingTop = 12; + public static final int TabLayout_tabSelectedTextColor = 10; + public static final int TabLayout_tabTextAppearance = 8; + public static final int TabLayout_tabTextColor = 9; + public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010032 }; + public static final int TextAppearance_android_shadowColor = 4; + public static final int TextAppearance_android_shadowDx = 5; + public static final int TextAppearance_android_shadowDy = 6; + public static final int TextAppearance_android_shadowRadius = 7; + public static final int TextAppearance_android_textColor = 3; + public static final int TextAppearance_android_textSize = 0; + public static final int TextAppearance_android_textStyle = 2; + public static final int TextAppearance_android_typeface = 1; + public static final int TextAppearance_textAllCaps = 8; + public static final int[] TextInputLayout = { 0x0101009a, 0x01010150, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3 }; + public static final int TextInputLayout_android_hint = 1; + public static final int TextInputLayout_android_textColorHint = 0; + public static final int TextInputLayout_counterEnabled = 5; + public static final int TextInputLayout_counterMaxLength = 6; + public static final int TextInputLayout_counterOverflowTextAppearance = 8; + public static final int TextInputLayout_counterTextAppearance = 7; + public static final int TextInputLayout_errorEnabled = 3; + public static final int TextInputLayout_errorTextAppearance = 4; + public static final int TextInputLayout_hintAnimationEnabled = 9; + public static final int TextInputLayout_hintTextAppearance = 2; + public static final int[] Theme = { 0x01010057, 0x010100ae, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, 0x7f01011a, 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, 0x7f01011f }; + public static final int Theme_actionBarDivider = 23; + public static final int Theme_actionBarItemBackground = 24; + public static final int Theme_actionBarPopupTheme = 17; + public static final int Theme_actionBarSize = 22; + public static final int Theme_actionBarSplitStyle = 19; + public static final int Theme_actionBarStyle = 18; + public static final int Theme_actionBarTabBarStyle = 13; + public static final int Theme_actionBarTabStyle = 12; + public static final int Theme_actionBarTabTextStyle = 14; + public static final int Theme_actionBarTheme = 20; + public static final int Theme_actionBarWidgetTheme = 21; + public static final int Theme_actionButtonStyle = 49; + public static final int Theme_actionDropDownStyle = 45; + public static final int Theme_actionMenuTextAppearance = 25; + public static final int Theme_actionMenuTextColor = 26; + public static final int Theme_actionModeBackground = 29; + public static final int Theme_actionModeCloseButtonStyle = 28; + public static final int Theme_actionModeCloseDrawable = 31; + public static final int Theme_actionModeCopyDrawable = 33; + public static final int Theme_actionModeCutDrawable = 32; + public static final int Theme_actionModeFindDrawable = 37; + public static final int Theme_actionModePasteDrawable = 34; + public static final int Theme_actionModePopupWindowStyle = 39; + public static final int Theme_actionModeSelectAllDrawable = 35; + public static final int Theme_actionModeShareDrawable = 36; + public static final int Theme_actionModeSplitBackground = 30; + public static final int Theme_actionModeStyle = 27; + public static final int Theme_actionModeWebSearchDrawable = 38; + public static final int Theme_actionOverflowButtonStyle = 15; + public static final int Theme_actionOverflowMenuStyle = 16; + public static final int Theme_activityChooserViewStyle = 57; + public static final int Theme_alertDialogButtonGroupStyle = 92; + public static final int Theme_alertDialogCenterButtons = 93; + public static final int Theme_alertDialogStyle = 91; + public static final int Theme_alertDialogTheme = 94; + public static final int Theme_android_windowAnimationStyle = 1; + public static final int Theme_android_windowIsFloating = 0; + public static final int Theme_autoCompleteTextViewStyle = 99; + public static final int Theme_borderlessButtonStyle = 54; + public static final int Theme_buttonBarButtonStyle = 51; + public static final int Theme_buttonBarNegativeButtonStyle = 97; + public static final int Theme_buttonBarNeutralButtonStyle = 98; + public static final int Theme_buttonBarPositiveButtonStyle = 96; + public static final int Theme_buttonBarStyle = 50; + public static final int Theme_buttonStyle = 100; + public static final int Theme_buttonStyleSmall = 101; + public static final int Theme_checkboxStyle = 102; + public static final int Theme_checkedTextViewStyle = 103; + public static final int Theme_colorAccent = 84; + public static final int Theme_colorButtonNormal = 88; + public static final int Theme_colorControlActivated = 86; + public static final int Theme_colorControlHighlight = 87; + public static final int Theme_colorControlNormal = 85; + public static final int Theme_colorPrimary = 82; + public static final int Theme_colorPrimaryDark = 83; + public static final int Theme_colorSwitchThumbNormal = 89; + public static final int Theme_controlBackground = 90; + public static final int Theme_dialogPreferredPadding = 43; + public static final int Theme_dialogTheme = 42; + public static final int Theme_dividerHorizontal = 56; + public static final int Theme_dividerVertical = 55; + public static final int Theme_dropDownListViewStyle = 74; + public static final int Theme_dropdownListPreferredItemHeight = 46; + public static final int Theme_editTextBackground = 63; + public static final int Theme_editTextColor = 62; + public static final int Theme_editTextStyle = 104; + public static final int Theme_homeAsUpIndicator = 48; + public static final int Theme_imageButtonStyle = 64; + public static final int Theme_listChoiceBackgroundIndicator = 81; + public static final int Theme_listDividerAlertDialog = 44; + public static final int Theme_listPopupWindowStyle = 75; + public static final int Theme_listPreferredItemHeight = 69; + public static final int Theme_listPreferredItemHeightLarge = 71; + public static final int Theme_listPreferredItemHeightSmall = 70; + public static final int Theme_listPreferredItemPaddingLeft = 72; + public static final int Theme_listPreferredItemPaddingRight = 73; + public static final int Theme_panelBackground = 78; + public static final int Theme_panelMenuListTheme = 80; + public static final int Theme_panelMenuListWidth = 79; + public static final int Theme_popupMenuStyle = 60; + public static final int Theme_popupWindowStyle = 61; + public static final int Theme_radioButtonStyle = 105; + public static final int Theme_ratingBarStyle = 106; + public static final int Theme_searchViewStyle = 68; + public static final int Theme_seekBarStyle = 107; + public static final int Theme_selectableItemBackground = 52; + public static final int Theme_selectableItemBackgroundBorderless = 53; + public static final int Theme_spinnerDropDownItemStyle = 47; + public static final int Theme_spinnerStyle = 108; + public static final int Theme_switchStyle = 109; + public static final int Theme_textAppearanceLargePopupMenu = 40; + public static final int Theme_textAppearanceListItem = 76; + public static final int Theme_textAppearanceListItemSmall = 77; + public static final int Theme_textAppearanceSearchResultSubtitle = 66; + public static final int Theme_textAppearanceSearchResultTitle = 65; + public static final int Theme_textAppearanceSmallPopupMenu = 41; + public static final int Theme_textColorAlertDialogListItem = 95; + public static final int Theme_textColorSearchUrl = 67; + public static final int Theme_toolbarNavigationButtonStyle = 59; + public static final int Theme_toolbarStyle = 58; + public static final int Theme_windowActionBar = 2; + public static final int Theme_windowActionBarOverlay = 4; + public static final int Theme_windowActionModeOverlay = 5; + public static final int Theme_windowFixedHeightMajor = 9; + public static final int Theme_windowFixedHeightMinor = 7; + public static final int Theme_windowFixedWidthMajor = 6; + public static final int Theme_windowFixedWidthMinor = 8; + public static final int Theme_windowMinWidthMajor = 10; + public static final int Theme_windowMinWidthMinor = 11; + public static final int Theme_windowNoTitle = 3; + public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f01000b, 0x7f01000e, 0x7f010012, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010023, 0x7f010120, 0x7f010121, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e }; + public static final int Toolbar_android_gravity = 0; + public static final int Toolbar_android_minHeight = 1; + public static final int Toolbar_collapseContentDescription = 19; + public static final int Toolbar_collapseIcon = 18; + public static final int Toolbar_contentInsetEnd = 6; + public static final int Toolbar_contentInsetLeft = 7; + public static final int Toolbar_contentInsetRight = 8; + public static final int Toolbar_contentInsetStart = 5; + public static final int Toolbar_logo = 4; + public static final int Toolbar_logoDescription = 22; + public static final int Toolbar_maxButtonHeight = 17; + public static final int Toolbar_navigationContentDescription = 21; + public static final int Toolbar_navigationIcon = 20; + public static final int Toolbar_popupTheme = 9; + public static final int Toolbar_subtitle = 3; + public static final int Toolbar_subtitleTextAppearance = 11; + public static final int Toolbar_subtitleTextColor = 24; + public static final int Toolbar_title = 2; + public static final int Toolbar_titleMarginBottom = 16; + public static final int Toolbar_titleMarginEnd = 14; + public static final int Toolbar_titleMarginStart = 13; + public static final int Toolbar_titleMarginTop = 15; + public static final int Toolbar_titleMargins = 12; + public static final int Toolbar_titleTextAppearance = 10; + public static final int Toolbar_titleTextColor = 23; + public static final int[] View = { 0x01010000, 0x010100da, 0x7f01012f, 0x7f010130, 0x7f010131 }; + public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010132, 0x7f010133 }; + public static final int ViewBackgroundHelper_android_background = 0; + public static final int ViewBackgroundHelper_backgroundTint = 1; + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 }; + public static final int ViewStubCompat_android_id = 0; + public static final int ViewStubCompat_android_inflatedId = 2; + public static final int ViewStubCompat_android_layout = 1; + public static final int View_android_focusable = 1; + public static final int View_android_theme = 0; + public static final int View_paddingEnd = 3; + public static final int View_paddingStart = 2; + public static final int View_theme = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/android/support/v7/appcompat/R.java b/GPS/app/build/generated/source/r/debug/android/support/v7/appcompat/R.java new file mode 100644 index 0000000..43d8c4e --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/android/support/v7/appcompat/R.java @@ -0,0 +1,1255 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ +package android.support.v7.appcompat; + +public final class R { + public static final class anim { + public static final int abc_fade_in = 0x7f050000; + public static final int abc_fade_out = 0x7f050001; + public static final int abc_grow_fade_in_from_bottom = 0x7f050002; + public static final int abc_popup_enter = 0x7f050003; + public static final int abc_popup_exit = 0x7f050004; + public static final int abc_shrink_fade_out_from_bottom = 0x7f050005; + public static final int abc_slide_in_bottom = 0x7f050006; + public static final int abc_slide_in_top = 0x7f050007; + public static final int abc_slide_out_bottom = 0x7f050008; + public static final int abc_slide_out_top = 0x7f050009; + } + public static final class attr { + public static final int actionBarDivider = 0x7f0100c9; + public static final int actionBarItemBackground = 0x7f0100ca; + public static final int actionBarPopupTheme = 0x7f0100c3; + public static final int actionBarSize = 0x7f0100c8; + public static final int actionBarSplitStyle = 0x7f0100c5; + public static final int actionBarStyle = 0x7f0100c4; + public static final int actionBarTabBarStyle = 0x7f0100bf; + public static final int actionBarTabStyle = 0x7f0100be; + public static final int actionBarTabTextStyle = 0x7f0100c0; + public static final int actionBarTheme = 0x7f0100c6; + public static final int actionBarWidgetTheme = 0x7f0100c7; + public static final int actionButtonStyle = 0x7f0100e3; + public static final int actionDropDownStyle = 0x7f0100df; + public static final int actionLayout = 0x7f010072; + public static final int actionMenuTextAppearance = 0x7f0100cb; + public static final int actionMenuTextColor = 0x7f0100cc; + public static final int actionModeBackground = 0x7f0100cf; + public static final int actionModeCloseButtonStyle = 0x7f0100ce; + public static final int actionModeCloseDrawable = 0x7f0100d1; + public static final int actionModeCopyDrawable = 0x7f0100d3; + public static final int actionModeCutDrawable = 0x7f0100d2; + public static final int actionModeFindDrawable = 0x7f0100d7; + public static final int actionModePasteDrawable = 0x7f0100d4; + public static final int actionModePopupWindowStyle = 0x7f0100d9; + public static final int actionModeSelectAllDrawable = 0x7f0100d5; + public static final int actionModeShareDrawable = 0x7f0100d6; + public static final int actionModeSplitBackground = 0x7f0100d0; + public static final int actionModeStyle = 0x7f0100cd; + public static final int actionModeWebSearchDrawable = 0x7f0100d8; + public static final int actionOverflowButtonStyle = 0x7f0100c1; + public static final int actionOverflowMenuStyle = 0x7f0100c2; + public static final int actionProviderClass = 0x7f010074; + public static final int actionViewClass = 0x7f010073; + public static final int activityChooserViewStyle = 0x7f0100eb; + public static final int alertDialogButtonGroupStyle = 0x7f01010e; + public static final int alertDialogCenterButtons = 0x7f01010f; + public static final int alertDialogStyle = 0x7f01010d; + public static final int alertDialogTheme = 0x7f010110; + public static final int allowStacking = 0x7f010033; + public static final int arrowHeadLength = 0x7f010050; + public static final int arrowShaftLength = 0x7f010051; + public static final int autoCompleteTextViewStyle = 0x7f010115; + public static final int background = 0x7f010014; + public static final int backgroundSplit = 0x7f010016; + public static final int backgroundStacked = 0x7f010015; + public static final int backgroundTint = 0x7f010132; + public static final int backgroundTintMode = 0x7f010133; + public static final int barLength = 0x7f010052; + public static final int borderlessButtonStyle = 0x7f0100e8; + public static final int buttonBarButtonStyle = 0x7f0100e5; + public static final int buttonBarNegativeButtonStyle = 0x7f010113; + public static final int buttonBarNeutralButtonStyle = 0x7f010114; + public static final int buttonBarPositiveButtonStyle = 0x7f010112; + public static final int buttonBarStyle = 0x7f0100e4; + public static final int buttonPanelSideLayout = 0x7f01002a; + public static final int buttonStyle = 0x7f010116; + public static final int buttonStyleSmall = 0x7f010117; + public static final int buttonTint = 0x7f010043; + public static final int buttonTintMode = 0x7f010044; + public static final int checkboxStyle = 0x7f010118; + public static final int checkedTextViewStyle = 0x7f010119; + public static final int closeIcon = 0x7f010088; + public static final int closeItemLayout = 0x7f010024; + public static final int collapseContentDescription = 0x7f010129; + public static final int collapseIcon = 0x7f010128; + public static final int color = 0x7f01004c; + public static final int colorAccent = 0x7f010106; + public static final int colorButtonNormal = 0x7f01010a; + public static final int colorControlActivated = 0x7f010108; + public static final int colorControlHighlight = 0x7f010109; + public static final int colorControlNormal = 0x7f010107; + public static final int colorPrimary = 0x7f010104; + public static final int colorPrimaryDark = 0x7f010105; + public static final int colorSwitchThumbNormal = 0x7f01010b; + public static final int commitIcon = 0x7f01008d; + public static final int contentInsetEnd = 0x7f01001f; + public static final int contentInsetLeft = 0x7f010020; + public static final int contentInsetRight = 0x7f010021; + public static final int contentInsetStart = 0x7f01001e; + public static final int controlBackground = 0x7f01010c; + public static final int customNavigationLayout = 0x7f010017; + public static final int defaultQueryHint = 0x7f010087; + public static final int dialogPreferredPadding = 0x7f0100dd; + public static final int dialogTheme = 0x7f0100dc; + public static final int displayOptions = 0x7f01000d; + public static final int divider = 0x7f010013; + public static final int dividerHorizontal = 0x7f0100ea; + public static final int dividerPadding = 0x7f01005b; + public static final int dividerVertical = 0x7f0100e9; + public static final int drawableSize = 0x7f01004e; + public static final int drawerArrowStyle = 0x7f010000; + public static final int dropDownListViewStyle = 0x7f0100fc; + public static final int dropdownListPreferredItemHeight = 0x7f0100e0; + public static final int editTextBackground = 0x7f0100f1; + public static final int editTextColor = 0x7f0100f0; + public static final int editTextStyle = 0x7f01011a; + public static final int elevation = 0x7f010022; + public static final int expandActivityOverflowButtonDrawable = 0x7f010026; + public static final int gapBetweenBars = 0x7f01004f; + public static final int goIcon = 0x7f010089; + public static final int height = 0x7f010001; + public static final int hideOnContentScroll = 0x7f01001d; + public static final int homeAsUpIndicator = 0x7f0100e2; + public static final int homeLayout = 0x7f010018; + public static final int icon = 0x7f010011; + public static final int iconifiedByDefault = 0x7f010085; + public static final int imageButtonStyle = 0x7f0100f2; + public static final int indeterminateProgressStyle = 0x7f01001a; + public static final int initialActivityCount = 0x7f010025; + public static final int isLightTheme = 0x7f010002; + public static final int itemPadding = 0x7f01001c; + public static final int layout = 0x7f010084; + public static final int listChoiceBackgroundIndicator = 0x7f010103; + public static final int listDividerAlertDialog = 0x7f0100de; + public static final int listItemLayout = 0x7f01002e; + public static final int listLayout = 0x7f01002b; + public static final int listPopupWindowStyle = 0x7f0100fd; + public static final int listPreferredItemHeight = 0x7f0100f7; + public static final int listPreferredItemHeightLarge = 0x7f0100f9; + public static final int listPreferredItemHeightSmall = 0x7f0100f8; + public static final int listPreferredItemPaddingLeft = 0x7f0100fa; + public static final int listPreferredItemPaddingRight = 0x7f0100fb; + public static final int logo = 0x7f010012; + public static final int logoDescription = 0x7f01012c; + public static final int maxButtonHeight = 0x7f010127; + public static final int measureWithLargestChild = 0x7f010059; + public static final int multiChoiceItemLayout = 0x7f01002c; + public static final int navigationContentDescription = 0x7f01012b; + public static final int navigationIcon = 0x7f01012a; + public static final int navigationMode = 0x7f01000c; + public static final int overlapAnchor = 0x7f01007c; + public static final int paddingEnd = 0x7f010130; + public static final int paddingStart = 0x7f01012f; + public static final int panelBackground = 0x7f010100; + public static final int panelMenuListTheme = 0x7f010102; + public static final int panelMenuListWidth = 0x7f010101; + public static final int popupMenuStyle = 0x7f0100ee; + public static final int popupTheme = 0x7f010023; + public static final int popupWindowStyle = 0x7f0100ef; + public static final int preserveIconSpacing = 0x7f010075; + public static final int progressBarPadding = 0x7f01001b; + public static final int progressBarStyle = 0x7f010019; + public static final int queryBackground = 0x7f01008f; + public static final int queryHint = 0x7f010086; + public static final int radioButtonStyle = 0x7f01011b; + public static final int ratingBarStyle = 0x7f01011c; + public static final int searchHintIcon = 0x7f01008b; + public static final int searchIcon = 0x7f01008a; + public static final int searchViewStyle = 0x7f0100f6; + public static final int seekBarStyle = 0x7f01011d; + public static final int selectableItemBackground = 0x7f0100e6; + public static final int selectableItemBackgroundBorderless = 0x7f0100e7; + public static final int showAsAction = 0x7f010071; + public static final int showDividers = 0x7f01005a; + public static final int showText = 0x7f01009b; + public static final int singleChoiceItemLayout = 0x7f01002d; + public static final int spinBars = 0x7f01004d; + public static final int spinnerDropDownItemStyle = 0x7f0100e1; + public static final int spinnerStyle = 0x7f01011e; + public static final int splitTrack = 0x7f01009a; + public static final int state_above_anchor = 0x7f01007d; + public static final int submitBackground = 0x7f010090; + public static final int subtitle = 0x7f01000e; + public static final int subtitleTextAppearance = 0x7f010121; + public static final int subtitleTextColor = 0x7f01012e; + public static final int subtitleTextStyle = 0x7f010010; + public static final int suggestionRowLayout = 0x7f01008e; + public static final int switchMinWidth = 0x7f010098; + public static final int switchPadding = 0x7f010099; + public static final int switchStyle = 0x7f01011f; + public static final int switchTextAppearance = 0x7f010097; + public static final int textAllCaps = 0x7f010032; + public static final int textAppearanceLargePopupMenu = 0x7f0100da; + public static final int textAppearanceListItem = 0x7f0100fe; + public static final int textAppearanceListItemSmall = 0x7f0100ff; + public static final int textAppearanceSearchResultSubtitle = 0x7f0100f4; + public static final int textAppearanceSearchResultTitle = 0x7f0100f3; + public static final int textAppearanceSmallPopupMenu = 0x7f0100db; + public static final int textColorAlertDialogListItem = 0x7f010111; + public static final int textColorSearchUrl = 0x7f0100f5; + public static final int theme = 0x7f010131; + public static final int thickness = 0x7f010053; + public static final int thumbTextPadding = 0x7f010096; + public static final int title = 0x7f01000b; + public static final int titleMarginBottom = 0x7f010126; + public static final int titleMarginEnd = 0x7f010124; + public static final int titleMarginStart = 0x7f010123; + public static final int titleMarginTop = 0x7f010125; + public static final int titleMargins = 0x7f010122; + public static final int titleTextAppearance = 0x7f010120; + public static final int titleTextColor = 0x7f01012d; + public static final int titleTextStyle = 0x7f01000f; + public static final int toolbarNavigationButtonStyle = 0x7f0100ed; + public static final int toolbarStyle = 0x7f0100ec; + public static final int track = 0x7f010095; + public static final int voiceIcon = 0x7f01008c; + public static final int windowActionBar = 0x7f0100b4; + public static final int windowActionBarOverlay = 0x7f0100b6; + public static final int windowActionModeOverlay = 0x7f0100b7; + public static final int windowFixedHeightMajor = 0x7f0100bb; + public static final int windowFixedHeightMinor = 0x7f0100b9; + public static final int windowFixedWidthMajor = 0x7f0100b8; + public static final int windowFixedWidthMinor = 0x7f0100ba; + public static final int windowMinWidthMajor = 0x7f0100bc; + public static final int windowMinWidthMinor = 0x7f0100bd; + public static final int windowNoTitle = 0x7f0100b5; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs = 0x7f080003; + public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f080001; + public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f080004; + public static final int abc_allow_stacked_button_bar = 0x7f080000; + public static final int abc_config_actionMenuItemAllCaps = 0x7f080005; + public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f080002; + public static final int abc_config_closeDialogWhenTouchOutside = 0x7f080006; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f080007; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark = 0x7f0d006a; + public static final int abc_background_cache_hint_selector_material_light = 0x7f0d006b; + public static final int abc_color_highlight_material = 0x7f0d006c; + public static final int abc_input_method_navigation_guard = 0x7f0d0000; + public static final int abc_primary_text_disable_only_material_dark = 0x7f0d006d; + public static final int abc_primary_text_disable_only_material_light = 0x7f0d006e; + public static final int abc_primary_text_material_dark = 0x7f0d006f; + public static final int abc_primary_text_material_light = 0x7f0d0070; + public static final int abc_search_url_text = 0x7f0d0071; + public static final int abc_search_url_text_normal = 0x7f0d0001; + public static final int abc_search_url_text_pressed = 0x7f0d0002; + public static final int abc_search_url_text_selected = 0x7f0d0003; + public static final int abc_secondary_text_material_dark = 0x7f0d0072; + public static final int abc_secondary_text_material_light = 0x7f0d0073; + public static final int accent_material_dark = 0x7f0d0004; + public static final int accent_material_light = 0x7f0d0005; + public static final int background_floating_material_dark = 0x7f0d0006; + public static final int background_floating_material_light = 0x7f0d0007; + public static final int background_material_dark = 0x7f0d0008; + public static final int background_material_light = 0x7f0d0009; + public static final int bright_foreground_disabled_material_dark = 0x7f0d000a; + public static final int bright_foreground_disabled_material_light = 0x7f0d000b; + public static final int bright_foreground_inverse_material_dark = 0x7f0d000c; + public static final int bright_foreground_inverse_material_light = 0x7f0d000d; + public static final int bright_foreground_material_dark = 0x7f0d000e; + public static final int bright_foreground_material_light = 0x7f0d000f; + public static final int button_material_dark = 0x7f0d0010; + public static final int button_material_light = 0x7f0d0011; + public static final int dim_foreground_disabled_material_dark = 0x7f0d002f; + public static final int dim_foreground_disabled_material_light = 0x7f0d0030; + public static final int dim_foreground_material_dark = 0x7f0d0031; + public static final int dim_foreground_material_light = 0x7f0d0032; + public static final int foreground_material_dark = 0x7f0d0033; + public static final int foreground_material_light = 0x7f0d0034; + public static final int highlighted_text_material_dark = 0x7f0d0035; + public static final int highlighted_text_material_light = 0x7f0d0036; + public static final int hint_foreground_material_dark = 0x7f0d0037; + public static final int hint_foreground_material_light = 0x7f0d0038; + public static final int material_blue_grey_800 = 0x7f0d0039; + public static final int material_blue_grey_900 = 0x7f0d003a; + public static final int material_blue_grey_950 = 0x7f0d003b; + public static final int material_deep_teal_200 = 0x7f0d003c; + public static final int material_deep_teal_500 = 0x7f0d003d; + public static final int material_grey_100 = 0x7f0d003e; + public static final int material_grey_300 = 0x7f0d003f; + public static final int material_grey_50 = 0x7f0d0040; + public static final int material_grey_600 = 0x7f0d0041; + public static final int material_grey_800 = 0x7f0d0042; + public static final int material_grey_850 = 0x7f0d0043; + public static final int material_grey_900 = 0x7f0d0044; + public static final int primary_dark_material_dark = 0x7f0d004b; + public static final int primary_dark_material_light = 0x7f0d004c; + public static final int primary_material_dark = 0x7f0d004d; + public static final int primary_material_light = 0x7f0d004e; + public static final int primary_text_default_material_dark = 0x7f0d004f; + public static final int primary_text_default_material_light = 0x7f0d0050; + public static final int primary_text_disabled_material_dark = 0x7f0d0051; + public static final int primary_text_disabled_material_light = 0x7f0d0052; + public static final int ripple_material_dark = 0x7f0d0053; + public static final int ripple_material_light = 0x7f0d0054; + public static final int secondary_text_default_material_dark = 0x7f0d0055; + public static final int secondary_text_default_material_light = 0x7f0d0056; + public static final int secondary_text_disabled_material_dark = 0x7f0d0057; + public static final int secondary_text_disabled_material_light = 0x7f0d0058; + public static final int switch_thumb_disabled_material_dark = 0x7f0d0059; + public static final int switch_thumb_disabled_material_light = 0x7f0d005a; + public static final int switch_thumb_material_dark = 0x7f0d0078; + public static final int switch_thumb_material_light = 0x7f0d0079; + public static final int switch_thumb_normal_material_dark = 0x7f0d005b; + public static final int switch_thumb_normal_material_light = 0x7f0d005c; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material = 0x7f09000d; + public static final int abc_action_bar_default_height_material = 0x7f090001; + public static final int abc_action_bar_default_padding_end_material = 0x7f09000e; + public static final int abc_action_bar_default_padding_start_material = 0x7f09000f; + public static final int abc_action_bar_icon_vertical_padding_material = 0x7f09001b; + public static final int abc_action_bar_overflow_padding_end_material = 0x7f09001c; + public static final int abc_action_bar_overflow_padding_start_material = 0x7f09001d; + public static final int abc_action_bar_progress_bar_size = 0x7f090002; + public static final int abc_action_bar_stacked_max_height = 0x7f09001e; + public static final int abc_action_bar_stacked_tab_max_width = 0x7f09001f; + public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f090020; + public static final int abc_action_bar_subtitle_top_margin_material = 0x7f090021; + public static final int abc_action_button_min_height_material = 0x7f090022; + public static final int abc_action_button_min_width_material = 0x7f090023; + public static final int abc_action_button_min_width_overflow_material = 0x7f090024; + public static final int abc_alert_dialog_button_bar_height = 0x7f090000; + public static final int abc_button_inset_horizontal_material = 0x7f090025; + public static final int abc_button_inset_vertical_material = 0x7f090026; + public static final int abc_button_padding_horizontal_material = 0x7f090027; + public static final int abc_button_padding_vertical_material = 0x7f090028; + public static final int abc_config_prefDialogWidth = 0x7f090005; + public static final int abc_control_corner_material = 0x7f090029; + public static final int abc_control_inset_material = 0x7f09002a; + public static final int abc_control_padding_material = 0x7f09002b; + public static final int abc_dialog_fixed_height_major = 0x7f090006; + public static final int abc_dialog_fixed_height_minor = 0x7f090007; + public static final int abc_dialog_fixed_width_major = 0x7f090008; + public static final int abc_dialog_fixed_width_minor = 0x7f090009; + public static final int abc_dialog_list_padding_vertical_material = 0x7f09002c; + public static final int abc_dialog_min_width_major = 0x7f09000a; + public static final int abc_dialog_min_width_minor = 0x7f09000b; + public static final int abc_dialog_padding_material = 0x7f09002d; + public static final int abc_dialog_padding_top_material = 0x7f09002e; + public static final int abc_disabled_alpha_material_dark = 0x7f09002f; + public static final int abc_disabled_alpha_material_light = 0x7f090030; + public static final int abc_dropdownitem_icon_width = 0x7f090031; + public static final int abc_dropdownitem_text_padding_left = 0x7f090032; + public static final int abc_dropdownitem_text_padding_right = 0x7f090033; + public static final int abc_edit_text_inset_bottom_material = 0x7f090034; + public static final int abc_edit_text_inset_horizontal_material = 0x7f090035; + public static final int abc_edit_text_inset_top_material = 0x7f090036; + public static final int abc_floating_window_z = 0x7f090037; + public static final int abc_list_item_padding_horizontal_material = 0x7f090038; + public static final int abc_panel_menu_list_width = 0x7f090039; + public static final int abc_search_view_preferred_width = 0x7f09003a; + public static final int abc_search_view_text_min_width = 0x7f09000c; + public static final int abc_seekbar_track_background_height_material = 0x7f09003b; + public static final int abc_seekbar_track_progress_height_material = 0x7f09003c; + public static final int abc_select_dialog_padding_start_material = 0x7f09003d; + public static final int abc_switch_padding = 0x7f090018; + public static final int abc_text_size_body_1_material = 0x7f09003e; + public static final int abc_text_size_body_2_material = 0x7f09003f; + public static final int abc_text_size_button_material = 0x7f090040; + public static final int abc_text_size_caption_material = 0x7f090041; + public static final int abc_text_size_display_1_material = 0x7f090042; + public static final int abc_text_size_display_2_material = 0x7f090043; + public static final int abc_text_size_display_3_material = 0x7f090044; + public static final int abc_text_size_display_4_material = 0x7f090045; + public static final int abc_text_size_headline_material = 0x7f090046; + public static final int abc_text_size_large_material = 0x7f090047; + public static final int abc_text_size_medium_material = 0x7f090048; + public static final int abc_text_size_menu_material = 0x7f090049; + public static final int abc_text_size_small_material = 0x7f09004a; + public static final int abc_text_size_subhead_material = 0x7f09004b; + public static final int abc_text_size_subtitle_material_toolbar = 0x7f090003; + public static final int abc_text_size_title_material = 0x7f09004c; + public static final int abc_text_size_title_material_toolbar = 0x7f090004; + public static final int disabled_alpha_material_dark = 0x7f090062; + public static final int disabled_alpha_material_light = 0x7f090063; + public static final int highlight_alpha_material_colored = 0x7f090065; + public static final int highlight_alpha_material_dark = 0x7f090066; + public static final int highlight_alpha_material_light = 0x7f090067; + public static final int notification_large_icon_height = 0x7f090069; + public static final int notification_large_icon_width = 0x7f09006a; + public static final int notification_subtext_size = 0x7f09006b; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000; + public static final int abc_action_bar_item_background_material = 0x7f020001; + public static final int abc_btn_borderless_material = 0x7f020002; + public static final int abc_btn_check_material = 0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020005; + public static final int abc_btn_colored_material = 0x7f020006; + public static final int abc_btn_default_mtrl_shape = 0x7f020007; + public static final int abc_btn_radio_material = 0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a; + public static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b; + public static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c; + public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d; + public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e; + public static final int abc_cab_background_internal_bg = 0x7f02000f; + public static final int abc_cab_background_top_material = 0x7f020010; + public static final int abc_cab_background_top_mtrl_alpha = 0x7f020011; + public static final int abc_control_background_material = 0x7f020012; + public static final int abc_dialog_material_background_dark = 0x7f020013; + public static final int abc_dialog_material_background_light = 0x7f020014; + public static final int abc_edit_text_material = 0x7f020015; + public static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016; + public static final int abc_ic_clear_mtrl_alpha = 0x7f020017; + public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018; + public static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020019; + public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a; + public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b; + public static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c; + public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d; + public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e; + public static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001f; + public static final int abc_ic_search_api_mtrl_alpha = 0x7f020020; + public static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f020021; + public static final int abc_item_background_holo_dark = 0x7f020022; + public static final int abc_item_background_holo_light = 0x7f020023; + public static final int abc_list_divider_mtrl_alpha = 0x7f020024; + public static final int abc_list_focused_holo = 0x7f020025; + public static final int abc_list_longpressed_holo = 0x7f020026; + public static final int abc_list_pressed_holo_dark = 0x7f020027; + public static final int abc_list_pressed_holo_light = 0x7f020028; + public static final int abc_list_selector_background_transition_holo_dark = 0x7f020029; + public static final int abc_list_selector_background_transition_holo_light = 0x7f02002a; + public static final int abc_list_selector_disabled_holo_dark = 0x7f02002b; + public static final int abc_list_selector_disabled_holo_light = 0x7f02002c; + public static final int abc_list_selector_holo_dark = 0x7f02002d; + public static final int abc_list_selector_holo_light = 0x7f02002e; + public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f02002f; + public static final int abc_popup_background_mtrl_mult = 0x7f020030; + public static final int abc_ratingbar_full_material = 0x7f020031; + public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f020032; + public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f020033; + public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f020034; + public static final int abc_scrubber_primary_mtrl_alpha = 0x7f020035; + public static final int abc_scrubber_track_mtrl_alpha = 0x7f020036; + public static final int abc_seekbar_thumb_material = 0x7f020037; + public static final int abc_seekbar_track_material = 0x7f020038; + public static final int abc_spinner_mtrl_am_alpha = 0x7f020039; + public static final int abc_spinner_textfield_background_material = 0x7f02003a; + public static final int abc_switch_thumb_material = 0x7f02003b; + public static final int abc_switch_track_mtrl_alpha = 0x7f02003c; + public static final int abc_tab_indicator_material = 0x7f02003d; + public static final int abc_tab_indicator_mtrl_alpha = 0x7f02003e; + public static final int abc_text_cursor_material = 0x7f02003f; + public static final int abc_textfield_activated_mtrl_alpha = 0x7f020040; + public static final int abc_textfield_default_mtrl_alpha = 0x7f020041; + public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f020042; + public static final int abc_textfield_search_default_mtrl_alpha = 0x7f020043; + public static final int abc_textfield_search_material = 0x7f020044; + public static final int notification_template_icon_bg = 0x7f0200a4; + } + public static final class id { + public static final int action0 = 0x7f0e00ae; + public static final int action_bar = 0x7f0e0081; + public static final int action_bar_activity_content = 0x7f0e0000; + public static final int action_bar_container = 0x7f0e0080; + public static final int action_bar_root = 0x7f0e007c; + public static final int action_bar_spinner = 0x7f0e0001; + public static final int action_bar_subtitle = 0x7f0e0062; + public static final int action_bar_title = 0x7f0e0061; + public static final int action_context_bar = 0x7f0e0082; + public static final int action_divider = 0x7f0e00b2; + public static final int action_menu_divider = 0x7f0e0002; + public static final int action_menu_presenter = 0x7f0e0003; + public static final int action_mode_bar = 0x7f0e007e; + public static final int action_mode_bar_stub = 0x7f0e007d; + public static final int action_mode_close_button = 0x7f0e0063; + public static final int activity_chooser_view_content = 0x7f0e0064; + public static final int alertTitle = 0x7f0e0070; + public static final int always = 0x7f0e0039; + public static final int beginning = 0x7f0e0032; + public static final int buttonPanel = 0x7f0e006b; + public static final int cancel_action = 0x7f0e00af; + public static final int checkbox = 0x7f0e0079; + public static final int chronometer = 0x7f0e00b5; + public static final int collapseActionView = 0x7f0e003a; + public static final int contentPanel = 0x7f0e0071; + public static final int custom = 0x7f0e0077; + public static final int customPanel = 0x7f0e0076; + public static final int decor_content_parent = 0x7f0e007f; + public static final int default_activity_button = 0x7f0e0067; + public static final int disableHome = 0x7f0e000f; + public static final int edit_query = 0x7f0e0083; + public static final int end = 0x7f0e0021; + public static final int end_padder = 0x7f0e00ba; + public static final int expand_activities_button = 0x7f0e0065; + public static final int expanded_menu = 0x7f0e0078; + public static final int home = 0x7f0e0005; + public static final int homeAsUp = 0x7f0e0010; + public static final int icon = 0x7f0e0069; + public static final int ifRoom = 0x7f0e003b; + public static final int image = 0x7f0e0066; + public static final int info = 0x7f0e00b9; + public static final int line1 = 0x7f0e00b3; + public static final int line3 = 0x7f0e00b7; + public static final int listMode = 0x7f0e000c; + public static final int list_item = 0x7f0e0068; + public static final int media_actions = 0x7f0e00b1; + public static final int middle = 0x7f0e0033; + public static final int multiply = 0x7f0e0027; + public static final int never = 0x7f0e003c; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int parentPanel = 0x7f0e006d; + public static final int progress_circular = 0x7f0e0007; + public static final int progress_horizontal = 0x7f0e0008; + public static final int radio = 0x7f0e007b; + public static final int screen = 0x7f0e0028; + public static final int scrollIndicatorDown = 0x7f0e0075; + public static final int scrollIndicatorUp = 0x7f0e0072; + public static final int scrollView = 0x7f0e0073; + public static final int search_badge = 0x7f0e0085; + public static final int search_bar = 0x7f0e0084; + public static final int search_button = 0x7f0e0086; + public static final int search_close_btn = 0x7f0e008b; + public static final int search_edit_frame = 0x7f0e0087; + public static final int search_go_btn = 0x7f0e008d; + public static final int search_mag_icon = 0x7f0e0088; + public static final int search_plate = 0x7f0e0089; + public static final int search_src_text = 0x7f0e008a; + public static final int search_voice_btn = 0x7f0e008e; + public static final int select_dialog_listview = 0x7f0e008f; + public static final int shortcut = 0x7f0e007a; + public static final int showCustom = 0x7f0e0012; + public static final int showHome = 0x7f0e0013; + public static final int showTitle = 0x7f0e0014; + public static final int spacer = 0x7f0e006c; + public static final int split_action_bar = 0x7f0e0009; + public static final int src_atop = 0x7f0e0029; + public static final int src_in = 0x7f0e002a; + public static final int src_over = 0x7f0e002b; + public static final int status_bar_latest_event_content = 0x7f0e00b0; + public static final int submit_area = 0x7f0e008c; + public static final int tabMode = 0x7f0e000e; + public static final int text = 0x7f0e00b8; + public static final int text2 = 0x7f0e00b6; + public static final int textSpacerNoButtons = 0x7f0e0074; + public static final int time = 0x7f0e00b4; + public static final int title = 0x7f0e006a; + public static final int title_template = 0x7f0e006f; + public static final int topPanel = 0x7f0e006e; + public static final int up = 0x7f0e000a; + public static final int useLogo = 0x7f0e0015; + public static final int withText = 0x7f0e003d; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int abc_config_activityDefaultDur = 0x7f0b0002; + public static final int abc_config_activityShortDur = 0x7f0b0003; + public static final int abc_max_action_buttons = 0x7f0b0000; + public static final int cancel_button_image_alpha = 0x7f0b0004; + public static final int status_bar_notification_info_maxnum = 0x7f0b0006; + } + public static final class layout { + public static final int abc_action_bar_title_item = 0x7f040000; + public static final int abc_action_bar_up_container = 0x7f040001; + public static final int abc_action_bar_view_list_nav_layout = 0x7f040002; + public static final int abc_action_menu_item_layout = 0x7f040003; + public static final int abc_action_menu_layout = 0x7f040004; + public static final int abc_action_mode_bar = 0x7f040005; + public static final int abc_action_mode_close_item_material = 0x7f040006; + public static final int abc_activity_chooser_view = 0x7f040007; + public static final int abc_activity_chooser_view_list_item = 0x7f040008; + public static final int abc_alert_dialog_button_bar_material = 0x7f040009; + public static final int abc_alert_dialog_material = 0x7f04000a; + public static final int abc_dialog_title_material = 0x7f04000b; + public static final int abc_expanded_menu_layout = 0x7f04000c; + public static final int abc_list_menu_item_checkbox = 0x7f04000d; + public static final int abc_list_menu_item_icon = 0x7f04000e; + public static final int abc_list_menu_item_layout = 0x7f04000f; + public static final int abc_list_menu_item_radio = 0x7f040010; + public static final int abc_popup_menu_item_layout = 0x7f040011; + public static final int abc_screen_content_include = 0x7f040012; + public static final int abc_screen_simple = 0x7f040013; + public static final int abc_screen_simple_overlay_action_mode = 0x7f040014; + public static final int abc_screen_toolbar = 0x7f040015; + public static final int abc_search_dropdown_item_icons_2line = 0x7f040016; + public static final int abc_search_view = 0x7f040017; + public static final int abc_select_dialog_material = 0x7f040018; + public static final int notification_media_action = 0x7f04002a; + public static final int notification_media_cancel_action = 0x7f04002b; + public static final int notification_template_big_media = 0x7f04002c; + public static final int notification_template_big_media_narrow = 0x7f04002d; + public static final int notification_template_lines = 0x7f04002e; + public static final int notification_template_media = 0x7f04002f; + public static final int notification_template_part_chronometer = 0x7f040030; + public static final int notification_template_part_time = 0x7f040031; + public static final int select_dialog_item_material = 0x7f040036; + public static final int select_dialog_multichoice_material = 0x7f040037; + public static final int select_dialog_singlechoice_material = 0x7f040038; + public static final int support_simple_spinner_dropdown_item = 0x7f040039; + } + public static final class string { + public static final int abc_action_bar_home_description = 0x7f070000; + public static final int abc_action_bar_home_description_format = 0x7f070001; + public static final int abc_action_bar_home_subtitle_description_format = 0x7f070002; + public static final int abc_action_bar_up_description = 0x7f070003; + public static final int abc_action_menu_overflow_description = 0x7f070004; + public static final int abc_action_mode_done = 0x7f070005; + public static final int abc_activity_chooser_view_see_all = 0x7f070006; + public static final int abc_activitychooserview_choose_application = 0x7f070007; + public static final int abc_capital_off = 0x7f070008; + public static final int abc_capital_on = 0x7f070009; + public static final int abc_search_hint = 0x7f07000a; + public static final int abc_searchview_description_clear = 0x7f07000b; + public static final int abc_searchview_description_query = 0x7f07000c; + public static final int abc_searchview_description_search = 0x7f07000d; + public static final int abc_searchview_description_submit = 0x7f07000e; + public static final int abc_searchview_description_voice = 0x7f07000f; + public static final int abc_shareactionprovider_share_with = 0x7f070010; + public static final int abc_shareactionprovider_share_with_application = 0x7f070011; + public static final int abc_toolbar_collapse_description = 0x7f070012; + public static final int status_bar_notification_info_overflow = 0x7f07003d; + } + public static final class style { + public static final int AlertDialog_AppCompat = 0x7f0a0080; + public static final int AlertDialog_AppCompat_Light = 0x7f0a0081; + public static final int Animation_AppCompat_Dialog = 0x7f0a0082; + public static final int Animation_AppCompat_DropDownUp = 0x7f0a0083; + public static final int Base_AlertDialog_AppCompat = 0x7f0a0087; + public static final int Base_AlertDialog_AppCompat_Light = 0x7f0a0088; + public static final int Base_Animation_AppCompat_Dialog = 0x7f0a0089; + public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0a008a; + public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0a008c; + public static final int Base_DialogWindowTitle_AppCompat = 0x7f0a008b; + public static final int Base_TextAppearance_AppCompat = 0x7f0a0032; + public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0a0033; + public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0a0034; + public static final int Base_TextAppearance_AppCompat_Button = 0x7f0a001b; + public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0a0035; + public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0a0036; + public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0a0037; + public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0a0038; + public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0a0039; + public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0a003a; + public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0a0005; + public static final int Base_TextAppearance_AppCompat_Large = 0x7f0a003b; + public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0a0006; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a003c; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a003d; + public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0a003e; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0a0007; + public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0a003f; + public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0a008d; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a0040; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0a0041; + public static final int Base_TextAppearance_AppCompat_Small = 0x7f0a0042; + public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0a0008; + public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0a0043; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a0009; + public static final int Base_TextAppearance_AppCompat_Title = 0x7f0a0044; + public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0a000a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a0045; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a0046; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a0047; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a0048; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a0049; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a004a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a004b; + public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0a004c; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a007c; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a008e; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a004d; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a004e; + public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0a004f; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a0050; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a008f; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a0051; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a0052; + public static final int Base_ThemeOverlay_AppCompat = 0x7f0a0098; + public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0a0099; + public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0a009a; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a009b; + public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0a009c; + public static final int Base_Theme_AppCompat = 0x7f0a0053; + public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0a0090; + public static final int Base_Theme_AppCompat_Dialog = 0x7f0a000b; + public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0a0002; + public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0a0091; + public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0a0092; + public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0a0093; + public static final int Base_Theme_AppCompat_Light = 0x7f0a0054; + public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0a0094; + public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0a000c; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0003; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0a0095; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0a0096; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a0097; + public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f0a000d; + public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0a000e; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0a0017; + public static final int Base_V12_Widget_AppCompat_EditText = 0x7f0a0018; + public static final int Base_V21_Theme_AppCompat = 0x7f0a0055; + public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0a0056; + public static final int Base_V21_Theme_AppCompat_Light = 0x7f0a0057; + public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0a0058; + public static final int Base_V22_Theme_AppCompat = 0x7f0a007a; + public static final int Base_V22_Theme_AppCompat_Light = 0x7f0a007b; + public static final int Base_V23_Theme_AppCompat = 0x7f0a007d; + public static final int Base_V23_Theme_AppCompat_Light = 0x7f0a007e; + public static final int Base_V7_Theme_AppCompat = 0x7f0a009d; + public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0a009e; + public static final int Base_V7_Theme_AppCompat_Light = 0x7f0a009f; + public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0a00a0; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0a00a1; + public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0a00a2; + public static final int Base_Widget_AppCompat_ActionBar = 0x7f0a00a3; + public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0a00a4; + public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0a00a5; + public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0a0059; + public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0a005a; + public static final int Base_Widget_AppCompat_ActionButton = 0x7f0a005b; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0a005c; + public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0a005d; + public static final int Base_Widget_AppCompat_ActionMode = 0x7f0a00a6; + public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0a00a7; + public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0a0019; + public static final int Base_Widget_AppCompat_Button = 0x7f0a005e; + public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0a0062; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a00a9; + public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0a005f; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0060; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a00a8; + public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0a007f; + public static final int Base_Widget_AppCompat_Button_Small = 0x7f0a0061; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0063; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0064; + public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0a00aa; + public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0a0000; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0a00ab; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0a0065; + public static final int Base_Widget_AppCompat_EditText = 0x7f0a001a; + public static final int Base_Widget_AppCompat_ImageButton = 0x7f0a0066; + public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0a00ac; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a00ad; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a00ae; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a0067; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a0068; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a0069; + public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0a006a; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a006b; + public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0a006c; + public static final int Base_Widget_AppCompat_ListView = 0x7f0a006d; + public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0a006e; + public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0a006f; + public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0a0070; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0071; + public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0a00af; + public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0a000f; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a0010; + public static final int Base_Widget_AppCompat_RatingBar = 0x7f0a0072; + public static final int Base_Widget_AppCompat_SearchView = 0x7f0a00b0; + public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0a00b1; + public static final int Base_Widget_AppCompat_SeekBar = 0x7f0a0073; + public static final int Base_Widget_AppCompat_Spinner = 0x7f0a0074; + public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0a0004; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0a0075; + public static final int Base_Widget_AppCompat_Toolbar = 0x7f0a00b2; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a0076; + public static final int Platform_AppCompat = 0x7f0a0011; + public static final int Platform_AppCompat_Light = 0x7f0a0012; + public static final int Platform_ThemeOverlay_AppCompat = 0x7f0a0077; + public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0a0078; + public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0a0079; + public static final int Platform_V11_AppCompat = 0x7f0a0013; + public static final int Platform_V11_AppCompat_Light = 0x7f0a0014; + public static final int Platform_V14_AppCompat = 0x7f0a001c; + public static final int Platform_V14_AppCompat_Light = 0x7f0a001d; + public static final int Platform_Widget_AppCompat_Spinner = 0x7f0a0015; + public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0a0023; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0a0024; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0a0025; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0a0026; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0a0027; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0a0028; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0a002e; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0a0029; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0a002a; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0a002b; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0a002c; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0a002d; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0a002f; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0a0030; + public static final int TextAppearance_AppCompat = 0x7f0a00b4; + public static final int TextAppearance_AppCompat_Body1 = 0x7f0a00b5; + public static final int TextAppearance_AppCompat_Body2 = 0x7f0a00b6; + public static final int TextAppearance_AppCompat_Button = 0x7f0a00b7; + public static final int TextAppearance_AppCompat_Caption = 0x7f0a00b8; + public static final int TextAppearance_AppCompat_Display1 = 0x7f0a00b9; + public static final int TextAppearance_AppCompat_Display2 = 0x7f0a00ba; + public static final int TextAppearance_AppCompat_Display3 = 0x7f0a00bb; + public static final int TextAppearance_AppCompat_Display4 = 0x7f0a00bc; + public static final int TextAppearance_AppCompat_Headline = 0x7f0a00bd; + public static final int TextAppearance_AppCompat_Inverse = 0x7f0a00be; + public static final int TextAppearance_AppCompat_Large = 0x7f0a00bf; + public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0a00c0; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0a00c1; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0a00c2; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a00c3; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a00c4; + public static final int TextAppearance_AppCompat_Medium = 0x7f0a00c5; + public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0a00c6; + public static final int TextAppearance_AppCompat_Menu = 0x7f0a00c7; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a00c8; + public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0a00c9; + public static final int TextAppearance_AppCompat_Small = 0x7f0a00ca; + public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0a00cb; + public static final int TextAppearance_AppCompat_Subhead = 0x7f0a00cc; + public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a00cd; + public static final int TextAppearance_AppCompat_Title = 0x7f0a00ce; + public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0a00cf; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a00d0; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a00d1; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a00d2; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a00d3; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a00d4; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a00d5; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0a00d6; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a00d7; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0a00d8; + public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0a00d9; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a00da; + public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a00db; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a00dc; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a00dd; + public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0a00de; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a00df; + public static final int TextAppearance_StatusBar_EventContent = 0x7f0a001e; + public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f0a001f; + public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f0a0020; + public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f0a0021; + public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f0a0022; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a00e7; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a00e8; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a00e9; + public static final int ThemeOverlay_AppCompat = 0x7f0a00fc; + public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0a00fd; + public static final int ThemeOverlay_AppCompat_Dark = 0x7f0a00fe; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a00ff; + public static final int ThemeOverlay_AppCompat_Light = 0x7f0a0100; + public static final int Theme_AppCompat = 0x7f0a00ea; + public static final int Theme_AppCompat_CompactMenu = 0x7f0a00eb; + public static final int Theme_AppCompat_Dialog = 0x7f0a00ec; + public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0a00ef; + public static final int Theme_AppCompat_Dialog_Alert = 0x7f0a00ed; + public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0a00ee; + public static final int Theme_AppCompat_Light = 0x7f0a00f0; + public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0a00f1; + public static final int Theme_AppCompat_Light_Dialog = 0x7f0a00f2; + public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a00f5; + public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0a00f3; + public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a00f4; + public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0a00f6; + public static final int Theme_AppCompat_NoActionBar = 0x7f0a00f7; + public static final int Widget_AppCompat_ActionBar = 0x7f0a0105; + public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0a0106; + public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0a0107; + public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0a0108; + public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0a0109; + public static final int Widget_AppCompat_ActionButton = 0x7f0a010a; + public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0a010b; + public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0a010c; + public static final int Widget_AppCompat_ActionMode = 0x7f0a010d; + public static final int Widget_AppCompat_ActivityChooserView = 0x7f0a010e; + public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0a010f; + public static final int Widget_AppCompat_Button = 0x7f0a0110; + public static final int Widget_AppCompat_ButtonBar = 0x7f0a0116; + public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a0117; + public static final int Widget_AppCompat_Button_Borderless = 0x7f0a0111; + public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0112; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a0113; + public static final int Widget_AppCompat_Button_Colored = 0x7f0a0114; + public static final int Widget_AppCompat_Button_Small = 0x7f0a0115; + public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0118; + public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0119; + public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0a011a; + public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0a011b; + public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0a011c; + public static final int Widget_AppCompat_EditText = 0x7f0a011d; + public static final int Widget_AppCompat_ImageButton = 0x7f0a011e; + public static final int Widget_AppCompat_Light_ActionBar = 0x7f0a011f; + public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a0120; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0a0121; + public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a0122; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0a0123; + public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a0124; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a0125; + public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a0126; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0a0127; + public static final int Widget_AppCompat_Light_ActionButton = 0x7f0a0128; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0a0129; + public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0a012a; + public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0a012b; + public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0a012c; + public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0a012d; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0a012e; + public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0a012f; + public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0a0130; + public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0a0131; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0132; + public static final int Widget_AppCompat_Light_SearchView = 0x7f0a0133; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0a0134; + public static final int Widget_AppCompat_ListPopupWindow = 0x7f0a0135; + public static final int Widget_AppCompat_ListView = 0x7f0a0136; + public static final int Widget_AppCompat_ListView_DropDown = 0x7f0a0137; + public static final int Widget_AppCompat_ListView_Menu = 0x7f0a0138; + public static final int Widget_AppCompat_PopupMenu = 0x7f0a0139; + public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0a013a; + public static final int Widget_AppCompat_PopupWindow = 0x7f0a013b; + public static final int Widget_AppCompat_ProgressBar = 0x7f0a013c; + public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a013d; + public static final int Widget_AppCompat_RatingBar = 0x7f0a013e; + public static final int Widget_AppCompat_SearchView = 0x7f0a013f; + public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0a0140; + public static final int Widget_AppCompat_SeekBar = 0x7f0a0141; + public static final int Widget_AppCompat_Spinner = 0x7f0a0142; + public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0a0143; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0a0144; + public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0a0145; + public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0a0146; + public static final int Widget_AppCompat_Toolbar = 0x7f0a0147; + public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a0148; + } + public static final class styleable { + public static final int[] ActionBar = { 0x7f010001, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f0100e2 }; + public static final int[] ActionBarLayout = { 0x010100b3 }; + public static final int ActionBarLayout_android_layout_gravity = 0; + public static final int ActionBar_background = 10; + public static final int ActionBar_backgroundSplit = 12; + public static final int ActionBar_backgroundStacked = 11; + public static final int ActionBar_contentInsetEnd = 21; + public static final int ActionBar_contentInsetLeft = 22; + public static final int ActionBar_contentInsetRight = 23; + public static final int ActionBar_contentInsetStart = 20; + public static final int ActionBar_customNavigationLayout = 13; + public static final int ActionBar_displayOptions = 3; + public static final int ActionBar_divider = 9; + public static final int ActionBar_elevation = 24; + public static final int ActionBar_height = 0; + public static final int ActionBar_hideOnContentScroll = 19; + public static final int ActionBar_homeAsUpIndicator = 26; + public static final int ActionBar_homeLayout = 14; + public static final int ActionBar_icon = 7; + public static final int ActionBar_indeterminateProgressStyle = 16; + public static final int ActionBar_itemPadding = 18; + public static final int ActionBar_logo = 8; + public static final int ActionBar_navigationMode = 2; + public static final int ActionBar_popupTheme = 25; + public static final int ActionBar_progressBarPadding = 17; + public static final int ActionBar_progressBarStyle = 15; + public static final int ActionBar_subtitle = 4; + public static final int ActionBar_subtitleTextStyle = 6; + public static final int ActionBar_title = 1; + public static final int ActionBar_titleTextStyle = 5; + public static final int[] ActionMenuItemView = { 0x0101013f }; + public static final int ActionMenuItemView_android_minWidth = 0; + public static final int[] ActionMenuView = { }; + public static final int[] ActionMode = { 0x7f010001, 0x7f01000f, 0x7f010010, 0x7f010014, 0x7f010016, 0x7f010024 }; + public static final int ActionMode_background = 3; + public static final int ActionMode_backgroundSplit = 4; + public static final int ActionMode_closeItemLayout = 5; + public static final int ActionMode_height = 0; + public static final int ActionMode_subtitleTextStyle = 2; + public static final int ActionMode_titleTextStyle = 1; + public static final int[] ActivityChooserView = { 0x7f010025, 0x7f010026 }; + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + public static final int ActivityChooserView_initialActivityCount = 0; + public static final int[] AlertDialog = { 0x010100f2, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }; + public static final int AlertDialog_android_layout = 0; + public static final int AlertDialog_buttonPanelSideLayout = 1; + public static final int AlertDialog_listItemLayout = 5; + public static final int AlertDialog_listLayout = 2; + public static final int AlertDialog_multiChoiceItemLayout = 3; + public static final int AlertDialog_singleChoiceItemLayout = 4; + public static final int[] AppCompatTextView = { 0x01010034, 0x7f010032 }; + public static final int AppCompatTextView_android_textAppearance = 0; + public static final int AppCompatTextView_textAllCaps = 1; + public static final int[] ButtonBarLayout = { 0x7f010033 }; + public static final int ButtonBarLayout_allowStacking = 0; + public static final int[] CompoundButton = { 0x01010107, 0x7f010043, 0x7f010044 }; + public static final int CompoundButton_android_button = 0; + public static final int CompoundButton_buttonTint = 1; + public static final int CompoundButton_buttonTintMode = 2; + public static final int[] DrawerArrowToggle = { 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053 }; + public static final int DrawerArrowToggle_arrowHeadLength = 4; + public static final int DrawerArrowToggle_arrowShaftLength = 5; + public static final int DrawerArrowToggle_barLength = 6; + public static final int DrawerArrowToggle_color = 0; + public static final int DrawerArrowToggle_drawableSize = 2; + public static final int DrawerArrowToggle_gapBetweenBars = 3; + public static final int DrawerArrowToggle_spinBars = 1; + public static final int DrawerArrowToggle_thickness = 7; + public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f010013, 0x7f010059, 0x7f01005a, 0x7f01005b }; + public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + public static final int LinearLayoutCompat_android_baselineAligned = 2; + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + public static final int LinearLayoutCompat_android_gravity = 0; + public static final int LinearLayoutCompat_android_orientation = 1; + public static final int LinearLayoutCompat_android_weightSum = 4; + public static final int LinearLayoutCompat_divider = 5; + public static final int LinearLayoutCompat_dividerPadding = 8; + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + public static final int LinearLayoutCompat_showDividers = 7; + public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad }; + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; + public static final int MenuGroup_android_checkableBehavior = 5; + public static final int MenuGroup_android_enabled = 0; + public static final int MenuGroup_android_id = 1; + public static final int MenuGroup_android_menuCategory = 3; + public static final int MenuGroup_android_orderInCategory = 4; + public static final int MenuGroup_android_visible = 2; + public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074 }; + public static final int MenuItem_actionLayout = 14; + public static final int MenuItem_actionProviderClass = 16; + public static final int MenuItem_actionViewClass = 15; + public static final int MenuItem_android_alphabeticShortcut = 9; + public static final int MenuItem_android_checkable = 11; + public static final int MenuItem_android_checked = 3; + public static final int MenuItem_android_enabled = 1; + public static final int MenuItem_android_icon = 0; + public static final int MenuItem_android_id = 2; + public static final int MenuItem_android_menuCategory = 5; + public static final int MenuItem_android_numericShortcut = 10; + public static final int MenuItem_android_onClick = 12; + public static final int MenuItem_android_orderInCategory = 6; + public static final int MenuItem_android_title = 7; + public static final int MenuItem_android_titleCondensed = 8; + public static final int MenuItem_android_visible = 4; + public static final int MenuItem_showAsAction = 13; + public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010075 }; + public static final int MenuView_android_headerBackground = 4; + public static final int MenuView_android_horizontalDivider = 2; + public static final int MenuView_android_itemBackground = 5; + public static final int MenuView_android_itemIconDisabledAlpha = 6; + public static final int MenuView_android_itemTextAppearance = 1; + public static final int MenuView_android_verticalDivider = 3; + public static final int MenuView_android_windowAnimationStyle = 0; + public static final int MenuView_preserveIconSpacing = 7; + public static final int[] PopupWindow = { 0x01010176, 0x7f01007c }; + public static final int[] PopupWindowBackgroundState = { 0x7f01007d }; + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + public static final int PopupWindow_android_popupBackground = 0; + public static final int PopupWindow_overlapAnchor = 1; + public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090 }; + public static final int SearchView_android_focusable = 0; + public static final int SearchView_android_imeOptions = 3; + public static final int SearchView_android_inputType = 2; + public static final int SearchView_android_maxWidth = 1; + public static final int SearchView_closeIcon = 8; + public static final int SearchView_commitIcon = 13; + public static final int SearchView_defaultQueryHint = 7; + public static final int SearchView_goIcon = 9; + public static final int SearchView_iconifiedByDefault = 5; + public static final int SearchView_layout = 4; + public static final int SearchView_queryBackground = 15; + public static final int SearchView_queryHint = 6; + public static final int SearchView_searchHintIcon = 11; + public static final int SearchView_searchIcon = 10; + public static final int SearchView_submitBackground = 16; + public static final int SearchView_suggestionRowLayout = 14; + public static final int SearchView_voiceIcon = 12; + public static final int[] Spinner = { 0x01010176, 0x0101017b, 0x01010262, 0x7f010023 }; + public static final int Spinner_android_dropDownWidth = 2; + public static final int Spinner_android_popupBackground = 0; + public static final int Spinner_android_prompt = 1; + public static final int Spinner_popupTheme = 3; + public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b }; + public static final int SwitchCompat_android_textOff = 1; + public static final int SwitchCompat_android_textOn = 0; + public static final int SwitchCompat_android_thumb = 2; + public static final int SwitchCompat_showText = 9; + public static final int SwitchCompat_splitTrack = 8; + public static final int SwitchCompat_switchMinWidth = 6; + public static final int SwitchCompat_switchPadding = 7; + public static final int SwitchCompat_switchTextAppearance = 5; + public static final int SwitchCompat_thumbTextPadding = 4; + public static final int SwitchCompat_track = 3; + public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010032 }; + public static final int TextAppearance_android_shadowColor = 4; + public static final int TextAppearance_android_shadowDx = 5; + public static final int TextAppearance_android_shadowDy = 6; + public static final int TextAppearance_android_shadowRadius = 7; + public static final int TextAppearance_android_textColor = 3; + public static final int TextAppearance_android_textSize = 0; + public static final int TextAppearance_android_textStyle = 2; + public static final int TextAppearance_android_typeface = 1; + public static final int TextAppearance_textAllCaps = 8; + public static final int[] Theme = { 0x01010057, 0x010100ae, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, 0x7f01011a, 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, 0x7f01011f }; + public static final int Theme_actionBarDivider = 23; + public static final int Theme_actionBarItemBackground = 24; + public static final int Theme_actionBarPopupTheme = 17; + public static final int Theme_actionBarSize = 22; + public static final int Theme_actionBarSplitStyle = 19; + public static final int Theme_actionBarStyle = 18; + public static final int Theme_actionBarTabBarStyle = 13; + public static final int Theme_actionBarTabStyle = 12; + public static final int Theme_actionBarTabTextStyle = 14; + public static final int Theme_actionBarTheme = 20; + public static final int Theme_actionBarWidgetTheme = 21; + public static final int Theme_actionButtonStyle = 49; + public static final int Theme_actionDropDownStyle = 45; + public static final int Theme_actionMenuTextAppearance = 25; + public static final int Theme_actionMenuTextColor = 26; + public static final int Theme_actionModeBackground = 29; + public static final int Theme_actionModeCloseButtonStyle = 28; + public static final int Theme_actionModeCloseDrawable = 31; + public static final int Theme_actionModeCopyDrawable = 33; + public static final int Theme_actionModeCutDrawable = 32; + public static final int Theme_actionModeFindDrawable = 37; + public static final int Theme_actionModePasteDrawable = 34; + public static final int Theme_actionModePopupWindowStyle = 39; + public static final int Theme_actionModeSelectAllDrawable = 35; + public static final int Theme_actionModeShareDrawable = 36; + public static final int Theme_actionModeSplitBackground = 30; + public static final int Theme_actionModeStyle = 27; + public static final int Theme_actionModeWebSearchDrawable = 38; + public static final int Theme_actionOverflowButtonStyle = 15; + public static final int Theme_actionOverflowMenuStyle = 16; + public static final int Theme_activityChooserViewStyle = 57; + public static final int Theme_alertDialogButtonGroupStyle = 92; + public static final int Theme_alertDialogCenterButtons = 93; + public static final int Theme_alertDialogStyle = 91; + public static final int Theme_alertDialogTheme = 94; + public static final int Theme_android_windowAnimationStyle = 1; + public static final int Theme_android_windowIsFloating = 0; + public static final int Theme_autoCompleteTextViewStyle = 99; + public static final int Theme_borderlessButtonStyle = 54; + public static final int Theme_buttonBarButtonStyle = 51; + public static final int Theme_buttonBarNegativeButtonStyle = 97; + public static final int Theme_buttonBarNeutralButtonStyle = 98; + public static final int Theme_buttonBarPositiveButtonStyle = 96; + public static final int Theme_buttonBarStyle = 50; + public static final int Theme_buttonStyle = 100; + public static final int Theme_buttonStyleSmall = 101; + public static final int Theme_checkboxStyle = 102; + public static final int Theme_checkedTextViewStyle = 103; + public static final int Theme_colorAccent = 84; + public static final int Theme_colorButtonNormal = 88; + public static final int Theme_colorControlActivated = 86; + public static final int Theme_colorControlHighlight = 87; + public static final int Theme_colorControlNormal = 85; + public static final int Theme_colorPrimary = 82; + public static final int Theme_colorPrimaryDark = 83; + public static final int Theme_colorSwitchThumbNormal = 89; + public static final int Theme_controlBackground = 90; + public static final int Theme_dialogPreferredPadding = 43; + public static final int Theme_dialogTheme = 42; + public static final int Theme_dividerHorizontal = 56; + public static final int Theme_dividerVertical = 55; + public static final int Theme_dropDownListViewStyle = 74; + public static final int Theme_dropdownListPreferredItemHeight = 46; + public static final int Theme_editTextBackground = 63; + public static final int Theme_editTextColor = 62; + public static final int Theme_editTextStyle = 104; + public static final int Theme_homeAsUpIndicator = 48; + public static final int Theme_imageButtonStyle = 64; + public static final int Theme_listChoiceBackgroundIndicator = 81; + public static final int Theme_listDividerAlertDialog = 44; + public static final int Theme_listPopupWindowStyle = 75; + public static final int Theme_listPreferredItemHeight = 69; + public static final int Theme_listPreferredItemHeightLarge = 71; + public static final int Theme_listPreferredItemHeightSmall = 70; + public static final int Theme_listPreferredItemPaddingLeft = 72; + public static final int Theme_listPreferredItemPaddingRight = 73; + public static final int Theme_panelBackground = 78; + public static final int Theme_panelMenuListTheme = 80; + public static final int Theme_panelMenuListWidth = 79; + public static final int Theme_popupMenuStyle = 60; + public static final int Theme_popupWindowStyle = 61; + public static final int Theme_radioButtonStyle = 105; + public static final int Theme_ratingBarStyle = 106; + public static final int Theme_searchViewStyle = 68; + public static final int Theme_seekBarStyle = 107; + public static final int Theme_selectableItemBackground = 52; + public static final int Theme_selectableItemBackgroundBorderless = 53; + public static final int Theme_spinnerDropDownItemStyle = 47; + public static final int Theme_spinnerStyle = 108; + public static final int Theme_switchStyle = 109; + public static final int Theme_textAppearanceLargePopupMenu = 40; + public static final int Theme_textAppearanceListItem = 76; + public static final int Theme_textAppearanceListItemSmall = 77; + public static final int Theme_textAppearanceSearchResultSubtitle = 66; + public static final int Theme_textAppearanceSearchResultTitle = 65; + public static final int Theme_textAppearanceSmallPopupMenu = 41; + public static final int Theme_textColorAlertDialogListItem = 95; + public static final int Theme_textColorSearchUrl = 67; + public static final int Theme_toolbarNavigationButtonStyle = 59; + public static final int Theme_toolbarStyle = 58; + public static final int Theme_windowActionBar = 2; + public static final int Theme_windowActionBarOverlay = 4; + public static final int Theme_windowActionModeOverlay = 5; + public static final int Theme_windowFixedHeightMajor = 9; + public static final int Theme_windowFixedHeightMinor = 7; + public static final int Theme_windowFixedWidthMajor = 6; + public static final int Theme_windowFixedWidthMinor = 8; + public static final int Theme_windowMinWidthMajor = 10; + public static final int Theme_windowMinWidthMinor = 11; + public static final int Theme_windowNoTitle = 3; + public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f01000b, 0x7f01000e, 0x7f010012, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010023, 0x7f010120, 0x7f010121, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e }; + public static final int Toolbar_android_gravity = 0; + public static final int Toolbar_android_minHeight = 1; + public static final int Toolbar_collapseContentDescription = 19; + public static final int Toolbar_collapseIcon = 18; + public static final int Toolbar_contentInsetEnd = 6; + public static final int Toolbar_contentInsetLeft = 7; + public static final int Toolbar_contentInsetRight = 8; + public static final int Toolbar_contentInsetStart = 5; + public static final int Toolbar_logo = 4; + public static final int Toolbar_logoDescription = 22; + public static final int Toolbar_maxButtonHeight = 17; + public static final int Toolbar_navigationContentDescription = 21; + public static final int Toolbar_navigationIcon = 20; + public static final int Toolbar_popupTheme = 9; + public static final int Toolbar_subtitle = 3; + public static final int Toolbar_subtitleTextAppearance = 11; + public static final int Toolbar_subtitleTextColor = 24; + public static final int Toolbar_title = 2; + public static final int Toolbar_titleMarginBottom = 16; + public static final int Toolbar_titleMarginEnd = 14; + public static final int Toolbar_titleMarginStart = 13; + public static final int Toolbar_titleMarginTop = 15; + public static final int Toolbar_titleMargins = 12; + public static final int Toolbar_titleTextAppearance = 10; + public static final int Toolbar_titleTextColor = 23; + public static final int[] View = { 0x01010000, 0x010100da, 0x7f01012f, 0x7f010130, 0x7f010131 }; + public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010132, 0x7f010133 }; + public static final int ViewBackgroundHelper_android_background = 0; + public static final int ViewBackgroundHelper_backgroundTint = 1; + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 }; + public static final int ViewStubCompat_android_id = 0; + public static final int ViewStubCompat_android_inflatedId = 2; + public static final int ViewStubCompat_android_layout = 1; + public static final int View_android_focusable = 1; + public static final int View_android_theme = 0; + public static final int View_paddingEnd = 3; + public static final int View_paddingStart = 2; + public static final int View_theme = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/android/support/v7/mediarouter/R.java b/GPS/app/build/generated/source/r/debug/android/support/v7/mediarouter/R.java new file mode 100644 index 0000000..c88abe8 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/android/support/v7/mediarouter/R.java @@ -0,0 +1,1297 @@ +/* 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.mediarouter; + +public final class R { + public static final class anim { + public static final int abc_fade_in = 0x7f050000; + public static final int abc_fade_out = 0x7f050001; + public static final int abc_grow_fade_in_from_bottom = 0x7f050002; + public static final int abc_popup_enter = 0x7f050003; + public static final int abc_popup_exit = 0x7f050004; + public static final int abc_shrink_fade_out_from_bottom = 0x7f050005; + public static final int abc_slide_in_bottom = 0x7f050006; + public static final int abc_slide_in_top = 0x7f050007; + public static final int abc_slide_out_bottom = 0x7f050008; + public static final int abc_slide_out_top = 0x7f050009; + } + public static final class attr { + public static final int actionBarDivider = 0x7f0100c9; + public static final int actionBarItemBackground = 0x7f0100ca; + public static final int actionBarPopupTheme = 0x7f0100c3; + public static final int actionBarSize = 0x7f0100c8; + public static final int actionBarSplitStyle = 0x7f0100c5; + public static final int actionBarStyle = 0x7f0100c4; + public static final int actionBarTabBarStyle = 0x7f0100bf; + public static final int actionBarTabStyle = 0x7f0100be; + public static final int actionBarTabTextStyle = 0x7f0100c0; + public static final int actionBarTheme = 0x7f0100c6; + public static final int actionBarWidgetTheme = 0x7f0100c7; + public static final int actionButtonStyle = 0x7f0100e3; + public static final int actionDropDownStyle = 0x7f0100df; + public static final int actionLayout = 0x7f010072; + public static final int actionMenuTextAppearance = 0x7f0100cb; + public static final int actionMenuTextColor = 0x7f0100cc; + public static final int actionModeBackground = 0x7f0100cf; + public static final int actionModeCloseButtonStyle = 0x7f0100ce; + public static final int actionModeCloseDrawable = 0x7f0100d1; + public static final int actionModeCopyDrawable = 0x7f0100d3; + public static final int actionModeCutDrawable = 0x7f0100d2; + public static final int actionModeFindDrawable = 0x7f0100d7; + public static final int actionModePasteDrawable = 0x7f0100d4; + public static final int actionModePopupWindowStyle = 0x7f0100d9; + public static final int actionModeSelectAllDrawable = 0x7f0100d5; + public static final int actionModeShareDrawable = 0x7f0100d6; + public static final int actionModeSplitBackground = 0x7f0100d0; + public static final int actionModeStyle = 0x7f0100cd; + public static final int actionModeWebSearchDrawable = 0x7f0100d8; + public static final int actionOverflowButtonStyle = 0x7f0100c1; + public static final int actionOverflowMenuStyle = 0x7f0100c2; + public static final int actionProviderClass = 0x7f010074; + public static final int actionViewClass = 0x7f010073; + public static final int activityChooserViewStyle = 0x7f0100eb; + public static final int alertDialogButtonGroupStyle = 0x7f01010e; + public static final int alertDialogCenterButtons = 0x7f01010f; + public static final int alertDialogStyle = 0x7f01010d; + public static final int alertDialogTheme = 0x7f010110; + public static final int arrowHeadLength = 0x7f010050; + public static final int arrowShaftLength = 0x7f010051; + public static final int autoCompleteTextViewStyle = 0x7f010115; + public static final int background = 0x7f010014; + public static final int backgroundSplit = 0x7f010016; + public static final int backgroundStacked = 0x7f010015; + public static final int backgroundTint = 0x7f010132; + public static final int backgroundTintMode = 0x7f010133; + public static final int barLength = 0x7f010052; + public static final int borderlessButtonStyle = 0x7f0100e8; + public static final int buttonBarButtonStyle = 0x7f0100e5; + public static final int buttonBarNegativeButtonStyle = 0x7f010113; + public static final int buttonBarNeutralButtonStyle = 0x7f010114; + public static final int buttonBarPositiveButtonStyle = 0x7f010112; + public static final int buttonBarStyle = 0x7f0100e4; + public static final int buttonPanelSideLayout = 0x7f01002a; + public static final int buttonStyle = 0x7f010116; + public static final int buttonStyleSmall = 0x7f010117; + public static final int buttonTint = 0x7f010043; + public static final int buttonTintMode = 0x7f010044; + public static final int checkboxStyle = 0x7f010118; + public static final int checkedTextViewStyle = 0x7f010119; + public static final int closeIcon = 0x7f010088; + public static final int closeItemLayout = 0x7f010024; + public static final int collapseContentDescription = 0x7f010129; + public static final int collapseIcon = 0x7f010128; + public static final int color = 0x7f01004c; + public static final int colorAccent = 0x7f010106; + public static final int colorButtonNormal = 0x7f01010a; + public static final int colorControlActivated = 0x7f010108; + public static final int colorControlHighlight = 0x7f010109; + public static final int colorControlNormal = 0x7f010107; + public static final int colorPrimary = 0x7f010104; + public static final int colorPrimaryDark = 0x7f010105; + public static final int colorSwitchThumbNormal = 0x7f01010b; + public static final int commitIcon = 0x7f01008d; + public static final int contentInsetEnd = 0x7f01001f; + public static final int contentInsetLeft = 0x7f010020; + public static final int contentInsetRight = 0x7f010021; + public static final int contentInsetStart = 0x7f01001e; + public static final int controlBackground = 0x7f01010c; + public static final int customNavigationLayout = 0x7f010017; + public static final int defaultQueryHint = 0x7f010087; + public static final int dialogPreferredPadding = 0x7f0100dd; + public static final int dialogTheme = 0x7f0100dc; + public static final int displayOptions = 0x7f01000d; + public static final int divider = 0x7f010013; + public static final int dividerHorizontal = 0x7f0100ea; + public static final int dividerPadding = 0x7f01005b; + public static final int dividerVertical = 0x7f0100e9; + public static final int drawableSize = 0x7f01004e; + public static final int drawerArrowStyle = 0x7f010000; + public static final int dropDownListViewStyle = 0x7f0100fc; + public static final int dropdownListPreferredItemHeight = 0x7f0100e0; + public static final int editTextBackground = 0x7f0100f1; + public static final int editTextColor = 0x7f0100f0; + public static final int editTextStyle = 0x7f01011a; + public static final int elevation = 0x7f010022; + public static final int expandActivityOverflowButtonDrawable = 0x7f010026; + public static final int externalRouteEnabledDrawable = 0x7f010070; + public static final int gapBetweenBars = 0x7f01004f; + public static final int goIcon = 0x7f010089; + public static final int height = 0x7f010001; + public static final int hideOnContentScroll = 0x7f01001d; + public static final int homeAsUpIndicator = 0x7f0100e2; + public static final int homeLayout = 0x7f010018; + public static final int icon = 0x7f010011; + public static final int iconifiedByDefault = 0x7f010085; + public static final int indeterminateProgressStyle = 0x7f01001a; + public static final int initialActivityCount = 0x7f010025; + public static final int isLightTheme = 0x7f010002; + public static final int itemPadding = 0x7f01001c; + public static final int layout = 0x7f010084; + public static final int listChoiceBackgroundIndicator = 0x7f010103; + public static final int listDividerAlertDialog = 0x7f0100de; + public static final int listItemLayout = 0x7f01002e; + public static final int listLayout = 0x7f01002b; + public static final int listPopupWindowStyle = 0x7f0100fd; + public static final int listPreferredItemHeight = 0x7f0100f7; + public static final int listPreferredItemHeightLarge = 0x7f0100f9; + public static final int listPreferredItemHeightSmall = 0x7f0100f8; + public static final int listPreferredItemPaddingLeft = 0x7f0100fa; + public static final int listPreferredItemPaddingRight = 0x7f0100fb; + public static final int logo = 0x7f010012; + public static final int logoDescription = 0x7f01012c; + public static final int maxButtonHeight = 0x7f010127; + public static final int measureWithLargestChild = 0x7f010059; + public static final int mediaRouteButtonStyle = 0x7f010003; + public static final int mediaRouteCastDrawable = 0x7f010004; + public static final int mediaRouteConnectingDrawable = 0x7f010005; + public static final int mediaRouteOffDrawable = 0x7f010006; + public static final int mediaRouteOnDrawable = 0x7f010007; + public static final int mediaRoutePauseDrawable = 0x7f010008; + public static final int mediaRoutePlayDrawable = 0x7f010009; + public static final int mediaRouteSettingsDrawable = 0x7f01000a; + public static final int multiChoiceItemLayout = 0x7f01002c; + public static final int navigationContentDescription = 0x7f01012b; + public static final int navigationIcon = 0x7f01012a; + public static final int navigationMode = 0x7f01000c; + public static final int overlapAnchor = 0x7f01007c; + public static final int paddingEnd = 0x7f010130; + public static final int paddingStart = 0x7f01012f; + public static final int panelBackground = 0x7f010100; + public static final int panelMenuListTheme = 0x7f010102; + public static final int panelMenuListWidth = 0x7f010101; + public static final int popupMenuStyle = 0x7f0100ee; + public static final int popupTheme = 0x7f010023; + public static final int popupWindowStyle = 0x7f0100ef; + public static final int preserveIconSpacing = 0x7f010075; + public static final int progressBarPadding = 0x7f01001b; + public static final int progressBarStyle = 0x7f010019; + public static final int queryBackground = 0x7f01008f; + public static final int queryHint = 0x7f010086; + public static final int radioButtonStyle = 0x7f01011b; + public static final int ratingBarStyle = 0x7f01011c; + public static final int searchHintIcon = 0x7f01008b; + public static final int searchIcon = 0x7f01008a; + public static final int searchViewStyle = 0x7f0100f6; + public static final int selectableItemBackground = 0x7f0100e6; + public static final int selectableItemBackgroundBorderless = 0x7f0100e7; + public static final int showAsAction = 0x7f010071; + public static final int showDividers = 0x7f01005a; + public static final int showText = 0x7f01009b; + public static final int singleChoiceItemLayout = 0x7f01002d; + public static final int spinBars = 0x7f01004d; + public static final int spinnerDropDownItemStyle = 0x7f0100e1; + public static final int spinnerStyle = 0x7f01011e; + public static final int splitTrack = 0x7f01009a; + public static final int state_above_anchor = 0x7f01007d; + public static final int submitBackground = 0x7f010090; + public static final int subtitle = 0x7f01000e; + public static final int subtitleTextAppearance = 0x7f010121; + public static final int subtitleTextColor = 0x7f01012e; + public static final int subtitleTextStyle = 0x7f010010; + public static final int suggestionRowLayout = 0x7f01008e; + public static final int switchMinWidth = 0x7f010098; + public static final int switchPadding = 0x7f010099; + public static final int switchStyle = 0x7f01011f; + public static final int switchTextAppearance = 0x7f010097; + public static final int textAllCaps = 0x7f010032; + public static final int textAppearanceLargePopupMenu = 0x7f0100da; + public static final int textAppearanceListItem = 0x7f0100fe; + public static final int textAppearanceListItemSmall = 0x7f0100ff; + public static final int textAppearanceSearchResultSubtitle = 0x7f0100f4; + public static final int textAppearanceSearchResultTitle = 0x7f0100f3; + public static final int textAppearanceSmallPopupMenu = 0x7f0100db; + public static final int textColorAlertDialogListItem = 0x7f010111; + public static final int textColorSearchUrl = 0x7f0100f5; + public static final int theme = 0x7f010131; + public static final int thickness = 0x7f010053; + public static final int thumbTextPadding = 0x7f010096; + public static final int title = 0x7f01000b; + public static final int titleMarginBottom = 0x7f010126; + public static final int titleMarginEnd = 0x7f010124; + public static final int titleMarginStart = 0x7f010123; + public static final int titleMarginTop = 0x7f010125; + public static final int titleMargins = 0x7f010122; + public static final int titleTextAppearance = 0x7f010120; + public static final int titleTextColor = 0x7f01012d; + public static final int titleTextStyle = 0x7f01000f; + public static final int toolbarNavigationButtonStyle = 0x7f0100ed; + public static final int toolbarStyle = 0x7f0100ec; + public static final int track = 0x7f010095; + public static final int voiceIcon = 0x7f01008c; + public static final int windowActionBar = 0x7f0100b4; + public static final int windowActionBarOverlay = 0x7f0100b6; + public static final int windowActionModeOverlay = 0x7f0100b7; + public static final int windowFixedHeightMajor = 0x7f0100bb; + public static final int windowFixedHeightMinor = 0x7f0100b9; + public static final int windowFixedWidthMajor = 0x7f0100b8; + public static final int windowFixedWidthMinor = 0x7f0100ba; + public static final int windowMinWidthMajor = 0x7f0100bc; + public static final int windowMinWidthMinor = 0x7f0100bd; + public static final int windowNoTitle = 0x7f0100b5; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs = 0x7f080003; + public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f080001; + public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f080004; + public static final int abc_config_actionMenuItemAllCaps = 0x7f080005; + public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f080002; + public static final int abc_config_closeDialogWhenTouchOutside = 0x7f080006; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f080007; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark = 0x7f0d006a; + public static final int abc_background_cache_hint_selector_material_light = 0x7f0d006b; + public static final int abc_color_highlight_material = 0x7f0d006c; + public static final int abc_input_method_navigation_guard = 0x7f0d0000; + public static final int abc_primary_text_disable_only_material_dark = 0x7f0d006d; + public static final int abc_primary_text_disable_only_material_light = 0x7f0d006e; + public static final int abc_primary_text_material_dark = 0x7f0d006f; + public static final int abc_primary_text_material_light = 0x7f0d0070; + public static final int abc_search_url_text = 0x7f0d0071; + public static final int abc_search_url_text_normal = 0x7f0d0001; + public static final int abc_search_url_text_pressed = 0x7f0d0002; + public static final int abc_search_url_text_selected = 0x7f0d0003; + public static final int abc_secondary_text_material_dark = 0x7f0d0072; + public static final int abc_secondary_text_material_light = 0x7f0d0073; + public static final int accent_material_dark = 0x7f0d0004; + public static final int accent_material_light = 0x7f0d0005; + public static final int background_floating_material_dark = 0x7f0d0006; + public static final int background_floating_material_light = 0x7f0d0007; + public static final int background_material_dark = 0x7f0d0008; + public static final int background_material_light = 0x7f0d0009; + public static final int bright_foreground_disabled_material_dark = 0x7f0d000a; + public static final int bright_foreground_disabled_material_light = 0x7f0d000b; + public static final int bright_foreground_inverse_material_dark = 0x7f0d000c; + public static final int bright_foreground_inverse_material_light = 0x7f0d000d; + public static final int bright_foreground_material_dark = 0x7f0d000e; + public static final int bright_foreground_material_light = 0x7f0d000f; + public static final int button_material_dark = 0x7f0d0010; + public static final int button_material_light = 0x7f0d0011; + public static final int dim_foreground_disabled_material_dark = 0x7f0d002f; + public static final int dim_foreground_disabled_material_light = 0x7f0d0030; + public static final int dim_foreground_material_dark = 0x7f0d0031; + public static final int dim_foreground_material_light = 0x7f0d0032; + public static final int foreground_material_dark = 0x7f0d0033; + public static final int foreground_material_light = 0x7f0d0034; + public static final int highlighted_text_material_dark = 0x7f0d0035; + public static final int highlighted_text_material_light = 0x7f0d0036; + public static final int hint_foreground_material_dark = 0x7f0d0037; + public static final int hint_foreground_material_light = 0x7f0d0038; + public static final int material_blue_grey_800 = 0x7f0d0039; + public static final int material_blue_grey_900 = 0x7f0d003a; + public static final int material_blue_grey_950 = 0x7f0d003b; + public static final int material_deep_teal_200 = 0x7f0d003c; + public static final int material_deep_teal_500 = 0x7f0d003d; + public static final int material_grey_100 = 0x7f0d003e; + public static final int material_grey_300 = 0x7f0d003f; + public static final int material_grey_50 = 0x7f0d0040; + public static final int material_grey_600 = 0x7f0d0041; + public static final int material_grey_800 = 0x7f0d0042; + public static final int material_grey_850 = 0x7f0d0043; + public static final int material_grey_900 = 0x7f0d0044; + public static final int primary_dark_material_dark = 0x7f0d004b; + public static final int primary_dark_material_light = 0x7f0d004c; + public static final int primary_material_dark = 0x7f0d004d; + public static final int primary_material_light = 0x7f0d004e; + public static final int primary_text_default_material_dark = 0x7f0d004f; + public static final int primary_text_default_material_light = 0x7f0d0050; + public static final int primary_text_disabled_material_dark = 0x7f0d0051; + public static final int primary_text_disabled_material_light = 0x7f0d0052; + public static final int ripple_material_dark = 0x7f0d0053; + public static final int ripple_material_light = 0x7f0d0054; + public static final int secondary_text_default_material_dark = 0x7f0d0055; + public static final int secondary_text_default_material_light = 0x7f0d0056; + public static final int secondary_text_disabled_material_dark = 0x7f0d0057; + public static final int secondary_text_disabled_material_light = 0x7f0d0058; + public static final int switch_thumb_disabled_material_dark = 0x7f0d0059; + public static final int switch_thumb_disabled_material_light = 0x7f0d005a; + public static final int switch_thumb_material_dark = 0x7f0d0078; + public static final int switch_thumb_material_light = 0x7f0d0079; + public static final int switch_thumb_normal_material_dark = 0x7f0d005b; + public static final int switch_thumb_normal_material_light = 0x7f0d005c; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material = 0x7f09000d; + public static final int abc_action_bar_default_height_material = 0x7f090001; + public static final int abc_action_bar_default_padding_end_material = 0x7f09000e; + public static final int abc_action_bar_default_padding_start_material = 0x7f09000f; + public static final int abc_action_bar_icon_vertical_padding_material = 0x7f09001b; + public static final int abc_action_bar_overflow_padding_end_material = 0x7f09001c; + public static final int abc_action_bar_overflow_padding_start_material = 0x7f09001d; + public static final int abc_action_bar_progress_bar_size = 0x7f090002; + public static final int abc_action_bar_stacked_max_height = 0x7f09001e; + public static final int abc_action_bar_stacked_tab_max_width = 0x7f09001f; + public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f090020; + public static final int abc_action_bar_subtitle_top_margin_material = 0x7f090021; + public static final int abc_action_button_min_height_material = 0x7f090022; + public static final int abc_action_button_min_width_material = 0x7f090023; + public static final int abc_action_button_min_width_overflow_material = 0x7f090024; + public static final int abc_alert_dialog_button_bar_height = 0x7f090000; + public static final int abc_button_inset_horizontal_material = 0x7f090025; + public static final int abc_button_inset_vertical_material = 0x7f090026; + public static final int abc_button_padding_horizontal_material = 0x7f090027; + public static final int abc_button_padding_vertical_material = 0x7f090028; + public static final int abc_config_prefDialogWidth = 0x7f090005; + public static final int abc_control_corner_material = 0x7f090029; + public static final int abc_control_inset_material = 0x7f09002a; + public static final int abc_control_padding_material = 0x7f09002b; + public static final int abc_dialog_list_padding_vertical_material = 0x7f09002c; + public static final int abc_dialog_min_width_major = 0x7f09000a; + public static final int abc_dialog_min_width_minor = 0x7f09000b; + public static final int abc_dialog_padding_material = 0x7f09002d; + public static final int abc_dialog_padding_top_material = 0x7f09002e; + public static final int abc_disabled_alpha_material_dark = 0x7f09002f; + public static final int abc_disabled_alpha_material_light = 0x7f090030; + public static final int abc_dropdownitem_icon_width = 0x7f090031; + public static final int abc_dropdownitem_text_padding_left = 0x7f090032; + public static final int abc_dropdownitem_text_padding_right = 0x7f090033; + public static final int abc_edit_text_inset_bottom_material = 0x7f090034; + public static final int abc_edit_text_inset_horizontal_material = 0x7f090035; + public static final int abc_edit_text_inset_top_material = 0x7f090036; + public static final int abc_floating_window_z = 0x7f090037; + public static final int abc_list_item_padding_horizontal_material = 0x7f090038; + public static final int abc_panel_menu_list_width = 0x7f090039; + public static final int abc_search_view_preferred_width = 0x7f09003a; + public static final int abc_search_view_text_min_width = 0x7f09000c; + public static final int abc_switch_padding = 0x7f090018; + public static final int abc_text_size_body_1_material = 0x7f09003e; + public static final int abc_text_size_body_2_material = 0x7f09003f; + public static final int abc_text_size_button_material = 0x7f090040; + public static final int abc_text_size_caption_material = 0x7f090041; + public static final int abc_text_size_display_1_material = 0x7f090042; + public static final int abc_text_size_display_2_material = 0x7f090043; + public static final int abc_text_size_display_3_material = 0x7f090044; + public static final int abc_text_size_display_4_material = 0x7f090045; + public static final int abc_text_size_headline_material = 0x7f090046; + public static final int abc_text_size_large_material = 0x7f090047; + public static final int abc_text_size_medium_material = 0x7f090048; + public static final int abc_text_size_menu_material = 0x7f090049; + public static final int abc_text_size_small_material = 0x7f09004a; + public static final int abc_text_size_subhead_material = 0x7f09004b; + public static final int abc_text_size_subtitle_material_toolbar = 0x7f090003; + public static final int abc_text_size_title_material = 0x7f09004c; + public static final int abc_text_size_title_material_toolbar = 0x7f090004; + public static final int disabled_alpha_material_dark = 0x7f090062; + public static final int disabled_alpha_material_light = 0x7f090063; + public static final int highlight_alpha_material_colored = 0x7f090065; + public static final int highlight_alpha_material_dark = 0x7f090066; + public static final int highlight_alpha_material_light = 0x7f090067; + public static final int mr_media_route_controller_art_max_height = 0x7f090017; + public static final int notification_large_icon_height = 0x7f090069; + public static final int notification_large_icon_width = 0x7f09006a; + public static final int notification_subtext_size = 0x7f09006b; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000; + public static final int abc_action_bar_item_background_material = 0x7f020001; + public static final int abc_btn_borderless_material = 0x7f020002; + public static final int abc_btn_check_material = 0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020005; + public static final int abc_btn_colored_material = 0x7f020006; + public static final int abc_btn_default_mtrl_shape = 0x7f020007; + public static final int abc_btn_radio_material = 0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a; + public static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b; + public static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c; + public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d; + public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e; + public static final int abc_cab_background_internal_bg = 0x7f02000f; + public static final int abc_cab_background_top_material = 0x7f020010; + public static final int abc_cab_background_top_mtrl_alpha = 0x7f020011; + public static final int abc_control_background_material = 0x7f020012; + public static final int abc_dialog_material_background_dark = 0x7f020013; + public static final int abc_dialog_material_background_light = 0x7f020014; + public static final int abc_edit_text_material = 0x7f020015; + public static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016; + public static final int abc_ic_clear_mtrl_alpha = 0x7f020017; + public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018; + public static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020019; + public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a; + public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b; + public static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c; + public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d; + public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e; + public static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001f; + public static final int abc_ic_search_api_mtrl_alpha = 0x7f020020; + public static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f020021; + public static final int abc_item_background_holo_dark = 0x7f020022; + public static final int abc_item_background_holo_light = 0x7f020023; + public static final int abc_list_divider_mtrl_alpha = 0x7f020024; + public static final int abc_list_focused_holo = 0x7f020025; + public static final int abc_list_longpressed_holo = 0x7f020026; + public static final int abc_list_pressed_holo_dark = 0x7f020027; + public static final int abc_list_pressed_holo_light = 0x7f020028; + public static final int abc_list_selector_background_transition_holo_dark = 0x7f020029; + public static final int abc_list_selector_background_transition_holo_light = 0x7f02002a; + public static final int abc_list_selector_disabled_holo_dark = 0x7f02002b; + public static final int abc_list_selector_disabled_holo_light = 0x7f02002c; + public static final int abc_list_selector_holo_dark = 0x7f02002d; + public static final int abc_list_selector_holo_light = 0x7f02002e; + public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f02002f; + public static final int abc_popup_background_mtrl_mult = 0x7f020030; + public static final int abc_ratingbar_full_material = 0x7f020031; + public static final int abc_spinner_mtrl_am_alpha = 0x7f020039; + public static final int abc_spinner_textfield_background_material = 0x7f02003a; + public static final int abc_switch_thumb_material = 0x7f02003b; + public static final int abc_switch_track_mtrl_alpha = 0x7f02003c; + public static final int abc_tab_indicator_material = 0x7f02003d; + public static final int abc_tab_indicator_mtrl_alpha = 0x7f02003e; + public static final int abc_text_cursor_material = 0x7f02003f; + public static final int abc_textfield_activated_mtrl_alpha = 0x7f020040; + public static final int abc_textfield_default_mtrl_alpha = 0x7f020041; + public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f020042; + public static final int abc_textfield_search_default_mtrl_alpha = 0x7f020043; + public static final int abc_textfield_search_material = 0x7f020044; + public static final int ic_cast_dark = 0x7f020078; + public static final int ic_cast_disabled_light = 0x7f020079; + public static final int ic_cast_light = 0x7f02007a; + public static final int ic_cast_off_light = 0x7f02007b; + public static final int ic_cast_on_0_light = 0x7f02007c; + public static final int ic_cast_on_1_light = 0x7f02007d; + public static final int ic_cast_on_2_light = 0x7f02007e; + public static final int ic_cast_on_light = 0x7f02007f; + public static final int ic_media_pause = 0x7f020080; + public static final int ic_media_play = 0x7f020081; + public static final int ic_media_route_disabled_mono_dark = 0x7f020082; + public static final int ic_media_route_off_mono_dark = 0x7f020083; + public static final int ic_media_route_on_0_mono_dark = 0x7f020084; + public static final int ic_media_route_on_1_mono_dark = 0x7f020085; + public static final int ic_media_route_on_2_mono_dark = 0x7f020086; + public static final int ic_media_route_on_mono_dark = 0x7f020087; + public static final int ic_pause_dark = 0x7f020088; + public static final int ic_pause_light = 0x7f020089; + public static final int ic_play_dark = 0x7f02008a; + public static final int ic_play_light = 0x7f02008b; + public static final int ic_setting_dark = 0x7f020090; + public static final int ic_setting_light = 0x7f020091; + public static final int mr_ic_cast_dark = 0x7f020094; + public static final int mr_ic_cast_light = 0x7f020095; + public static final int mr_ic_media_route_connecting_mono_dark = 0x7f020096; + public static final int mr_ic_media_route_connecting_mono_light = 0x7f020097; + public static final int mr_ic_media_route_mono_dark = 0x7f020098; + public static final int mr_ic_media_route_mono_light = 0x7f020099; + public static final int mr_ic_pause_dark = 0x7f02009a; + public static final int mr_ic_pause_light = 0x7f02009b; + public static final int mr_ic_play_dark = 0x7f02009c; + public static final int mr_ic_play_light = 0x7f02009d; + public static final int mr_ic_settings_dark = 0x7f02009e; + public static final int mr_ic_settings_light = 0x7f02009f; + public static final int notification_template_icon_bg = 0x7f0200a4; + } + public static final class id { + public static final int action0 = 0x7f0e00ae; + public static final int action_bar = 0x7f0e0081; + public static final int action_bar_activity_content = 0x7f0e0000; + public static final int action_bar_container = 0x7f0e0080; + public static final int action_bar_root = 0x7f0e007c; + public static final int action_bar_spinner = 0x7f0e0001; + public static final int action_bar_subtitle = 0x7f0e0062; + public static final int action_bar_title = 0x7f0e0061; + public static final int action_context_bar = 0x7f0e0082; + public static final int action_divider = 0x7f0e00b2; + public static final int action_menu_divider = 0x7f0e0002; + public static final int action_menu_presenter = 0x7f0e0003; + public static final int action_mode_bar = 0x7f0e007e; + public static final int action_mode_bar_stub = 0x7f0e007d; + public static final int action_mode_close_button = 0x7f0e0063; + public static final int activity_chooser_view_content = 0x7f0e0064; + public static final int alertTitle = 0x7f0e0070; + public static final int always = 0x7f0e0039; + public static final int art = 0x7f0e00a6; + public static final int beginning = 0x7f0e0032; + public static final int buttonPanel = 0x7f0e006b; + public static final int buttons = 0x7f0e00ab; + public static final int cancel_action = 0x7f0e00af; + public static final int checkbox = 0x7f0e0079; + public static final int chronometer = 0x7f0e00b5; + public static final int collapseActionView = 0x7f0e003a; + public static final int contentPanel = 0x7f0e0071; + public static final int custom = 0x7f0e0077; + public static final int customPanel = 0x7f0e0076; + public static final int decor_content_parent = 0x7f0e007f; + public static final int default_activity_button = 0x7f0e0067; + public static final int default_control_frame = 0x7f0e00a5; + public static final int disableHome = 0x7f0e000f; + public static final int disconnect = 0x7f0e00ac; + public static final int edit_query = 0x7f0e0083; + public static final int end = 0x7f0e0021; + public static final int end_padder = 0x7f0e00ba; + public static final int expand_activities_button = 0x7f0e0065; + public static final int expanded_menu = 0x7f0e0078; + public static final int home = 0x7f0e0005; + public static final int homeAsUp = 0x7f0e0010; + public static final int icon = 0x7f0e0069; + public static final int ifRoom = 0x7f0e003b; + public static final int image = 0x7f0e0066; + public static final int info = 0x7f0e00b9; + public static final int line1 = 0x7f0e00b3; + public static final int line3 = 0x7f0e00b7; + public static final int listMode = 0x7f0e000c; + public static final int list_item = 0x7f0e0068; + public static final int media_actions = 0x7f0e00b1; + public static final int media_route_control_frame = 0x7f0e00a4; + public static final int media_route_list = 0x7f0e00a0; + public static final int media_route_volume_layout = 0x7f0e00a9; + public static final int media_route_volume_slider = 0x7f0e00aa; + public static final int middle = 0x7f0e0033; + public static final int multiply = 0x7f0e0027; + public static final int never = 0x7f0e003c; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int parentPanel = 0x7f0e006d; + public static final int play_pause = 0x7f0e00a7; + public static final int progress_circular = 0x7f0e0007; + public static final int progress_horizontal = 0x7f0e0008; + public static final int radio = 0x7f0e007b; + public static final int route_name = 0x7f0e00a2; + public static final int screen = 0x7f0e0028; + public static final int scrollView = 0x7f0e0073; + public static final int search_badge = 0x7f0e0085; + public static final int search_bar = 0x7f0e0084; + public static final int search_button = 0x7f0e0086; + public static final int search_close_btn = 0x7f0e008b; + public static final int search_edit_frame = 0x7f0e0087; + public static final int search_go_btn = 0x7f0e008d; + public static final int search_mag_icon = 0x7f0e0088; + public static final int search_plate = 0x7f0e0089; + public static final int search_src_text = 0x7f0e008a; + public static final int search_voice_btn = 0x7f0e008e; + public static final int select_dialog_listview = 0x7f0e008f; + public static final int settings = 0x7f0e00a3; + public static final int shortcut = 0x7f0e007a; + public static final int showCustom = 0x7f0e0012; + public static final int showHome = 0x7f0e0013; + public static final int showTitle = 0x7f0e0014; + public static final int split_action_bar = 0x7f0e0009; + public static final int src_atop = 0x7f0e0029; + public static final int src_in = 0x7f0e002a; + public static final int src_over = 0x7f0e002b; + public static final int status_bar_latest_event_content = 0x7f0e00b0; + public static final int stop = 0x7f0e00ad; + public static final int submit_area = 0x7f0e008c; + public static final int subtitle = 0x7f0e00a8; + public static final int tabMode = 0x7f0e000e; + public static final int text = 0x7f0e00b8; + public static final int text2 = 0x7f0e00b6; + public static final int textSpacerNoButtons = 0x7f0e0074; + public static final int time = 0x7f0e00b4; + public static final int title = 0x7f0e006a; + public static final int title_bar = 0x7f0e00a1; + public static final int title_template = 0x7f0e006f; + public static final int topPanel = 0x7f0e006e; + public static final int up = 0x7f0e000a; + public static final int useLogo = 0x7f0e0015; + public static final int withText = 0x7f0e003d; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int abc_config_activityDefaultDur = 0x7f0b0002; + public static final int abc_config_activityShortDur = 0x7f0b0003; + public static final int abc_max_action_buttons = 0x7f0b0000; + public static final int cancel_button_image_alpha = 0x7f0b0004; + public static final int status_bar_notification_info_maxnum = 0x7f0b0006; + } + public static final class layout { + public static final int abc_action_bar_title_item = 0x7f040000; + public static final int abc_action_bar_up_container = 0x7f040001; + public static final int abc_action_bar_view_list_nav_layout = 0x7f040002; + public static final int abc_action_menu_item_layout = 0x7f040003; + public static final int abc_action_menu_layout = 0x7f040004; + public static final int abc_action_mode_bar = 0x7f040005; + public static final int abc_action_mode_close_item_material = 0x7f040006; + public static final int abc_activity_chooser_view = 0x7f040007; + public static final int abc_activity_chooser_view_list_item = 0x7f040008; + public static final int abc_alert_dialog_material = 0x7f04000a; + public static final int abc_dialog_title_material = 0x7f04000b; + public static final int abc_expanded_menu_layout = 0x7f04000c; + public static final int abc_list_menu_item_checkbox = 0x7f04000d; + public static final int abc_list_menu_item_icon = 0x7f04000e; + public static final int abc_list_menu_item_layout = 0x7f04000f; + public static final int abc_list_menu_item_radio = 0x7f040010; + public static final int abc_popup_menu_item_layout = 0x7f040011; + public static final int abc_screen_content_include = 0x7f040012; + public static final int abc_screen_simple = 0x7f040013; + public static final int abc_screen_simple_overlay_action_mode = 0x7f040014; + public static final int abc_screen_toolbar = 0x7f040015; + public static final int abc_search_dropdown_item_icons_2line = 0x7f040016; + public static final int abc_search_view = 0x7f040017; + public static final int abc_select_dialog_material = 0x7f040018; + public static final int mr_media_route_chooser_dialog = 0x7f040027; + public static final int mr_media_route_controller_material_dialog_b = 0x7f040028; + public static final int mr_media_route_list_item = 0x7f040029; + public static final int notification_media_action = 0x7f04002a; + public static final int notification_media_cancel_action = 0x7f04002b; + public static final int notification_template_big_media = 0x7f04002c; + public static final int notification_template_big_media_narrow = 0x7f04002d; + public static final int notification_template_lines = 0x7f04002e; + public static final int notification_template_media = 0x7f04002f; + public static final int notification_template_part_chronometer = 0x7f040030; + public static final int notification_template_part_time = 0x7f040031; + public static final int select_dialog_item_material = 0x7f040036; + public static final int select_dialog_multichoice_material = 0x7f040037; + public static final int select_dialog_singlechoice_material = 0x7f040038; + public static final int support_simple_spinner_dropdown_item = 0x7f040039; + } + public static final class string { + public static final int abc_action_bar_home_description = 0x7f070000; + public static final int abc_action_bar_home_description_format = 0x7f070001; + public static final int abc_action_bar_home_subtitle_description_format = 0x7f070002; + public static final int abc_action_bar_up_description = 0x7f070003; + public static final int abc_action_menu_overflow_description = 0x7f070004; + public static final int abc_action_mode_done = 0x7f070005; + public static final int abc_activity_chooser_view_see_all = 0x7f070006; + public static final int abc_activitychooserview_choose_application = 0x7f070007; + public static final int abc_search_hint = 0x7f07000a; + public static final int abc_searchview_description_clear = 0x7f07000b; + public static final int abc_searchview_description_query = 0x7f07000c; + public static final int abc_searchview_description_search = 0x7f07000d; + public static final int abc_searchview_description_submit = 0x7f07000e; + public static final int abc_searchview_description_voice = 0x7f07000f; + public static final int abc_shareactionprovider_share_with = 0x7f070010; + public static final int abc_shareactionprovider_share_with_application = 0x7f070011; + public static final int abc_toolbar_collapse_description = 0x7f070012; + public static final int mr_media_route_button_content_description = 0x7f070030; + public static final int mr_media_route_chooser_searching = 0x7f070031; + public static final int mr_media_route_chooser_title = 0x7f070032; + public static final int mr_media_route_controller_disconnect = 0x7f070033; + public static final int mr_media_route_controller_no_info_available = 0x7f070034; + public static final int mr_media_route_controller_pause = 0x7f070035; + public static final int mr_media_route_controller_play = 0x7f070036; + public static final int mr_media_route_controller_settings_description = 0x7f070037; + public static final int mr_media_route_controller_stop = 0x7f070038; + public static final int mr_system_route_name = 0x7f070039; + public static final int mr_user_route_category_name = 0x7f07003a; + public static final int status_bar_notification_info_overflow = 0x7f07003d; + } + public static final class style { + public static final int AlertDialog_AppCompat = 0x7f0a0080; + public static final int AlertDialog_AppCompat_Light = 0x7f0a0081; + public static final int Animation_AppCompat_Dialog = 0x7f0a0082; + public static final int Animation_AppCompat_DropDownUp = 0x7f0a0083; + public static final int Base_AlertDialog_AppCompat = 0x7f0a0087; + public static final int Base_AlertDialog_AppCompat_Light = 0x7f0a0088; + public static final int Base_Animation_AppCompat_Dialog = 0x7f0a0089; + public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0a008a; + public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0a008c; + public static final int Base_DialogWindowTitle_AppCompat = 0x7f0a008b; + public static final int Base_TextAppearance_AppCompat = 0x7f0a0032; + public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0a0033; + public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0a0034; + public static final int Base_TextAppearance_AppCompat_Button = 0x7f0a001b; + public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0a0035; + public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0a0036; + public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0a0037; + public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0a0038; + public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0a0039; + public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0a003a; + public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0a0005; + public static final int Base_TextAppearance_AppCompat_Large = 0x7f0a003b; + public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0a0006; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a003c; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a003d; + public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0a003e; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0a0007; + public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0a003f; + public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0a008d; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a0040; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0a0041; + public static final int Base_TextAppearance_AppCompat_Small = 0x7f0a0042; + public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0a0008; + public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0a0043; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a0009; + public static final int Base_TextAppearance_AppCompat_Title = 0x7f0a0044; + public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0a000a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a0045; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a0046; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a0047; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a0048; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a0049; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a004a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a004b; + public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0a004c; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a007c; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a008e; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a004d; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a004e; + public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0a004f; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a0050; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a008f; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a0051; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a0052; + public static final int Base_ThemeOverlay_AppCompat = 0x7f0a0098; + public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0a0099; + public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0a009a; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a009b; + public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0a009c; + public static final int Base_Theme_AppCompat = 0x7f0a0053; + public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0a0090; + public static final int Base_Theme_AppCompat_Dialog = 0x7f0a000b; + public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0a0002; + public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0a0091; + public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0a0092; + public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0a0093; + public static final int Base_Theme_AppCompat_Light = 0x7f0a0054; + public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0a0094; + public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0a000c; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a0003; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0a0095; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0a0096; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a0097; + public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f0a000d; + public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0a000e; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0a0017; + public static final int Base_V12_Widget_AppCompat_EditText = 0x7f0a0018; + public static final int Base_V21_Theme_AppCompat = 0x7f0a0055; + public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0a0056; + public static final int Base_V21_Theme_AppCompat_Light = 0x7f0a0057; + public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0a0058; + public static final int Base_V22_Theme_AppCompat = 0x7f0a007a; + public static final int Base_V22_Theme_AppCompat_Light = 0x7f0a007b; + public static final int Base_V23_Theme_AppCompat = 0x7f0a007d; + public static final int Base_V23_Theme_AppCompat_Light = 0x7f0a007e; + public static final int Base_V7_Theme_AppCompat = 0x7f0a009d; + public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0a009e; + public static final int Base_V7_Theme_AppCompat_Light = 0x7f0a009f; + public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0a00a0; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0a00a1; + public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0a00a2; + public static final int Base_Widget_AppCompat_ActionBar = 0x7f0a00a3; + public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0a00a4; + public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0a00a5; + public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0a0059; + public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0a005a; + public static final int Base_Widget_AppCompat_ActionButton = 0x7f0a005b; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0a005c; + public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0a005d; + public static final int Base_Widget_AppCompat_ActionMode = 0x7f0a00a6; + public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0a00a7; + public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0a0019; + public static final int Base_Widget_AppCompat_Button = 0x7f0a005e; + public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0a0062; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a00a9; + public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0a005f; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0060; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a00a8; + public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0a007f; + public static final int Base_Widget_AppCompat_Button_Small = 0x7f0a0061; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0063; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0064; + public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0a00aa; + public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0a0000; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0a00ab; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0a0065; + public static final int Base_Widget_AppCompat_EditText = 0x7f0a001a; + public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0a00ac; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a00ad; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a00ae; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a0067; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a0068; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a0069; + public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0a006a; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a006b; + public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0a006c; + public static final int Base_Widget_AppCompat_ListView = 0x7f0a006d; + public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0a006e; + public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0a006f; + public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0a0070; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0a0071; + public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0a00af; + public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0a000f; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a0010; + public static final int Base_Widget_AppCompat_RatingBar = 0x7f0a0072; + public static final int Base_Widget_AppCompat_SearchView = 0x7f0a00b0; + public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0a00b1; + public static final int Base_Widget_AppCompat_Spinner = 0x7f0a0074; + public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0a0004; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0a0075; + public static final int Base_Widget_AppCompat_Toolbar = 0x7f0a00b2; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a0076; + public static final int Platform_AppCompat = 0x7f0a0011; + public static final int Platform_AppCompat_Light = 0x7f0a0012; + public static final int Platform_ThemeOverlay_AppCompat = 0x7f0a0077; + public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0a0078; + public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0a0079; + public static final int Platform_V11_AppCompat = 0x7f0a0013; + public static final int Platform_V11_AppCompat_Light = 0x7f0a0014; + public static final int Platform_V14_AppCompat = 0x7f0a001c; + public static final int Platform_V14_AppCompat_Light = 0x7f0a001d; + public static final int Platform_Widget_AppCompat_Spinner = 0x7f0a0015; + public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0a0023; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0a0024; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0a0025; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0a0026; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0a0027; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0a0028; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0a002e; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0a0029; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0a002a; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0a002b; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0a002c; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0a002d; + public static final int TextAppearance_AppCompat = 0x7f0a00b4; + public static final int TextAppearance_AppCompat_Body1 = 0x7f0a00b5; + public static final int TextAppearance_AppCompat_Body2 = 0x7f0a00b6; + public static final int TextAppearance_AppCompat_Button = 0x7f0a00b7; + public static final int TextAppearance_AppCompat_Caption = 0x7f0a00b8; + public static final int TextAppearance_AppCompat_Display1 = 0x7f0a00b9; + public static final int TextAppearance_AppCompat_Display2 = 0x7f0a00ba; + public static final int TextAppearance_AppCompat_Display3 = 0x7f0a00bb; + public static final int TextAppearance_AppCompat_Display4 = 0x7f0a00bc; + public static final int TextAppearance_AppCompat_Headline = 0x7f0a00bd; + public static final int TextAppearance_AppCompat_Inverse = 0x7f0a00be; + public static final int TextAppearance_AppCompat_Large = 0x7f0a00bf; + public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0a00c0; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0a00c1; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0a00c2; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0a00c3; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0a00c4; + public static final int TextAppearance_AppCompat_Medium = 0x7f0a00c5; + public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0a00c6; + public static final int TextAppearance_AppCompat_Menu = 0x7f0a00c7; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0a00c8; + public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0a00c9; + public static final int TextAppearance_AppCompat_Small = 0x7f0a00ca; + public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0a00cb; + public static final int TextAppearance_AppCompat_Subhead = 0x7f0a00cc; + public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0a00cd; + public static final int TextAppearance_AppCompat_Title = 0x7f0a00ce; + public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0a00cf; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0a00d0; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0a00d1; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0a00d2; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0a00d3; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0a00d4; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0a00d5; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0a00d6; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0a00d7; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0a00d8; + public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0a00d9; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0a00da; + public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0a00db; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0a00dc; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0a00dd; + public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0a00de; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0a00df; + public static final int TextAppearance_StatusBar_EventContent = 0x7f0a001e; + public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f0a001f; + public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f0a0020; + public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f0a0021; + public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f0a0022; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0a00e7; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0a00e8; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0a00e9; + public static final int ThemeOverlay_AppCompat = 0x7f0a00fc; + public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0a00fd; + public static final int ThemeOverlay_AppCompat_Dark = 0x7f0a00fe; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0a00ff; + public static final int ThemeOverlay_AppCompat_Light = 0x7f0a0100; + public static final int Theme_AppCompat = 0x7f0a00ea; + public static final int Theme_AppCompat_CompactMenu = 0x7f0a00eb; + public static final int Theme_AppCompat_Dialog = 0x7f0a00ec; + public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0a00ef; + public static final int Theme_AppCompat_Dialog_Alert = 0x7f0a00ed; + public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0a00ee; + public static final int Theme_AppCompat_Light = 0x7f0a00f0; + public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0a00f1; + public static final int Theme_AppCompat_Light_Dialog = 0x7f0a00f2; + public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0a00f5; + public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0a00f3; + public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0a00f4; + public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0a00f6; + public static final int Theme_AppCompat_NoActionBar = 0x7f0a00f7; + public static final int Theme_MediaRouter = 0x7f0a00fa; + public static final int Theme_MediaRouter_Light = 0x7f0a00fb; + public static final int Widget_AppCompat_ActionBar = 0x7f0a0105; + public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0a0106; + public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0a0107; + public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0a0108; + public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0a0109; + public static final int Widget_AppCompat_ActionButton = 0x7f0a010a; + public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0a010b; + public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0a010c; + public static final int Widget_AppCompat_ActionMode = 0x7f0a010d; + public static final int Widget_AppCompat_ActivityChooserView = 0x7f0a010e; + public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0a010f; + public static final int Widget_AppCompat_Button = 0x7f0a0110; + public static final int Widget_AppCompat_ButtonBar = 0x7f0a0116; + public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0a0117; + public static final int Widget_AppCompat_Button_Borderless = 0x7f0a0111; + public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0a0112; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0a0113; + public static final int Widget_AppCompat_Button_Colored = 0x7f0a0114; + public static final int Widget_AppCompat_Button_Small = 0x7f0a0115; + public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0a0118; + public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0a0119; + public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0a011a; + public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0a011b; + public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0a011c; + public static final int Widget_AppCompat_EditText = 0x7f0a011d; + public static final int Widget_AppCompat_Light_ActionBar = 0x7f0a011f; + public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0a0120; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0a0121; + public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0a0122; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0a0123; + public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0a0124; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0a0125; + public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0a0126; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0a0127; + public static final int Widget_AppCompat_Light_ActionButton = 0x7f0a0128; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0a0129; + public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0a012a; + public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0a012b; + public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0a012c; + public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0a012d; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0a012e; + public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0a012f; + public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0a0130; + public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0a0131; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0a0132; + public static final int Widget_AppCompat_Light_SearchView = 0x7f0a0133; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0a0134; + public static final int Widget_AppCompat_ListPopupWindow = 0x7f0a0135; + public static final int Widget_AppCompat_ListView = 0x7f0a0136; + public static final int Widget_AppCompat_ListView_DropDown = 0x7f0a0137; + public static final int Widget_AppCompat_ListView_Menu = 0x7f0a0138; + public static final int Widget_AppCompat_PopupMenu = 0x7f0a0139; + public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0a013a; + public static final int Widget_AppCompat_PopupWindow = 0x7f0a013b; + public static final int Widget_AppCompat_ProgressBar = 0x7f0a013c; + public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0a013d; + public static final int Widget_AppCompat_RatingBar = 0x7f0a013e; + public static final int Widget_AppCompat_SearchView = 0x7f0a013f; + public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0a0140; + public static final int Widget_AppCompat_Spinner = 0x7f0a0142; + public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0a0143; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0a0144; + public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0a0145; + public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0a0146; + public static final int Widget_AppCompat_Toolbar = 0x7f0a0147; + public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0a0148; + public static final int Widget_MediaRouter_Light_MediaRouteButton = 0x7f0a0151; + public static final int Widget_MediaRouter_MediaRouteButton = 0x7f0a0152; + } + public static final class styleable { + public static final int[] ActionBar = { 0x7f010001, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f0100e2 }; + public static final int[] ActionBarLayout = { 0x010100b3 }; + public static final int ActionBarLayout_android_layout_gravity = 0; + public static final int ActionBar_background = 10; + public static final int ActionBar_backgroundSplit = 12; + public static final int ActionBar_backgroundStacked = 11; + public static final int ActionBar_contentInsetEnd = 21; + public static final int ActionBar_contentInsetLeft = 22; + public static final int ActionBar_contentInsetRight = 23; + public static final int ActionBar_contentInsetStart = 20; + public static final int ActionBar_customNavigationLayout = 13; + public static final int ActionBar_displayOptions = 3; + public static final int ActionBar_divider = 9; + public static final int ActionBar_elevation = 24; + public static final int ActionBar_height = 0; + public static final int ActionBar_hideOnContentScroll = 19; + public static final int ActionBar_homeAsUpIndicator = 26; + public static final int ActionBar_homeLayout = 14; + public static final int ActionBar_icon = 7; + public static final int ActionBar_indeterminateProgressStyle = 16; + public static final int ActionBar_itemPadding = 18; + public static final int ActionBar_logo = 8; + public static final int ActionBar_navigationMode = 2; + public static final int ActionBar_popupTheme = 25; + public static final int ActionBar_progressBarPadding = 17; + public static final int ActionBar_progressBarStyle = 15; + public static final int ActionBar_subtitle = 4; + public static final int ActionBar_subtitleTextStyle = 6; + public static final int ActionBar_title = 1; + public static final int ActionBar_titleTextStyle = 5; + public static final int[] ActionMenuItemView = { 0x0101013f }; + public static final int ActionMenuItemView_android_minWidth = 0; + public static final int[] ActionMenuView = { }; + public static final int[] ActionMode = { 0x7f010001, 0x7f01000f, 0x7f010010, 0x7f010014, 0x7f010016, 0x7f010024 }; + public static final int ActionMode_background = 3; + public static final int ActionMode_backgroundSplit = 4; + public static final int ActionMode_closeItemLayout = 5; + public static final int ActionMode_height = 0; + public static final int ActionMode_subtitleTextStyle = 2; + public static final int ActionMode_titleTextStyle = 1; + public static final int[] ActivityChooserView = { 0x7f010025, 0x7f010026 }; + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + public static final int ActivityChooserView_initialActivityCount = 0; + public static final int[] AlertDialog = { 0x010100f2, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }; + public static final int AlertDialog_android_layout = 0; + public static final int AlertDialog_buttonPanelSideLayout = 1; + public static final int AlertDialog_listItemLayout = 5; + public static final int AlertDialog_listLayout = 2; + public static final int AlertDialog_multiChoiceItemLayout = 3; + public static final int AlertDialog_singleChoiceItemLayout = 4; + public static final int[] AppCompatTextView = { 0x01010034, 0x7f010032 }; + public static final int AppCompatTextView_android_textAppearance = 0; + public static final int AppCompatTextView_textAllCaps = 1; + public static final int[] CompoundButton = { 0x01010107, 0x7f010043, 0x7f010044 }; + public static final int CompoundButton_android_button = 0; + public static final int CompoundButton_buttonTint = 1; + public static final int CompoundButton_buttonTintMode = 2; + public static final int[] DrawerArrowToggle = { 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053 }; + public static final int DrawerArrowToggle_arrowHeadLength = 4; + public static final int DrawerArrowToggle_arrowShaftLength = 5; + public static final int DrawerArrowToggle_barLength = 6; + public static final int DrawerArrowToggle_color = 0; + public static final int DrawerArrowToggle_drawableSize = 2; + public static final int DrawerArrowToggle_gapBetweenBars = 3; + public static final int DrawerArrowToggle_spinBars = 1; + public static final int DrawerArrowToggle_thickness = 7; + public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f010013, 0x7f010059, 0x7f01005a, 0x7f01005b }; + public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + public static final int LinearLayoutCompat_android_baselineAligned = 2; + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + public static final int LinearLayoutCompat_android_gravity = 0; + public static final int LinearLayoutCompat_android_orientation = 1; + public static final int LinearLayoutCompat_android_weightSum = 4; + public static final int LinearLayoutCompat_divider = 5; + public static final int LinearLayoutCompat_dividerPadding = 8; + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + public static final int LinearLayoutCompat_showDividers = 7; + public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad }; + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + public static final int[] MediaRouteButton = { 0x0101013f, 0x01010140, 0x7f010070 }; + public static final int MediaRouteButton_android_minHeight = 1; + public static final int MediaRouteButton_android_minWidth = 0; + public static final int MediaRouteButton_externalRouteEnabledDrawable = 2; + public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; + public static final int MenuGroup_android_checkableBehavior = 5; + public static final int MenuGroup_android_enabled = 0; + public static final int MenuGroup_android_id = 1; + public static final int MenuGroup_android_menuCategory = 3; + public static final int MenuGroup_android_orderInCategory = 4; + public static final int MenuGroup_android_visible = 2; + public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074 }; + public static final int MenuItem_actionLayout = 14; + public static final int MenuItem_actionProviderClass = 16; + public static final int MenuItem_actionViewClass = 15; + public static final int MenuItem_android_alphabeticShortcut = 9; + public static final int MenuItem_android_checkable = 11; + public static final int MenuItem_android_checked = 3; + public static final int MenuItem_android_enabled = 1; + public static final int MenuItem_android_icon = 0; + public static final int MenuItem_android_id = 2; + public static final int MenuItem_android_menuCategory = 5; + public static final int MenuItem_android_numericShortcut = 10; + public static final int MenuItem_android_onClick = 12; + public static final int MenuItem_android_orderInCategory = 6; + public static final int MenuItem_android_title = 7; + public static final int MenuItem_android_titleCondensed = 8; + public static final int MenuItem_android_visible = 4; + public static final int MenuItem_showAsAction = 13; + public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010075 }; + public static final int MenuView_android_headerBackground = 4; + public static final int MenuView_android_horizontalDivider = 2; + public static final int MenuView_android_itemBackground = 5; + public static final int MenuView_android_itemIconDisabledAlpha = 6; + public static final int MenuView_android_itemTextAppearance = 1; + public static final int MenuView_android_verticalDivider = 3; + public static final int MenuView_android_windowAnimationStyle = 0; + public static final int MenuView_preserveIconSpacing = 7; + public static final int[] PopupWindow = { 0x01010176, 0x7f01007c }; + public static final int[] PopupWindowBackgroundState = { 0x7f01007d }; + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + public static final int PopupWindow_android_popupBackground = 0; + public static final int PopupWindow_overlapAnchor = 1; + public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090 }; + public static final int SearchView_android_focusable = 0; + public static final int SearchView_android_imeOptions = 3; + public static final int SearchView_android_inputType = 2; + public static final int SearchView_android_maxWidth = 1; + public static final int SearchView_closeIcon = 8; + public static final int SearchView_commitIcon = 13; + public static final int SearchView_defaultQueryHint = 7; + public static final int SearchView_goIcon = 9; + public static final int SearchView_iconifiedByDefault = 5; + public static final int SearchView_layout = 4; + public static final int SearchView_queryBackground = 15; + public static final int SearchView_queryHint = 6; + public static final int SearchView_searchHintIcon = 11; + public static final int SearchView_searchIcon = 10; + public static final int SearchView_submitBackground = 16; + public static final int SearchView_suggestionRowLayout = 14; + public static final int SearchView_voiceIcon = 12; + public static final int[] Spinner = { 0x01010176, 0x0101017b, 0x01010262, 0x7f010023 }; + public static final int Spinner_android_dropDownWidth = 2; + public static final int Spinner_android_popupBackground = 0; + public static final int Spinner_android_prompt = 1; + public static final int Spinner_popupTheme = 3; + public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b }; + public static final int SwitchCompat_android_textOff = 1; + public static final int SwitchCompat_android_textOn = 0; + public static final int SwitchCompat_android_thumb = 2; + public static final int SwitchCompat_showText = 9; + public static final int SwitchCompat_splitTrack = 8; + public static final int SwitchCompat_switchMinWidth = 6; + public static final int SwitchCompat_switchPadding = 7; + public static final int SwitchCompat_switchTextAppearance = 5; + public static final int SwitchCompat_thumbTextPadding = 4; + public static final int SwitchCompat_track = 3; + public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010032 }; + public static final int TextAppearance_android_textColor = 3; + public static final int TextAppearance_android_textSize = 0; + public static final int TextAppearance_android_textStyle = 2; + public static final int TextAppearance_android_typeface = 1; + public static final int TextAppearance_textAllCaps = 8; + public static final int[] Theme = { 0x01010057, 0x010100ae, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, 0x7f01011a, 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, 0x7f01011f }; + public static final int Theme_actionBarDivider = 23; + public static final int Theme_actionBarItemBackground = 24; + public static final int Theme_actionBarPopupTheme = 17; + public static final int Theme_actionBarSize = 22; + public static final int Theme_actionBarSplitStyle = 19; + public static final int Theme_actionBarStyle = 18; + public static final int Theme_actionBarTabBarStyle = 13; + public static final int Theme_actionBarTabStyle = 12; + public static final int Theme_actionBarTabTextStyle = 14; + public static final int Theme_actionBarTheme = 20; + public static final int Theme_actionBarWidgetTheme = 21; + public static final int Theme_actionButtonStyle = 49; + public static final int Theme_actionDropDownStyle = 45; + public static final int Theme_actionMenuTextAppearance = 25; + public static final int Theme_actionMenuTextColor = 26; + public static final int Theme_actionModeBackground = 29; + public static final int Theme_actionModeCloseButtonStyle = 28; + public static final int Theme_actionModeCloseDrawable = 31; + public static final int Theme_actionModeCopyDrawable = 33; + public static final int Theme_actionModeCutDrawable = 32; + public static final int Theme_actionModeFindDrawable = 37; + public static final int Theme_actionModePasteDrawable = 34; + public static final int Theme_actionModePopupWindowStyle = 39; + public static final int Theme_actionModeSelectAllDrawable = 35; + public static final int Theme_actionModeShareDrawable = 36; + public static final int Theme_actionModeSplitBackground = 30; + public static final int Theme_actionModeStyle = 27; + public static final int Theme_actionModeWebSearchDrawable = 38; + public static final int Theme_actionOverflowButtonStyle = 15; + public static final int Theme_actionOverflowMenuStyle = 16; + public static final int Theme_activityChooserViewStyle = 57; + public static final int Theme_alertDialogButtonGroupStyle = 92; + public static final int Theme_alertDialogCenterButtons = 93; + public static final int Theme_alertDialogStyle = 91; + public static final int Theme_alertDialogTheme = 94; + public static final int Theme_android_windowAnimationStyle = 1; + public static final int Theme_android_windowIsFloating = 0; + public static final int Theme_autoCompleteTextViewStyle = 99; + public static final int Theme_borderlessButtonStyle = 54; + public static final int Theme_buttonBarButtonStyle = 51; + public static final int Theme_buttonBarNegativeButtonStyle = 97; + public static final int Theme_buttonBarNeutralButtonStyle = 98; + public static final int Theme_buttonBarPositiveButtonStyle = 96; + public static final int Theme_buttonBarStyle = 50; + public static final int Theme_buttonStyle = 100; + public static final int Theme_buttonStyleSmall = 101; + public static final int Theme_checkboxStyle = 102; + public static final int Theme_checkedTextViewStyle = 103; + public static final int Theme_colorAccent = 84; + public static final int Theme_colorButtonNormal = 88; + public static final int Theme_colorControlActivated = 86; + public static final int Theme_colorControlHighlight = 87; + public static final int Theme_colorControlNormal = 85; + public static final int Theme_colorPrimary = 82; + public static final int Theme_colorPrimaryDark = 83; + public static final int Theme_colorSwitchThumbNormal = 89; + public static final int Theme_controlBackground = 90; + public static final int Theme_dialogPreferredPadding = 43; + public static final int Theme_dialogTheme = 42; + public static final int Theme_dividerHorizontal = 56; + public static final int Theme_dividerVertical = 55; + public static final int Theme_dropDownListViewStyle = 74; + public static final int Theme_dropdownListPreferredItemHeight = 46; + public static final int Theme_editTextBackground = 63; + public static final int Theme_editTextColor = 62; + public static final int Theme_editTextStyle = 104; + public static final int Theme_homeAsUpIndicator = 48; + public static final int Theme_listChoiceBackgroundIndicator = 81; + public static final int Theme_listDividerAlertDialog = 44; + public static final int Theme_listPopupWindowStyle = 75; + public static final int Theme_listPreferredItemHeight = 69; + public static final int Theme_listPreferredItemHeightLarge = 71; + public static final int Theme_listPreferredItemHeightSmall = 70; + public static final int Theme_listPreferredItemPaddingLeft = 72; + public static final int Theme_listPreferredItemPaddingRight = 73; + public static final int Theme_panelBackground = 78; + public static final int Theme_panelMenuListTheme = 80; + public static final int Theme_panelMenuListWidth = 79; + public static final int Theme_popupMenuStyle = 60; + public static final int Theme_popupWindowStyle = 61; + public static final int Theme_radioButtonStyle = 105; + public static final int Theme_ratingBarStyle = 106; + public static final int Theme_searchViewStyle = 68; + public static final int Theme_selectableItemBackground = 52; + public static final int Theme_selectableItemBackgroundBorderless = 53; + public static final int Theme_spinnerDropDownItemStyle = 47; + public static final int Theme_spinnerStyle = 108; + public static final int Theme_switchStyle = 109; + public static final int Theme_textAppearanceLargePopupMenu = 40; + public static final int Theme_textAppearanceListItem = 76; + public static final int Theme_textAppearanceListItemSmall = 77; + public static final int Theme_textAppearanceSearchResultSubtitle = 66; + public static final int Theme_textAppearanceSearchResultTitle = 65; + public static final int Theme_textAppearanceSmallPopupMenu = 41; + public static final int Theme_textColorAlertDialogListItem = 95; + public static final int Theme_textColorSearchUrl = 67; + public static final int Theme_toolbarNavigationButtonStyle = 59; + public static final int Theme_toolbarStyle = 58; + public static final int Theme_windowActionBar = 2; + public static final int Theme_windowActionBarOverlay = 4; + public static final int Theme_windowActionModeOverlay = 5; + public static final int Theme_windowFixedHeightMajor = 9; + public static final int Theme_windowFixedHeightMinor = 7; + public static final int Theme_windowFixedWidthMajor = 6; + public static final int Theme_windowFixedWidthMinor = 8; + public static final int Theme_windowMinWidthMajor = 10; + public static final int Theme_windowMinWidthMinor = 11; + public static final int Theme_windowNoTitle = 3; + public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f01000b, 0x7f01000e, 0x7f010012, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010023, 0x7f010120, 0x7f010121, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e }; + public static final int Toolbar_android_gravity = 0; + public static final int Toolbar_android_minHeight = 1; + public static final int Toolbar_collapseContentDescription = 19; + public static final int Toolbar_collapseIcon = 18; + public static final int Toolbar_contentInsetEnd = 6; + public static final int Toolbar_contentInsetLeft = 7; + public static final int Toolbar_contentInsetRight = 8; + public static final int Toolbar_contentInsetStart = 5; + public static final int Toolbar_logo = 4; + public static final int Toolbar_logoDescription = 22; + public static final int Toolbar_maxButtonHeight = 17; + public static final int Toolbar_navigationContentDescription = 21; + public static final int Toolbar_navigationIcon = 20; + public static final int Toolbar_popupTheme = 9; + public static final int Toolbar_subtitle = 3; + public static final int Toolbar_subtitleTextAppearance = 11; + public static final int Toolbar_subtitleTextColor = 24; + public static final int Toolbar_title = 2; + public static final int Toolbar_titleMarginBottom = 16; + public static final int Toolbar_titleMarginEnd = 14; + public static final int Toolbar_titleMarginStart = 13; + public static final int Toolbar_titleMarginTop = 15; + public static final int Toolbar_titleMargins = 12; + public static final int Toolbar_titleTextAppearance = 10; + public static final int Toolbar_titleTextColor = 23; + public static final int[] View = { 0x01010000, 0x010100da, 0x7f01012f, 0x7f010130, 0x7f010131 }; + public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010132, 0x7f010133 }; + public static final int ViewBackgroundHelper_android_background = 0; + public static final int ViewBackgroundHelper_backgroundTint = 1; + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 }; + public static final int ViewStubCompat_android_id = 0; + public static final int ViewStubCompat_android_inflatedId = 2; + public static final int ViewStubCompat_android_layout = 1; + public static final int View_android_focusable = 1; + public static final int View_android_theme = 0; + public static final int View_paddingEnd = 3; + public static final int View_paddingStart = 2; + public static final int View_theme = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/android/support/v7/recyclerview/R.java b/GPS/app/build/generated/source/r/debug/android/support/v7/recyclerview/R.java new file mode 100644 index 0000000..b242d73 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/android/support/v7/recyclerview/R.java @@ -0,0 +1,30 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ +package android.support.v7.recyclerview; + +public final class R { + public static final class attr { + public static final int layoutManager = 0x7f01007e; + public static final int reverseLayout = 0x7f010080; + public static final int spanCount = 0x7f01007f; + public static final int stackFromEnd = 0x7f010081; + } + public static final class dimen { + public static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f090068; + } + public static final class id { + public static final int item_touch_helper_previous_elevation = 0x7f0e0006; + } + public static final class styleable { + public static final int[] RecyclerView = { 0x010100c4, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081 }; + public static final int RecyclerView_android_orientation = 0; + public static final int RecyclerView_layoutManager = 1; + public static final int RecyclerView_reverseLayout = 3; + public static final int RecyclerView_spanCount = 2; + public static final int RecyclerView_stackFromEnd = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/example/user/gps/R.java b/GPS/app/build/generated/source/r/debug/com/example/user/gps/R.java new file mode 100644 index 0000000..89f3258 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/example/user/gps/R.java @@ -0,0 +1,9946 @@ +/* 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.example.user.gps; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f050000; + public static final int abc_fade_out=0x7f050001; + public static final int abc_grow_fade_in_from_bottom=0x7f050002; + public static final int abc_popup_enter=0x7f050003; + public static final int abc_popup_exit=0x7f050004; + public static final int abc_shrink_fade_out_from_bottom=0x7f050005; + public static final int abc_slide_in_bottom=0x7f050006; + public static final int abc_slide_in_top=0x7f050007; + public static final int abc_slide_out_bottom=0x7f050008; + public static final int abc_slide_out_top=0x7f050009; + public static final int design_fab_in=0x7f05000a; + public static final int design_fab_out=0x7f05000b; + public static final int design_snackbar_in=0x7f05000c; + public static final int design_snackbar_out=0x7f05000d; + } + public static final class array { + public static final int location_array=0x7f0c0000; + } + public static final class attr { + /**

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

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

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

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

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

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f0100c8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=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 final int actionBarStyle=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 final int actionBarTabBarStyle=0x7f0100bf; + /**

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

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

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

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

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

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

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=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 final int actionMenuTextAppearance=0x7f0100cb; + /**

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int adUnitId=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 final int alertDialogButtonGroupStyle=0x7f01010e; + /**

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

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

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

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

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

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

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

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

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
holo_dark0
holo_light1
+ */ + public static final int appTheme=0x7f010134; + /**

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

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

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

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

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

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

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

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

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

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

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

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

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f010133; + /**

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

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

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

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

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

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

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

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

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

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

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

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

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

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 one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ */ + public static final int buttonSize=0x7f010091; + /**

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

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

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

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

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f010044; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + + + +
ConstantValueDescription
google_wallet_classic1
google_wallet_grayscale2
google_wallet_monochrome3
android_pay_dark4
android_pay_light5
android_pay_light_with_border6
classic1
grayscale2
monochrome3
+ */ + public static final int buyButtonAppearance=0x7f01013b; + /**

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
match_parent-1
wrap_content-2
+ */ + public static final int buyButtonHeight=0x7f010138; + /**

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
buy_with5
logo_only6
donate_with7
buy_with_google1
buy_now2
book_now3
donate_with_google4
+ */ + public static final int buyButtonText=0x7f01013a; + /**

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
match_parent-1
wrap_content-2
+ */ + public static final int buyButtonWidth=0x7f010139; + /**

Must be a floating point value, such as "1.2". +

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

Must be a floating point value, such as "1.2". +

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

Must be a floating point value, such as "1.2". +

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

Must be a floating point value, such as "1.2". +

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

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cameraZoom=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 final int checkboxStyle=0x7f010118; + /**

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

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int circleCrop=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 final int closeIcon=0x7f010088; + /**

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

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

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

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

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

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=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 final int collapsedTitleTextAppearance=0x7f01003c; + /**

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ */ + public static final int colorScheme=0x7f010092; + /**

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=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 final int counterOverflowTextAppearance=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 final int counterTextAppearance=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 final int customNavigationLayout=0x7f010017; + /**

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

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

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

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

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

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

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f01000d; + /**

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
production1
test3
sandbox0
strict_sandbox2
+ */ + public static final int environment=0x7f010135; + /**

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=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 final int errorTextAppearance=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 final int expandActivityOverflowButtonDrawable=0x7f010026; + /**

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

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

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

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f010041; + /**

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

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

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

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

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

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

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=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 final int expandedTitleMarginTop=0x7f010038; + /**

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

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

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ */ + public static final int fabSize=0x7f010055; + /**

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

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

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
buyButton1
selectionDetails2
+ */ + public static final int fragmentMode=0x7f010137; + /**

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

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

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

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

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

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

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

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=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 final int hintAnimationEnabled=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 final int hintTextAppearance=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 final int homeAsUpIndicator=0x7f0100e2; + /**

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

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

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

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

Must be a floating point value, such as "1.2". +

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

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ */ + public static final int imageAspectRatioAdjust=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 final int imageButtonStyle=0x7f0100f2; + /**

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

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

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

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

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f010082; + /**

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f01004a; + /**

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

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

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f010034; + /**

Must be a floating point value, such as "1.2". +

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

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

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

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

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f010030; + /**

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

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

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

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=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 final int listLayout=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 final int listPopupWindowStyle=0x7f0100fd; + /**

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ */ + public static final int mapType=0x7f01005f; + /**

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

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int maskedWalletDetailsBackground=0x7f01013e; + /**

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

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int maskedWalletDetailsButtonBackground=0x7f010140; + /**

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

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

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
google_wallet_classic1
google_wallet_monochrome2
android_pay3
classic1
monochrome2
+ */ + public static final int maskedWalletDetailsLogoImageType=0x7f010142; + /**

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

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

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

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=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 final int maxButtonHeight=0x7f010127; + /**

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f01000c; + /**

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + */ + public static final int scopeUris=0x7f010093; + /**

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

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

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

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

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

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

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

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

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

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=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 final int showText=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 final int singleChoiceItemLayout=0x7f01002d; + /**

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

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

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

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

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

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

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

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

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

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

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=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 final int statusBarBackground=0x7f010046; + /**

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=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 final int tabIndicatorColor=0x7f01009c; + /**

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=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 final int tabMaxWidth=0x7f0100a3; + /**

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

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

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f0100a0; + /**

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

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

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

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

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

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

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

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

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

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

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=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 final int tabTextAppearance=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 final int tabTextColor=0x7f0100a5; + /**

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

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=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 final int textAppearanceLargePopupMenu=0x7f0100da; + /**

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=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 final int titleMarginBottom=0x7f010126; + /**

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useViewLifecycle=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 final int voiceIcon=0x7f01008c; + /**

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
slide1
none2
+ */ + public static final int windowTransitionStyle=0x7f01004b; + /**

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int zOrderOnTop=0x7f01006d; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f080003; + public static final int abc_action_bar_embed_tabs_pre_jb=0x7f080001; + public static final int abc_action_bar_expanded_action_views_exclusive=0x7f080004; + public static final int abc_allow_stacked_button_bar=0x7f080000; + public static final int abc_config_actionMenuItemAllCaps=0x7f080005; + public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f080002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f080006; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f080007; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f0d006a; + public static final int abc_background_cache_hint_selector_material_light=0x7f0d006b; + public static final int abc_color_highlight_material=0x7f0d006c; + public static final int abc_input_method_navigation_guard=0x7f0d0000; + public static final int abc_primary_text_disable_only_material_dark=0x7f0d006d; + public static final int abc_primary_text_disable_only_material_light=0x7f0d006e; + public static final int abc_primary_text_material_dark=0x7f0d006f; + public static final int abc_primary_text_material_light=0x7f0d0070; + public static final int abc_search_url_text=0x7f0d0071; + public static final int abc_search_url_text_normal=0x7f0d0001; + public static final int abc_search_url_text_pressed=0x7f0d0002; + public static final int abc_search_url_text_selected=0x7f0d0003; + public static final int abc_secondary_text_material_dark=0x7f0d0072; + public static final int abc_secondary_text_material_light=0x7f0d0073; + public static final int accent_material_dark=0x7f0d0004; + public static final int accent_material_light=0x7f0d0005; + public static final int background_floating_material_dark=0x7f0d0006; + public static final int background_floating_material_light=0x7f0d0007; + public static final int background_material_dark=0x7f0d0008; + public static final int background_material_light=0x7f0d0009; + public static final int bright_foreground_disabled_material_dark=0x7f0d000a; + public static final int bright_foreground_disabled_material_light=0x7f0d000b; + public static final int bright_foreground_inverse_material_dark=0x7f0d000c; + public static final int bright_foreground_inverse_material_light=0x7f0d000d; + public static final int bright_foreground_material_dark=0x7f0d000e; + public static final int bright_foreground_material_light=0x7f0d000f; + public static final int button_material_dark=0x7f0d0010; + public static final int button_material_light=0x7f0d0011; + public static final int colorAccent=0x7f0d0012; + public static final int colorPrimary=0x7f0d0013; + public static final int colorPrimaryDark=0x7f0d0014; + public static final int common_action_bar_splitter=0x7f0d0015; + public static final int common_google_signin_btn_text_dark=0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default=0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled=0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused=0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed=0x7f0d0019; + public static final int common_google_signin_btn_text_light=0x7f0d0075; + public static final int common_google_signin_btn_text_light_default=0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled=0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused=0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed=0x7f0d001d; + public static final int common_plus_signin_btn_text_dark=0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default=0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled=0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused=0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed=0x7f0d0021; + public static final int common_plus_signin_btn_text_light=0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default=0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled=0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused=0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed=0x7f0d0025; + public static final int design_fab_shadow_end_color=0x7f0d0026; + public static final int design_fab_shadow_mid_color=0x7f0d0027; + public static final int design_fab_shadow_start_color=0x7f0d0028; + public static final int design_fab_stroke_end_inner_color=0x7f0d0029; + public static final int design_fab_stroke_end_outer_color=0x7f0d002a; + public static final int design_fab_stroke_top_inner_color=0x7f0d002b; + public static final int design_fab_stroke_top_outer_color=0x7f0d002c; + public static final int design_snackbar_background_color=0x7f0d002d; + public static final int design_textinput_error_color=0x7f0d002e; + public static final int dim_foreground_disabled_material_dark=0x7f0d002f; + public static final int dim_foreground_disabled_material_light=0x7f0d0030; + public static final int dim_foreground_material_dark=0x7f0d0031; + public static final int dim_foreground_material_light=0x7f0d0032; + public static final int foreground_material_dark=0x7f0d0033; + public static final int foreground_material_light=0x7f0d0034; + public static final int highlighted_text_material_dark=0x7f0d0035; + public static final int highlighted_text_material_light=0x7f0d0036; + public static final int hint_foreground_material_dark=0x7f0d0037; + public static final int hint_foreground_material_light=0x7f0d0038; + public static final int material_blue_grey_800=0x7f0d0039; + public static final int material_blue_grey_900=0x7f0d003a; + public static final int material_blue_grey_950=0x7f0d003b; + public static final int material_deep_teal_200=0x7f0d003c; + public static final int material_deep_teal_500=0x7f0d003d; + public static final int material_grey_100=0x7f0d003e; + public static final int material_grey_300=0x7f0d003f; + public static final int material_grey_50=0x7f0d0040; + public static final int material_grey_600=0x7f0d0041; + public static final int material_grey_800=0x7f0d0042; + public static final int material_grey_850=0x7f0d0043; + public static final int material_grey_900=0x7f0d0044; + public static final int place_autocomplete_prediction_primary_text=0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight=0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text=0x7f0d0047; + public static final int place_autocomplete_search_hint=0x7f0d0048; + public static final int place_autocomplete_search_text=0x7f0d0049; + public static final int place_autocomplete_separator=0x7f0d004a; + public static final int primary_dark_material_dark=0x7f0d004b; + public static final int primary_dark_material_light=0x7f0d004c; + public static final int primary_material_dark=0x7f0d004d; + public static final int primary_material_light=0x7f0d004e; + public static final int primary_text_default_material_dark=0x7f0d004f; + public static final int primary_text_default_material_light=0x7f0d0050; + public static final int primary_text_disabled_material_dark=0x7f0d0051; + public static final int primary_text_disabled_material_light=0x7f0d0052; + public static final int ripple_material_dark=0x7f0d0053; + public static final int ripple_material_light=0x7f0d0054; + public static final int secondary_text_default_material_dark=0x7f0d0055; + public static final int secondary_text_default_material_light=0x7f0d0056; + public static final int secondary_text_disabled_material_dark=0x7f0d0057; + public static final int secondary_text_disabled_material_light=0x7f0d0058; + public static final int switch_thumb_disabled_material_dark=0x7f0d0059; + public static final int switch_thumb_disabled_material_light=0x7f0d005a; + public static final int switch_thumb_material_dark=0x7f0d0078; + public static final int switch_thumb_material_light=0x7f0d0079; + public static final int switch_thumb_normal_material_dark=0x7f0d005b; + public static final int switch_thumb_normal_material_light=0x7f0d005c; + public static final int wallet_bright_foreground_disabled_holo_light=0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark=0x7f0d005e; + public static final int wallet_bright_foreground_holo_light=0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark=0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark=0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark=0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark=0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark=0x7f0d0064; + public static final int wallet_highlighted_text_holo_light=0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark=0x7f0d0066; + public static final int wallet_hint_foreground_holo_light=0x7f0d0067; + public static final int wallet_holo_blue_light=0x7f0d0068; + public static final int wallet_link_text_light=0x7f0d0069; + public static final int wallet_primary_text_holo_light=0x7f0d007a; + public static final int wallet_secondary_text_holo_dark=0x7f0d007b; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f09000d; + public static final int abc_action_bar_default_height_material=0x7f090001; + public static final int abc_action_bar_default_padding_end_material=0x7f09000e; + public static final int abc_action_bar_default_padding_start_material=0x7f09000f; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f09001b; + public static final int abc_action_bar_overflow_padding_end_material=0x7f09001c; + public static final int abc_action_bar_overflow_padding_start_material=0x7f09001d; + public static final int abc_action_bar_progress_bar_size=0x7f090002; + public static final int abc_action_bar_stacked_max_height=0x7f09001e; + public static final int abc_action_bar_stacked_tab_max_width=0x7f09001f; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f090020; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f090021; + public static final int abc_action_button_min_height_material=0x7f090022; + public static final int abc_action_button_min_width_material=0x7f090023; + public static final int abc_action_button_min_width_overflow_material=0x7f090024; + public static final int abc_alert_dialog_button_bar_height=0x7f090000; + public static final int abc_button_inset_horizontal_material=0x7f090025; + public static final int abc_button_inset_vertical_material=0x7f090026; + public static final int abc_button_padding_horizontal_material=0x7f090027; + public static final int abc_button_padding_vertical_material=0x7f090028; + public static final int abc_config_prefDialogWidth=0x7f090005; + public static final int abc_control_corner_material=0x7f090029; + public static final int abc_control_inset_material=0x7f09002a; + public static final int abc_control_padding_material=0x7f09002b; + public static final int abc_dialog_fixed_height_major=0x7f090006; + public static final int abc_dialog_fixed_height_minor=0x7f090007; + public static final int abc_dialog_fixed_width_major=0x7f090008; + public static final int abc_dialog_fixed_width_minor=0x7f090009; + public static final int abc_dialog_list_padding_vertical_material=0x7f09002c; + public static final int abc_dialog_min_width_major=0x7f09000a; + public static final int abc_dialog_min_width_minor=0x7f09000b; + public static final int abc_dialog_padding_material=0x7f09002d; + public static final int abc_dialog_padding_top_material=0x7f09002e; + public static final int abc_disabled_alpha_material_dark=0x7f09002f; + public static final int abc_disabled_alpha_material_light=0x7f090030; + public static final int abc_dropdownitem_icon_width=0x7f090031; + public static final int abc_dropdownitem_text_padding_left=0x7f090032; + public static final int abc_dropdownitem_text_padding_right=0x7f090033; + public static final int abc_edit_text_inset_bottom_material=0x7f090034; + public static final int abc_edit_text_inset_horizontal_material=0x7f090035; + public static final int abc_edit_text_inset_top_material=0x7f090036; + public static final int abc_floating_window_z=0x7f090037; + public static final int abc_list_item_padding_horizontal_material=0x7f090038; + public static final int abc_panel_menu_list_width=0x7f090039; + public static final int abc_search_view_preferred_width=0x7f09003a; + public static final int abc_search_view_text_min_width=0x7f09000c; + public static final int abc_seekbar_track_background_height_material=0x7f09003b; + public static final int abc_seekbar_track_progress_height_material=0x7f09003c; + public static final int abc_select_dialog_padding_start_material=0x7f09003d; + public static final int abc_switch_padding=0x7f090018; + public static final int abc_text_size_body_1_material=0x7f09003e; + public static final int abc_text_size_body_2_material=0x7f09003f; + public static final int abc_text_size_button_material=0x7f090040; + public static final int abc_text_size_caption_material=0x7f090041; + public static final int abc_text_size_display_1_material=0x7f090042; + public static final int abc_text_size_display_2_material=0x7f090043; + public static final int abc_text_size_display_3_material=0x7f090044; + public static final int abc_text_size_display_4_material=0x7f090045; + public static final int abc_text_size_headline_material=0x7f090046; + public static final int abc_text_size_large_material=0x7f090047; + public static final int abc_text_size_medium_material=0x7f090048; + public static final int abc_text_size_menu_material=0x7f090049; + public static final int abc_text_size_small_material=0x7f09004a; + public static final int abc_text_size_subhead_material=0x7f09004b; + public static final int abc_text_size_subtitle_material_toolbar=0x7f090003; + public static final int abc_text_size_title_material=0x7f09004c; + public static final int abc_text_size_title_material_toolbar=0x7f090004; + public static final int activity_horizontal_margin=0x7f09001a; + public static final int activity_vertical_margin=0x7f09004d; + public static final int design_appbar_elevation=0x7f09004e; + public static final int design_fab_border_width=0x7f09004f; + public static final int design_fab_content_size=0x7f090050; + public static final int design_fab_elevation=0x7f090051; + public static final int design_fab_size_mini=0x7f090052; + public static final int design_fab_size_normal=0x7f090053; + public static final int design_fab_translation_z_pressed=0x7f090054; + public static final int design_navigation_elevation=0x7f090055; + public static final int design_navigation_icon_padding=0x7f090056; + public static final int design_navigation_icon_size=0x7f090057; + public static final int design_navigation_max_width=0x7f090058; + public static final int design_navigation_padding_bottom=0x7f090059; + public static final int design_navigation_padding_top_default=0x7f090019; + public static final int design_navigation_separator_vertical_padding=0x7f09005a; + public static final int design_snackbar_action_inline_max_width=0x7f090010; + public static final int design_snackbar_background_corner_radius=0x7f090011; + public static final int design_snackbar_elevation=0x7f09005b; + public static final int design_snackbar_extra_spacing_horizontal=0x7f090012; + public static final int design_snackbar_max_width=0x7f090013; + public static final int design_snackbar_min_width=0x7f090014; + public static final int design_snackbar_padding_horizontal=0x7f09005c; + public static final int design_snackbar_padding_vertical=0x7f09005d; + public static final int design_snackbar_padding_vertical_2lines=0x7f090015; + public static final int design_snackbar_text_size=0x7f09005e; + public static final int design_tab_max_width=0x7f09005f; + public static final int design_tab_scrollable_min_width=0x7f090016; + public static final int design_tab_text_size=0x7f090060; + public static final int design_tab_text_size_2line=0x7f090061; + public static final int disabled_alpha_material_dark=0x7f090062; + public static final int disabled_alpha_material_light=0x7f090063; + public static final int fab_margin=0x7f090064; + public static final int highlight_alpha_material_colored=0x7f090065; + public static final int highlight_alpha_material_dark=0x7f090066; + public static final int highlight_alpha_material_light=0x7f090067; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f090068; + public static final int mr_media_route_controller_art_max_height=0x7f090017; + public static final int notification_large_icon_height=0x7f090069; + public static final int notification_large_icon_width=0x7f09006a; + public static final int notification_subtext_size=0x7f09006b; + public static final int place_autocomplete_button_padding=0x7f09006c; + public static final int place_autocomplete_powered_by_google_height=0x7f09006d; + public static final int place_autocomplete_powered_by_google_start=0x7f09006e; + public static final int place_autocomplete_prediction_height=0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin=0x7f090070; + public static final int place_autocomplete_prediction_primary_text=0x7f090071; + public static final int place_autocomplete_prediction_secondary_text=0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin=0x7f090073; + public static final int place_autocomplete_progress_size=0x7f090074; + public static final int place_autocomplete_separator_start=0x7f090075; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b; + public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000d; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000e; + public static final int abc_cab_background_internal_bg=0x7f02000f; + public static final int abc_cab_background_top_material=0x7f020010; + public static final int abc_cab_background_top_mtrl_alpha=0x7f020011; + public static final int abc_control_background_material=0x7f020012; + public static final int abc_dialog_material_background_dark=0x7f020013; + public static final int abc_dialog_material_background_light=0x7f020014; + public static final int abc_edit_text_material=0x7f020015; + public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020016; + public static final int abc_ic_clear_mtrl_alpha=0x7f020017; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020018; + public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f02001b; + public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001f; + public static final int abc_ic_search_api_mtrl_alpha=0x7f020020; + public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f020021; + public static final int abc_item_background_holo_dark=0x7f020022; + public static final int abc_item_background_holo_light=0x7f020023; + public static final int abc_list_divider_mtrl_alpha=0x7f020024; + public static final int abc_list_focused_holo=0x7f020025; + public static final int abc_list_longpressed_holo=0x7f020026; + public static final int abc_list_pressed_holo_dark=0x7f020027; + public static final int abc_list_pressed_holo_light=0x7f020028; + public static final int abc_list_selector_background_transition_holo_dark=0x7f020029; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002a; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002b; + public static final int abc_list_selector_disabled_holo_light=0x7f02002c; + public static final int abc_list_selector_holo_dark=0x7f02002d; + public static final int abc_list_selector_holo_light=0x7f02002e; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f02002f; + public static final int abc_popup_background_mtrl_mult=0x7f020030; + public static final int abc_ratingbar_full_material=0x7f020031; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020032; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020033; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f020034; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f020035; + public static final int abc_scrubber_track_mtrl_alpha=0x7f020036; + public static final int abc_seekbar_thumb_material=0x7f020037; + public static final int abc_seekbar_track_material=0x7f020038; + public static final int abc_spinner_mtrl_am_alpha=0x7f020039; + public static final int abc_spinner_textfield_background_material=0x7f02003a; + public static final int abc_switch_thumb_material=0x7f02003b; + public static final int abc_switch_track_mtrl_alpha=0x7f02003c; + public static final int abc_tab_indicator_material=0x7f02003d; + public static final int abc_tab_indicator_mtrl_alpha=0x7f02003e; + public static final int abc_text_cursor_material=0x7f02003f; + public static final int abc_textfield_activated_mtrl_alpha=0x7f020040; + public static final int abc_textfield_default_mtrl_alpha=0x7f020041; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f020042; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020043; + public static final int abc_textfield_search_material=0x7f020044; + public static final int camera=0x7f020045; + public static final int cast_ic_notification_0=0x7f020046; + public static final int cast_ic_notification_1=0x7f020047; + public static final int cast_ic_notification_2=0x7f020048; + public static final int cast_ic_notification_connecting=0x7f020049; + public static final int cast_ic_notification_on=0x7f02004a; + public static final int common_full_open_on_phone=0x7f02004b; + public static final int common_google_signin_btn_icon_dark=0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled=0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused=0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal=0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed=0x7f020050; + public static final int common_google_signin_btn_icon_light=0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled=0x7f020052; + public static final int common_google_signin_btn_icon_light_focused=0x7f020053; + public static final int common_google_signin_btn_icon_light_normal=0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed=0x7f020055; + public static final int common_google_signin_btn_text_dark=0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled=0x7f020057; + public static final int common_google_signin_btn_text_dark_focused=0x7f020058; + public static final int common_google_signin_btn_text_dark_normal=0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed=0x7f02005a; + public static final int common_google_signin_btn_text_light=0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled=0x7f02005c; + public static final int common_google_signin_btn_text_light_focused=0x7f02005d; + public static final int common_google_signin_btn_text_light_normal=0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed=0x7f02005f; + public static final int common_ic_googleplayservices=0x7f020060; + public static final int common_plus_signin_btn_icon_dark=0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled=0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused=0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal=0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed=0x7f020065; + public static final int common_plus_signin_btn_icon_light=0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled=0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused=0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal=0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed=0x7f02006a; + public static final int common_plus_signin_btn_text_dark=0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled=0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused=0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal=0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed=0x7f02006f; + public static final int common_plus_signin_btn_text_light=0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled=0x7f020071; + public static final int common_plus_signin_btn_text_light_focused=0x7f020072; + public static final int common_plus_signin_btn_text_light_normal=0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed=0x7f020074; + public static final int compass_pointer=0x7f020075; + public static final int design_fab_background=0x7f020076; + public static final int design_snackbar_background=0x7f020077; + public static final int ic_cast_dark=0x7f020078; + public static final int ic_cast_disabled_light=0x7f020079; + public static final int ic_cast_light=0x7f02007a; + public static final int ic_cast_off_light=0x7f02007b; + public static final int ic_cast_on_0_light=0x7f02007c; + public static final int ic_cast_on_1_light=0x7f02007d; + public static final int ic_cast_on_2_light=0x7f02007e; + public static final int ic_cast_on_light=0x7f02007f; + public static final int ic_media_pause=0x7f020080; + public static final int ic_media_play=0x7f020081; + public static final int ic_media_route_disabled_mono_dark=0x7f020082; + public static final int ic_media_route_off_mono_dark=0x7f020083; + public static final int ic_media_route_on_0_mono_dark=0x7f020084; + public static final int ic_media_route_on_1_mono_dark=0x7f020085; + public static final int ic_media_route_on_2_mono_dark=0x7f020086; + public static final int ic_media_route_on_mono_dark=0x7f020087; + public static final int ic_pause_dark=0x7f020088; + public static final int ic_pause_light=0x7f020089; + public static final int ic_play_dark=0x7f02008a; + public static final int ic_play_light=0x7f02008b; + public static final int ic_plusone_medium_off_client=0x7f02008c; + public static final int ic_plusone_small_off_client=0x7f02008d; + public static final int ic_plusone_standard_off_client=0x7f02008e; + public static final int ic_plusone_tall_off_client=0x7f02008f; + public static final int ic_setting_dark=0x7f020090; + public static final int ic_setting_light=0x7f020091; + public static final int log=0x7f020092; + public static final int message=0x7f020093; + public static final int mr_ic_cast_dark=0x7f020094; + public static final int mr_ic_cast_light=0x7f020095; + public static final int mr_ic_media_route_connecting_mono_dark=0x7f020096; + public static final int mr_ic_media_route_connecting_mono_light=0x7f020097; + public static final int mr_ic_media_route_mono_dark=0x7f020098; + public static final int mr_ic_media_route_mono_light=0x7f020099; + public static final int mr_ic_pause_dark=0x7f02009a; + public static final int mr_ic_pause_light=0x7f02009b; + public static final int mr_ic_play_dark=0x7f02009c; + public static final int mr_ic_play_light=0x7f02009d; + public static final int mr_ic_settings_dark=0x7f02009e; + public static final int mr_ic_settings_light=0x7f02009f; + public static final int notification_template_icon_bg=0x7f0200a4; + public static final int places_ic_clear=0x7f0200a0; + public static final int places_ic_search=0x7f0200a1; + public static final int powered_by_google_dark=0x7f0200a2; + public static final int powered_by_google_light=0x7f0200a3; + } + public static final class id { + public static final int action0=0x7f0e00ae; + public static final int action_bar=0x7f0e0081; + public static final int action_bar_activity_content=0x7f0e0000; + public static final int action_bar_container=0x7f0e0080; + public static final int action_bar_root=0x7f0e007c; + public static final int action_bar_spinner=0x7f0e0001; + public static final int action_bar_subtitle=0x7f0e0062; + public static final int action_bar_title=0x7f0e0061; + public static final int action_context_bar=0x7f0e0082; + public static final int action_divider=0x7f0e00b2; + public static final int action_menu_divider=0x7f0e0002; + public static final int action_menu_presenter=0x7f0e0003; + public static final int action_mode_bar=0x7f0e007e; + public static final int action_mode_bar_stub=0x7f0e007d; + public static final int action_mode_close_button=0x7f0e0063; + public static final int activity_chooser_view_content=0x7f0e0064; + public static final int adjust_height=0x7f0e0034; + public static final int adjust_width=0x7f0e0035; + public static final int alertTitle=0x7f0e0070; + public static final int always=0x7f0e0039; + public static final int android_pay=0x7f0e0060; + public static final int android_pay_dark=0x7f0e0057; + public static final int android_pay_light=0x7f0e0058; + public static final int android_pay_light_with_border=0x7f0e0059; + public static final int art=0x7f0e00a6; + public static final int auto=0x7f0e0041; + public static final int beginning=0x7f0e0032; + public static final int book_now=0x7f0e0050; + public static final int bottom=0x7f0e001d; + public static final int btnSubmit=0x7f0e0098; + public static final int buttonCamera=0x7f0e0095; + public static final int buttonMessage=0x7f0e0096; + public static final int buttonPanel=0x7f0e006b; + public static final int buttons=0x7f0e00ab; + public static final int buyButton=0x7f0e004d; + public static final int buy_now=0x7f0e0051; + public static final int buy_with=0x7f0e0052; + public static final int buy_with_google=0x7f0e0053; + public static final int cancel_action=0x7f0e00af; + public static final int cast_notification_id=0x7f0e0004; + public static final int center=0x7f0e001e; + public static final int center_horizontal=0x7f0e001f; + public static final int center_vertical=0x7f0e0020; + public static final int checkbox=0x7f0e0079; + public static final int chronometer=0x7f0e00b5; + public static final int classic=0x7f0e005a; + public static final int clip_horizontal=0x7f0e002c; + public static final int clip_vertical=0x7f0e002d; + public static final int collapseActionView=0x7f0e003a; + public static final int contentPanel=0x7f0e0071; + public static final int custom=0x7f0e0077; + public static final int customPanel=0x7f0e0076; + public static final int dark=0x7f0e0042; + public static final int decor_content_parent=0x7f0e007f; + public static final int default_activity_button=0x7f0e0067; + public static final int default_control_frame=0x7f0e00a5; + public static final int design_menu_item_action_area=0x7f0e009f; + public static final int design_menu_item_action_area_stub=0x7f0e009e; + public static final int design_menu_item_text=0x7f0e009d; + public static final int design_navigation_view=0x7f0e009c; + public static final int disableHome=0x7f0e000f; + public static final int disconnect=0x7f0e00ac; + public static final int donate_with=0x7f0e0054; + public static final int donate_with_google=0x7f0e0055; + public static final int edit_query=0x7f0e0083; + public static final int end=0x7f0e0021; + public static final int end_padder=0x7f0e00ba; + public static final int enterAlways=0x7f0e0016; + public static final int enterAlwaysCollapsed=0x7f0e0017; + public static final int exitUntilCollapsed=0x7f0e0018; + public static final int expand_activities_button=0x7f0e0065; + public static final int expanded_menu=0x7f0e0078; + public static final int fill=0x7f0e002e; + public static final int fill_horizontal=0x7f0e002f; + public static final int fill_vertical=0x7f0e0022; + public static final int fixed=0x7f0e0044; + public static final int google_wallet_classic=0x7f0e005b; + public static final int google_wallet_grayscale=0x7f0e005c; + public static final int google_wallet_monochrome=0x7f0e005d; + public static final int grayscale=0x7f0e005e; + public static final int holo_dark=0x7f0e0047; + public static final int holo_light=0x7f0e0048; + public static final int home=0x7f0e0005; + public static final int homeAsUp=0x7f0e0010; + public static final int hybrid=0x7f0e0036; + public static final int icon=0x7f0e0069; + public static final int icon_only=0x7f0e003e; + public static final int ifRoom=0x7f0e003b; + public static final int image=0x7f0e0066; + public static final int info=0x7f0e00b9; + public static final int item_touch_helper_previous_elevation=0x7f0e0006; + public static final int left=0x7f0e0023; + public static final int light=0x7f0e0043; + public static final int line1=0x7f0e00b3; + public static final int line3=0x7f0e00b7; + public static final int listMode=0x7f0e000c; + public static final int list_item=0x7f0e0068; + public static final int logButton=0x7f0e0093; + public static final int logList=0x7f0e0094; + public static final int logo_only=0x7f0e0056; + public static final int map=0x7f0e0090; + public static final int match_parent=0x7f0e004f; + public static final int media_actions=0x7f0e00b1; + public static final int media_route_control_frame=0x7f0e00a4; + public static final int media_route_list=0x7f0e00a0; + public static final int media_route_volume_layout=0x7f0e00a9; + public static final int media_route_volume_slider=0x7f0e00aa; + public static final int middle=0x7f0e0033; + public static final int mini=0x7f0e0031; + public static final int monochrome=0x7f0e005f; + public static final int multiply=0x7f0e0027; + public static final int navigation_header_container=0x7f0e009b; + public static final int never=0x7f0e003c; + public static final int none=0x7f0e0011; + public static final int normal=0x7f0e000d; + public static final int parallax=0x7f0e001b; + public static final int parentPanel=0x7f0e006d; + public static final int pin=0x7f0e001c; + public static final int place_autocomplete_clear_button=0x7f0e00bd; + public static final int place_autocomplete_powered_by_google=0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text=0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text=0x7f0e00c2; + public static final int place_autocomplete_progress=0x7f0e00c0; + public static final int place_autocomplete_search_button=0x7f0e00bb; + public static final int place_autocomplete_search_input=0x7f0e00bc; + public static final int place_autocomplete_separator=0x7f0e00be; + public static final int play_pause=0x7f0e00a7; + public static final int pointer=0x7f0e0092; + public static final int production=0x7f0e0049; + public static final int progress_circular=0x7f0e0007; + public static final int progress_horizontal=0x7f0e0008; + public static final int radio=0x7f0e007b; + public static final int right=0x7f0e0024; + public static final int route_name=0x7f0e00a2; + public static final int sandbox=0x7f0e004a; + public static final int satellite=0x7f0e0037; + public static final int screen=0x7f0e0028; + public static final int scroll=0x7f0e0019; + public static final int scrollIndicatorDown=0x7f0e0075; + public static final int scrollIndicatorUp=0x7f0e0072; + public static final int scrollView=0x7f0e0073; + public static final int scrollable=0x7f0e0045; + public static final int search_badge=0x7f0e0085; + public static final int search_bar=0x7f0e0084; + public static final int search_button=0x7f0e0086; + public static final int search_close_btn=0x7f0e008b; + public static final int search_edit_frame=0x7f0e0087; + public static final int search_go_btn=0x7f0e008d; + public static final int search_mag_icon=0x7f0e0088; + public static final int search_plate=0x7f0e0089; + public static final int search_src_text=0x7f0e008a; + public static final int search_voice_btn=0x7f0e008e; + public static final int select_dialog_listview=0x7f0e008f; + public static final int selectionDetails=0x7f0e004e; + public static final int settings=0x7f0e00a3; + public static final int shortcut=0x7f0e007a; + public static final int showCustom=0x7f0e0012; + public static final int showHome=0x7f0e0013; + public static final int showTitle=0x7f0e0014; + public static final int slide=0x7f0e0030; + public static final int snackbar_action=0x7f0e009a; + public static final int snackbar_text=0x7f0e0099; + public static final int snap=0x7f0e001a; + public static final int spacer=0x7f0e006c; + public static final int spinner1=0x7f0e0097; + public static final int split_action_bar=0x7f0e0009; + public static final int src_atop=0x7f0e0029; + public static final int src_in=0x7f0e002a; + public static final int src_over=0x7f0e002b; + public static final int standard=0x7f0e003f; + public static final int start=0x7f0e0025; + public static final int status_bar_latest_event_content=0x7f0e00b0; + public static final int stop=0x7f0e00ad; + public static final int strict_sandbox=0x7f0e004b; + public static final int submit_area=0x7f0e008c; + public static final int subtitle=0x7f0e00a8; + public static final int tabMode=0x7f0e000e; + public static final int terrain=0x7f0e0038; + public static final int test=0x7f0e004c; + public static final int text=0x7f0e00b8; + public static final int text2=0x7f0e00b6; + public static final int textSpacerNoButtons=0x7f0e0074; + public static final int time=0x7f0e00b4; + public static final int title=0x7f0e006a; + public static final int title_bar=0x7f0e00a1; + public static final int title_template=0x7f0e006f; + public static final int toolbar=0x7f0e0091; + public static final int top=0x7f0e0026; + public static final int topPanel=0x7f0e006e; + public static final int up=0x7f0e000a; + public static final int useLogo=0x7f0e0015; + public static final int view_offset_helper=0x7f0e000b; + public static final int wide=0x7f0e0040; + public static final int withText=0x7f0e003d; + public static final int wrap_content=0x7f0e0046; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f0b0002; + public static final int abc_config_activityShortDur=0x7f0b0003; + public static final int abc_max_action_buttons=0x7f0b0000; + public static final int cancel_button_image_alpha=0x7f0b0004; + public static final int design_snackbar_text_max_lines=0x7f0b0001; + public static final int google_play_services_version=0x7f0b0005; + public static final int status_bar_notification_info_maxnum=0x7f0b0006; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f040000; + public static final int abc_action_bar_up_container=0x7f040001; + public static final int abc_action_bar_view_list_nav_layout=0x7f040002; + public static final int abc_action_menu_item_layout=0x7f040003; + public static final int abc_action_menu_layout=0x7f040004; + public static final int abc_action_mode_bar=0x7f040005; + public static final int abc_action_mode_close_item_material=0x7f040006; + public static final int abc_activity_chooser_view=0x7f040007; + public static final int abc_activity_chooser_view_list_item=0x7f040008; + public static final int abc_alert_dialog_button_bar_material=0x7f040009; + public static final int abc_alert_dialog_material=0x7f04000a; + public static final int abc_dialog_title_material=0x7f04000b; + public static final int abc_expanded_menu_layout=0x7f04000c; + public static final int abc_list_menu_item_checkbox=0x7f04000d; + public static final int abc_list_menu_item_icon=0x7f04000e; + public static final int abc_list_menu_item_layout=0x7f04000f; + public static final int abc_list_menu_item_radio=0x7f040010; + public static final int abc_popup_menu_item_layout=0x7f040011; + public static final int abc_screen_content_include=0x7f040012; + public static final int abc_screen_simple=0x7f040013; + public static final int abc_screen_simple_overlay_action_mode=0x7f040014; + public static final int abc_screen_toolbar=0x7f040015; + public static final int abc_search_dropdown_item_icons_2line=0x7f040016; + public static final int abc_search_view=0x7f040017; + public static final int abc_select_dialog_material=0x7f040018; + public static final int activity_google_maps=0x7f040019; + public static final int activity_submit_message=0x7f04001a; + public static final int content_submit=0x7f04001b; + public static final int design_layout_snackbar=0x7f04001c; + public static final int design_layout_snackbar_include=0x7f04001d; + public static final int design_layout_tab_icon=0x7f04001e; + public static final int design_layout_tab_text=0x7f04001f; + public static final int design_menu_item_action_area=0x7f040020; + public static final int design_navigation_item=0x7f040021; + public static final int design_navigation_item_header=0x7f040022; + public static final int design_navigation_item_separator=0x7f040023; + public static final int design_navigation_item_subheader=0x7f040024; + public static final int design_navigation_menu=0x7f040025; + public static final int design_navigation_menu_item=0x7f040026; + public static final int mr_media_route_chooser_dialog=0x7f040027; + public static final int mr_media_route_controller_material_dialog_b=0x7f040028; + public static final int mr_media_route_list_item=0x7f040029; + public static final int notification_media_action=0x7f04002a; + public static final int notification_media_cancel_action=0x7f04002b; + public static final int notification_template_big_media=0x7f04002c; + public static final int notification_template_big_media_narrow=0x7f04002d; + public static final int notification_template_lines=0x7f04002e; + public static final int notification_template_media=0x7f04002f; + public static final int notification_template_part_chronometer=0x7f040030; + public static final int notification_template_part_time=0x7f040031; + public static final int place_autocomplete_fragment=0x7f040032; + public static final int place_autocomplete_item_powered_by_google=0x7f040033; + public static final int place_autocomplete_item_prediction=0x7f040034; + public static final int place_autocomplete_progress=0x7f040035; + public static final int select_dialog_item_material=0x7f040036; + public static final int select_dialog_multichoice_material=0x7f040037; + public static final int select_dialog_singlechoice_material=0x7f040038; + public static final int support_simple_spinner_dropdown_item=0x7f040039; + } + public static final class mipmap { + public static final int ic_launcher=0x7f030000; + } + public static final class raw { + public static final int gtm_analytics=0x7f060000; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f070000; + public static final int abc_action_bar_home_description_format=0x7f070001; + public static final int abc_action_bar_home_subtitle_description_format=0x7f070002; + public static final int abc_action_bar_up_description=0x7f070003; + public static final int abc_action_menu_overflow_description=0x7f070004; + public static final int abc_action_mode_done=0x7f070005; + public static final int abc_activity_chooser_view_see_all=0x7f070006; + public static final int abc_activitychooserview_choose_application=0x7f070007; + public static final int abc_capital_off=0x7f070008; + public static final int abc_capital_on=0x7f070009; + public static final int abc_search_hint=0x7f07000a; + public static final int abc_searchview_description_clear=0x7f07000b; + public static final int abc_searchview_description_query=0x7f07000c; + public static final int abc_searchview_description_search=0x7f07000d; + public static final int abc_searchview_description_submit=0x7f07000e; + public static final int abc_searchview_description_voice=0x7f07000f; + public static final int abc_shareactionprovider_share_with=0x7f070010; + public static final int abc_shareactionprovider_share_with_application=0x7f070011; + public static final int abc_toolbar_collapse_description=0x7f070012; + public static final int accept=0x7f07003f; + public static final int app_name=0x7f070040; + public static final int appbar_scrolling_view_behavior=0x7f070041; + public static final int auth_google_play_services_client_facebook_display_name=0x7f070042; + public static final int auth_google_play_services_client_google_display_name=0x7f070043; + public static final int cast_notification_connected_message=0x7f070044; + public static final int cast_notification_connecting_message=0x7f070045; + public static final int cast_notification_disconnect=0x7f070046; + public static final int character_counter_pattern=0x7f070047; + public static final int common_google_play_services_api_unavailable_text=0x7f070013; + public static final int common_google_play_services_enable_button=0x7f070014; + public static final int common_google_play_services_enable_text=0x7f070015; + public static final int common_google_play_services_enable_title=0x7f070016; + public static final int common_google_play_services_install_button=0x7f070017; + public static final int common_google_play_services_install_text_phone=0x7f070018; + public static final int common_google_play_services_install_text_tablet=0x7f070019; + public static final int common_google_play_services_install_title=0x7f07001a; + public static final int common_google_play_services_invalid_account_text=0x7f07001b; + public static final int common_google_play_services_invalid_account_title=0x7f07001c; + public static final int common_google_play_services_network_error_text=0x7f07001d; + public static final int common_google_play_services_network_error_title=0x7f07001e; + public static final int common_google_play_services_notification_ticker=0x7f07001f; + public static final int common_google_play_services_restricted_profile_text=0x7f070020; + public static final int common_google_play_services_restricted_profile_title=0x7f070021; + public static final int common_google_play_services_sign_in_failed_text=0x7f070022; + public static final int common_google_play_services_sign_in_failed_title=0x7f070023; + public static final int common_google_play_services_unknown_issue=0x7f070024; + public static final int common_google_play_services_unsupported_text=0x7f070025; + public static final int common_google_play_services_unsupported_title=0x7f070026; + public static final int common_google_play_services_update_button=0x7f070027; + public static final int common_google_play_services_update_text=0x7f070028; + public static final int common_google_play_services_update_title=0x7f070029; + public static final int common_google_play_services_updating_text=0x7f07002a; + public static final int common_google_play_services_updating_title=0x7f07002b; + public static final int common_google_play_services_wear_update_text=0x7f07002c; + public static final int common_open_on_phone=0x7f07002d; + public static final int common_signin_button_text=0x7f07002e; + public static final int common_signin_button_text_long=0x7f07002f; + public static final int create_calendar_message=0x7f070048; + public static final int create_calendar_title=0x7f070049; + public static final int decline=0x7f07004a; + public static final int google_maps_key=0x7f07004b; + public static final int location_name=0x7f07004c; + public static final int mr_media_route_button_content_description=0x7f070030; + public static final int mr_media_route_chooser_searching=0x7f070031; + public static final int mr_media_route_chooser_title=0x7f070032; + public static final int mr_media_route_controller_disconnect=0x7f070033; + public static final int mr_media_route_controller_no_info_available=0x7f070034; + public static final int mr_media_route_controller_pause=0x7f070035; + public static final int mr_media_route_controller_play=0x7f070036; + public static final int mr_media_route_controller_settings_description=0x7f070037; + public static final int mr_media_route_controller_stop=0x7f070038; + public static final int mr_system_route_name=0x7f070039; + public static final int mr_user_route_category_name=0x7f07003a; + public static final int place_autocomplete_clear_button=0x7f07003b; + public static final int place_autocomplete_search_hint=0x7f07003c; + public static final int status_bar_notification_info_overflow=0x7f07003d; + public static final int store_picture_message=0x7f07004d; + public static final int store_picture_title=0x7f07004e; + public static final int submit=0x7f07004f; + public static final int title_activity_a=0x7f070050; + public static final int title_activity_google_maps=0x7f070051; + public static final int title_activity_submission=0x7f070052; + public static final int wallet_buy_button_place_holder=0x7f07003e; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0a0080; + public static final int AlertDialog_AppCompat_Light=0x7f0a0081; + public static final int Animation_AppCompat_Dialog=0x7f0a0082; + public static final int Animation_AppCompat_DropDownUp=0x7f0a0083; + public static final int AppTheme=0x7f0a0084; + public static final int AppTheme_AppBarOverlay=0x7f0a0085; + public static final int AppTheme_NoActionBar=0x7f0a0031; + public static final int AppTheme_PopupOverlay=0x7f0a0086; + public static final int Base_AlertDialog_AppCompat=0x7f0a0087; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0a0088; + public static final int Base_Animation_AppCompat_Dialog=0x7f0a0089; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0a008a; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0a008b; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0a008c; + public static final int Base_TextAppearance_AppCompat=0x7f0a0032; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f0a0033; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f0a0034; + public static final int Base_TextAppearance_AppCompat_Button=0x7f0a001b; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f0a0035; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f0a0036; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f0a0037; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f0a0038; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f0a0039; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f0a003a; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0a0005; + public static final int Base_TextAppearance_AppCompat_Large=0x7f0a003b; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0a0006; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a003c; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a003d; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f0a003e; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0a0007; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f0a003f; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0a008d; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a0040; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0a0041; + public static final int Base_TextAppearance_AppCompat_Small=0x7f0a0042; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0a0008; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0a0043; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0a0009; + public static final int Base_TextAppearance_AppCompat_Title=0x7f0a0044; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0a000a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a0045; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a0046; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a0047; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a0048; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a0049; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a004a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a004b; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0a004c; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a007c; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a008e; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a004d; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a004e; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0a004f; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a0050; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a008f; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a0051; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a0052; + public static final int Base_Theme_AppCompat=0x7f0a0053; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0a0090; + public static final int Base_Theme_AppCompat_Dialog=0x7f0a000b; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0a0091; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0a0092; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0a0093; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0a0002; + public static final int Base_Theme_AppCompat_Light=0x7f0a0054; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0a0094; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0a000c; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0a0095; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0a0096; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a0097; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0a0003; + public static final int Base_ThemeOverlay_AppCompat=0x7f0a0098; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0a0099; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0a009a; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a009b; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0a009c; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0a000d; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0a000e; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0a0017; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f0a0018; + public static final int Base_V21_Theme_AppCompat=0x7f0a0055; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0a0056; + public static final int Base_V21_Theme_AppCompat_Light=0x7f0a0057; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0a0058; + public static final int Base_V22_Theme_AppCompat=0x7f0a007a; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0a007b; + public static final int Base_V23_Theme_AppCompat=0x7f0a007d; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0a007e; + public static final int Base_V7_Theme_AppCompat=0x7f0a009d; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0a009e; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0a009f; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0a00a0; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0a00a1; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0a00a2; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0a00a3; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0a00a4; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0a00a5; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0a0059; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0a005a; + public static final int Base_Widget_AppCompat_ActionButton=0x7f0a005b; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0a005c; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0a005d; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0a00a6; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0a00a7; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0a0019; + public static final int Base_Widget_AppCompat_Button=0x7f0a005e; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0a005f; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0a0060; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a00a8; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0a007f; + public static final int Base_Widget_AppCompat_Button_Small=0x7f0a0061; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f0a0062; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a00a9; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0a0063; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0a0064; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0a00aa; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0a0000; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0a00ab; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0a0065; + public static final int Base_Widget_AppCompat_EditText=0x7f0a001a; + public static final int Base_Widget_AppCompat_ImageButton=0x7f0a0066; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0a00ac; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0a00ad; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a00ae; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0a0067; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a0068; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0a0069; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0a006a; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a006b; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0a006c; + public static final int Base_Widget_AppCompat_ListView=0x7f0a006d; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0a006e; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0a006f; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f0a0070; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0a0071; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0a00af; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f0a000f; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0a0010; + public static final int Base_Widget_AppCompat_RatingBar=0x7f0a0072; + public static final int Base_Widget_AppCompat_SearchView=0x7f0a00b0; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0a00b1; + public static final int Base_Widget_AppCompat_SeekBar=0x7f0a0073; + public static final int Base_Widget_AppCompat_Spinner=0x7f0a0074; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0a0004; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0a0075; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0a00b2; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a0076; + public static final int Base_Widget_Design_TabLayout=0x7f0a00b3; + public static final int Platform_AppCompat=0x7f0a0011; + public static final int Platform_AppCompat_Light=0x7f0a0012; + public static final int Platform_ThemeOverlay_AppCompat=0x7f0a0077; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0a0078; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0a0079; + public static final int Platform_V11_AppCompat=0x7f0a0013; + public static final int Platform_V11_AppCompat_Light=0x7f0a0014; + public static final int Platform_V14_AppCompat=0x7f0a001c; + public static final int Platform_V14_AppCompat_Light=0x7f0a001d; + public static final int Platform_Widget_AppCompat_Spinner=0x7f0a0015; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0a0023; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0a0024; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0a0025; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0a0026; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0a0027; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0a0028; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0a0029; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0a002a; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0a002b; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0a002c; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0a002d; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0a002e; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0a002f; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0a0030; + public static final int TextAppearance_AppCompat=0x7f0a00b4; + public static final int TextAppearance_AppCompat_Body1=0x7f0a00b5; + public static final int TextAppearance_AppCompat_Body2=0x7f0a00b6; + public static final int TextAppearance_AppCompat_Button=0x7f0a00b7; + public static final int TextAppearance_AppCompat_Caption=0x7f0a00b8; + public static final int TextAppearance_AppCompat_Display1=0x7f0a00b9; + public static final int TextAppearance_AppCompat_Display2=0x7f0a00ba; + public static final int TextAppearance_AppCompat_Display3=0x7f0a00bb; + public static final int TextAppearance_AppCompat_Display4=0x7f0a00bc; + public static final int TextAppearance_AppCompat_Headline=0x7f0a00bd; + public static final int TextAppearance_AppCompat_Inverse=0x7f0a00be; + public static final int TextAppearance_AppCompat_Large=0x7f0a00bf; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0a00c0; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0a00c1; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0a00c2; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a00c3; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a00c4; + public static final int TextAppearance_AppCompat_Medium=0x7f0a00c5; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0a00c6; + public static final int TextAppearance_AppCompat_Menu=0x7f0a00c7; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a00c8; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0a00c9; + public static final int TextAppearance_AppCompat_Small=0x7f0a00ca; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0a00cb; + public static final int TextAppearance_AppCompat_Subhead=0x7f0a00cc; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0a00cd; + public static final int TextAppearance_AppCompat_Title=0x7f0a00ce; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0a00cf; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a00d0; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a00d1; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a00d2; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a00d3; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a00d4; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a00d5; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0a00d6; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a00d7; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0a00d8; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f0a00d9; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a00da; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00db; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a00dc; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a00dd; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0a00de; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a00df; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0a00e0; + public static final int TextAppearance_Design_Counter=0x7f0a00e1; + public static final int TextAppearance_Design_Counter_Overflow=0x7f0a00e2; + public static final int TextAppearance_Design_Error=0x7f0a00e3; + public static final int TextAppearance_Design_Hint=0x7f0a00e4; + public static final int TextAppearance_Design_Snackbar_Message=0x7f0a00e5; + public static final int TextAppearance_Design_Tab=0x7f0a00e6; + public static final int TextAppearance_StatusBar_EventContent=0x7f0a001e; + public static final int TextAppearance_StatusBar_EventContent_Info=0x7f0a001f; + public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f0a0020; + public static final int TextAppearance_StatusBar_EventContent_Time=0x7f0a0021; + public static final int TextAppearance_StatusBar_EventContent_Title=0x7f0a0022; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00e7; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a00e8; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a00e9; + public static final int Theme_AppCompat=0x7f0a00ea; + public static final int Theme_AppCompat_CompactMenu=0x7f0a00eb; + public static final int Theme_AppCompat_Dialog=0x7f0a00ec; + public static final int Theme_AppCompat_Dialog_Alert=0x7f0a00ed; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0a00ee; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f0a00ef; + public static final int Theme_AppCompat_Light=0x7f0a00f0; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0a00f1; + public static final int Theme_AppCompat_Light_Dialog=0x7f0a00f2; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0a00f3; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a00f4; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0a00f5; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f0a00f6; + public static final int Theme_AppCompat_NoActionBar=0x7f0a00f7; + public static final int Theme_AppInvite_Preview=0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base=0x7f0a0016; + public static final int Theme_IAPTheme=0x7f0a00f9; + public static final int Theme_MediaRouter=0x7f0a00fa; + public static final int Theme_MediaRouter_Light=0x7f0a00fb; + public static final int ThemeOverlay_AppCompat=0x7f0a00fc; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0a00fd; + public static final int ThemeOverlay_AppCompat_Dark=0x7f0a00fe; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a00ff; + public static final int ThemeOverlay_AppCompat_Light=0x7f0a0100; + public static final int WalletFragmentDefaultButtonTextAppearance=0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance=0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance=0x7f0a0103; + public static final int WalletFragmentDefaultStyle=0x7f0a0104; + public static final int Widget_AppCompat_ActionBar=0x7f0a0105; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f0a0106; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0a0107; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f0a0108; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f0a0109; + public static final int Widget_AppCompat_ActionButton=0x7f0a010a; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0a010b; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0a010c; + public static final int Widget_AppCompat_ActionMode=0x7f0a010d; + public static final int Widget_AppCompat_ActivityChooserView=0x7f0a010e; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0a010f; + public static final int Widget_AppCompat_Button=0x7f0a0110; + public static final int Widget_AppCompat_Button_Borderless=0x7f0a0111; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0a0112; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a0113; + public static final int Widget_AppCompat_Button_Colored=0x7f0a0114; + public static final int Widget_AppCompat_Button_Small=0x7f0a0115; + public static final int Widget_AppCompat_ButtonBar=0x7f0a0116; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a0117; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0a0118; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0a0119; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0a011a; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0a011b; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0a011c; + public static final int Widget_AppCompat_EditText=0x7f0a011d; + public static final int Widget_AppCompat_ImageButton=0x7f0a011e; + public static final int Widget_AppCompat_Light_ActionBar=0x7f0a011f; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0a0120; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0a0121; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a0122; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0a0123; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0a0124; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a0125; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0a0126; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0a0127; + public static final int Widget_AppCompat_Light_ActionButton=0x7f0a0128; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0a0129; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0a012a; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0a012b; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0a012c; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0a012d; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0a012e; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0a012f; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0a0130; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f0a0131; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0132; + public static final int Widget_AppCompat_Light_SearchView=0x7f0a0133; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0a0134; + public static final int Widget_AppCompat_ListPopupWindow=0x7f0a0135; + public static final int Widget_AppCompat_ListView=0x7f0a0136; + public static final int Widget_AppCompat_ListView_DropDown=0x7f0a0137; + public static final int Widget_AppCompat_ListView_Menu=0x7f0a0138; + public static final int Widget_AppCompat_PopupMenu=0x7f0a0139; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0a013a; + public static final int Widget_AppCompat_PopupWindow=0x7f0a013b; + public static final int Widget_AppCompat_ProgressBar=0x7f0a013c; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0a013d; + public static final int Widget_AppCompat_RatingBar=0x7f0a013e; + public static final int Widget_AppCompat_SearchView=0x7f0a013f; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0a0140; + public static final int Widget_AppCompat_SeekBar=0x7f0a0141; + public static final int Widget_AppCompat_Spinner=0x7f0a0142; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f0a0143; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0a0144; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f0a0145; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0a0146; + public static final int Widget_AppCompat_Toolbar=0x7f0a0147; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a0148; + public static final int Widget_Design_AppBarLayout=0x7f0a0149; + public static final int Widget_Design_CollapsingToolbar=0x7f0a014a; + public static final int Widget_Design_CoordinatorLayout=0x7f0a014b; + public static final int Widget_Design_FloatingActionButton=0x7f0a014c; + public static final int Widget_Design_NavigationView=0x7f0a014d; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0a014e; + public static final int Widget_Design_Snackbar=0x7f0a014f; + public static final int Widget_Design_TabLayout=0x7f0a0001; + public static final int Widget_Design_TextInputLayout=0x7f0a0150; + public static final int Widget_MediaRouter_Light_MediaRouteButton=0x7f0a0151; + public static final int Widget_MediaRouter_MediaRouteButton=0x7f0a0152; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background com.example.user.gps:background}
{@link #ActionBar_backgroundSplit com.example.user.gps:backgroundSplit}
{@link #ActionBar_backgroundStacked com.example.user.gps:backgroundStacked}
{@link #ActionBar_contentInsetEnd com.example.user.gps:contentInsetEnd}
{@link #ActionBar_contentInsetLeft com.example.user.gps:contentInsetLeft}
{@link #ActionBar_contentInsetRight com.example.user.gps:contentInsetRight}
{@link #ActionBar_contentInsetStart com.example.user.gps:contentInsetStart}
{@link #ActionBar_customNavigationLayout com.example.user.gps:customNavigationLayout}
{@link #ActionBar_displayOptions com.example.user.gps:displayOptions}
{@link #ActionBar_divider com.example.user.gps:divider}
{@link #ActionBar_elevation com.example.user.gps:elevation}
{@link #ActionBar_height com.example.user.gps:height}
{@link #ActionBar_hideOnContentScroll com.example.user.gps:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator com.example.user.gps:homeAsUpIndicator}
{@link #ActionBar_homeLayout com.example.user.gps:homeLayout}
{@link #ActionBar_icon com.example.user.gps:icon}
{@link #ActionBar_indeterminateProgressStyle com.example.user.gps:indeterminateProgressStyle}
{@link #ActionBar_itemPadding com.example.user.gps:itemPadding}
{@link #ActionBar_logo com.example.user.gps:logo}
{@link #ActionBar_navigationMode com.example.user.gps:navigationMode}
{@link #ActionBar_popupTheme com.example.user.gps:popupTheme}
{@link #ActionBar_progressBarPadding com.example.user.gps:progressBarPadding}
{@link #ActionBar_progressBarStyle com.example.user.gps:progressBarStyle}
{@link #ActionBar_subtitle com.example.user.gps:subtitle}
{@link #ActionBar_subtitleTextStyle com.example.user.gps:subtitleTextStyle}
{@link #ActionBar_title com.example.user.gps:title}
{@link #ActionBar_titleTextStyle com.example.user.gps: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, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, + 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, + 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, + 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, + 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, + 0x7f010022, 0x7f010023, 0x7f0100e2 + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:elevation + */ + public static final int ActionBar_elevation = 24; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 26; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:popupTheme + */ + public static final int ActionBar_popupTheme = 25; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

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

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

Includes the following attributes:

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

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

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background com.example.user.gps:background}
{@link #ActionMode_backgroundSplit com.example.user.gps:backgroundSplit}
{@link #ActionMode_closeItemLayout com.example.user.gps:closeItemLayout}
{@link #ActionMode_height com.example.user.gps:height}
{@link #ActionMode_subtitleTextStyle com.example.user.gps:subtitleTextStyle}
{@link #ActionMode_titleTextStyle com.example.user.gps: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, 0x7f01000f, 0x7f010010, 0x7f010014, + 0x7f010016, 0x7f010024 + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.example.user.gps:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount com.example.user.gps:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f010025, 0x7f010026 + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AdsAttrs. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AdsAttrs_adSize com.example.user.gps:adSize}
{@link #AdsAttrs_adSizes com.example.user.gps:adSizes}
{@link #AdsAttrs_adUnitId com.example.user.gps:adUnitId}
+ @see #AdsAttrs_adSize + @see #AdsAttrs_adSizes + @see #AdsAttrs_adUnitId + */ + public static final int[] AdsAttrs = { + 0x7f010027, 0x7f010028, 0x7f010029 + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#adSize} + attribute's value can be found in the {@link #AdsAttrs} 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.example.user.gps:adSize + */ + public static final int AdsAttrs_adSize = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#adSizes} + attribute's value can be found in the {@link #AdsAttrs} 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.example.user.gps:adSizes + */ + public static final int AdsAttrs_adSizes = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#adUnitId} + attribute's value can be found in the {@link #AdsAttrs} 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.example.user.gps:adUnitId + */ + public static final int AdsAttrs_adUnitId = 2; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout com.example.user.gps:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout com.example.user.gps:listItemLayout}
{@link #AlertDialog_listLayout com.example.user.gps:listLayout}
{@link #AlertDialog_multiChoiceItemLayout com.example.user.gps:multiChoiceItemLayout}
{@link #AlertDialog_singleChoiceItemLayout com.example.user.gps: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, 0x7f01002a, 0x7f01002b, 0x7f01002c, + 0x7f01002d, 0x7f01002e + }; + /** +

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

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

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

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:elevation + */ + public static final int AppBarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:expanded + */ + public static final int AppBarLayout_expanded = 2; + /** Attributes that can be used with a AppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_LayoutParams_layout_scrollFlags com.example.user.gps:layout_scrollFlags}
{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator com.example.user.gps:layout_scrollInterpolator}
+ @see #AppBarLayout_LayoutParams_layout_scrollFlags + @see #AppBarLayout_LayoutParams_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_LayoutParams = { + 0x7f010030, 0x7f010031 + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

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

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name com.example.user.gps:layout_scrollFlags + */ + public static final int AppBarLayout_LayoutParams_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:layout_scrollInterpolator + */ + public static final int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

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

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

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking com.example.user.gps:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f010033 + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseMode com.example.user.gps:layout_collapseMode}
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier com.example.user.gps:layout_collapseParallaxMultiplier}
+ @see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode + @see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingAppBarLayout_LayoutParams = { + 0x7f010034, 0x7f010035 + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name com.example.user.gps:layout_collapseMode + */ + public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:layout_collapseParallaxMultiplier + */ + public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity com.example.user.gps:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.example.user.gps:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim com.example.user.gps:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity com.example.user.gps:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin com.example.user.gps:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.example.user.gps:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.example.user.gps:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.example.user.gps:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.example.user.gps:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.example.user.gps:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_statusBarScrim com.example.user.gps:statusBarScrim}
{@link #CollapsingToolbarLayout_title com.example.user.gps:title}
{@link #CollapsingToolbarLayout_titleEnabled com.example.user.gps:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId com.example.user.gps:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f01000b, 0x7f010036, 0x7f010037, 0x7f010038, + 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, + 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, + 0x7f010041, 0x7f010042 + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

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

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name com.example.user.gps:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 11; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 8; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

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

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name com.example.user.gps:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 12; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 9; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:title + */ + public static final int CollapsingToolbarLayout_title = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 13; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 10; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

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

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

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

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines com.example.user.gps:keylines}
{@link #CoordinatorLayout_statusBarBackground com.example.user.gps:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f010045, 0x7f010046 + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_LayoutParams_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_LayoutParams_layout_anchor com.example.user.gps:layout_anchor}
{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity com.example.user.gps:layout_anchorGravity}
{@link #CoordinatorLayout_LayoutParams_layout_behavior com.example.user.gps:layout_behavior}
{@link #CoordinatorLayout_LayoutParams_layout_keyline com.example.user.gps:layout_keyline}
+ @see #CoordinatorLayout_LayoutParams_android_layout_gravity + @see #CoordinatorLayout_LayoutParams_layout_anchor + @see #CoordinatorLayout_LayoutParams_layout_anchorGravity + @see #CoordinatorLayout_LayoutParams_layout_behavior + @see #CoordinatorLayout_LayoutParams_layout_keyline + */ + public static final int[] CoordinatorLayout_LayoutParams = { + 0x010100b3, 0x7f010047, 0x7f010048, 0x7f010049, + 0x7f01004a + }; + /** +

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

This symbol is the offset where the {@link com.example.user.gps.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:layout_anchor + */ + public static final int CoordinatorLayout_LayoutParams_layout_anchor = 2; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

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

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name com.example.user.gps:layout_anchorGravity + */ + public static final int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:layout_behavior + */ + public static final int CoordinatorLayout_LayoutParams_layout_behavior = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:layout_keyline + */ + public static final int CoordinatorLayout_LayoutParams_layout_keyline = 3; + /** Attributes that can be used with a CustomWalletTheme. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #CustomWalletTheme_windowTransitionStyle com.example.user.gps:windowTransitionStyle}
+ @see #CustomWalletTheme_windowTransitionStyle + */ + public static final int[] CustomWalletTheme = { + 0x7f01004b + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#windowTransitionStyle} + attribute's value can be found in the {@link #CustomWalletTheme} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
slide1
none2
+ @attr name com.example.user.gps:windowTransitionStyle + */ + public static final int CustomWalletTheme_windowTransitionStyle = 0; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength com.example.user.gps:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength com.example.user.gps:arrowShaftLength}
{@link #DrawerArrowToggle_barLength com.example.user.gps:barLength}
{@link #DrawerArrowToggle_color com.example.user.gps:color}
{@link #DrawerArrowToggle_drawableSize com.example.user.gps:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars com.example.user.gps:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars com.example.user.gps:spinBars}
{@link #DrawerArrowToggle_thickness com.example.user.gps:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, + 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053 + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint com.example.user.gps:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode com.example.user.gps:backgroundTintMode}
{@link #FloatingActionButton_borderWidth com.example.user.gps:borderWidth}
{@link #FloatingActionButton_elevation com.example.user.gps:elevation}
{@link #FloatingActionButton_fabSize com.example.user.gps:fabSize}
{@link #FloatingActionButton_pressedTranslationZ com.example.user.gps:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor com.example.user.gps:rippleColor}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + */ + public static final int[] FloatingActionButton = { + 0x7f010022, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010132, 0x7f010133 + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 5; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name com.example.user.gps:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 6; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 4; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:elevation + */ + public static final int FloatingActionButton_elevation = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ @attr name com.example.user.gps:fabSize + */ + public static final int FloatingActionButton_fabSize = 2; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 3; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 1; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

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

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** 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.example.user.gps:divider}
{@link #LinearLayoutCompat_dividerPadding com.example.user.gps:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild com.example.user.gps:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers com.example.user.gps: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, 0x7f010013, 0x7f010059, 0x7f01005a, + 0x7f01005b + }; + /** +

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

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

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

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

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

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

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

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

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

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

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

Includes the following attributes:

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

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

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

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #LoadingImageView_circleCrop com.example.user.gps:circleCrop}
{@link #LoadingImageView_imageAspectRatio com.example.user.gps:imageAspectRatio}
{@link #LoadingImageView_imageAspectRatioAdjust com.example.user.gps:imageAspectRatioAdjust}
+ @see #LoadingImageView_circleCrop + @see #LoadingImageView_imageAspectRatio + @see #LoadingImageView_imageAspectRatioAdjust + */ + public static final int[] LoadingImageView = { + 0x7f01005c, 0x7f01005d, 0x7f01005e + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#circleCrop} + attribute's value can be found in the {@link #LoadingImageView} 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.example.user.gps:circleCrop + */ + public static final int LoadingImageView_circleCrop = 2; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#imageAspectRatio} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:imageAspectRatio + */ + public static final int LoadingImageView_imageAspectRatio = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#imageAspectRatioAdjust} + attribute's value can be found in the {@link #LoadingImageView} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
adjust_width1
adjust_height2
+ @attr name com.example.user.gps:imageAspectRatioAdjust + */ + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + /** Attributes that can be used with a MapAttrs. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MapAttrs_ambientEnabled com.example.user.gps:ambientEnabled}
{@link #MapAttrs_cameraBearing com.example.user.gps:cameraBearing}
{@link #MapAttrs_cameraTargetLat com.example.user.gps:cameraTargetLat}
{@link #MapAttrs_cameraTargetLng com.example.user.gps:cameraTargetLng}
{@link #MapAttrs_cameraTilt com.example.user.gps:cameraTilt}
{@link #MapAttrs_cameraZoom com.example.user.gps:cameraZoom}
{@link #MapAttrs_liteMode com.example.user.gps:liteMode}
{@link #MapAttrs_mapType com.example.user.gps:mapType}
{@link #MapAttrs_uiCompass com.example.user.gps:uiCompass}
{@link #MapAttrs_uiMapToolbar com.example.user.gps:uiMapToolbar}
{@link #MapAttrs_uiRotateGestures com.example.user.gps:uiRotateGestures}
{@link #MapAttrs_uiScrollGestures com.example.user.gps:uiScrollGestures}
{@link #MapAttrs_uiTiltGestures com.example.user.gps:uiTiltGestures}
{@link #MapAttrs_uiZoomControls com.example.user.gps:uiZoomControls}
{@link #MapAttrs_uiZoomGestures com.example.user.gps:uiZoomGestures}
{@link #MapAttrs_useViewLifecycle com.example.user.gps:useViewLifecycle}
{@link #MapAttrs_zOrderOnTop com.example.user.gps:zOrderOnTop}
+ @see #MapAttrs_ambientEnabled + @see #MapAttrs_cameraBearing + @see #MapAttrs_cameraTargetLat + @see #MapAttrs_cameraTargetLng + @see #MapAttrs_cameraTilt + @see #MapAttrs_cameraZoom + @see #MapAttrs_liteMode + @see #MapAttrs_mapType + @see #MapAttrs_uiCompass + @see #MapAttrs_uiMapToolbar + @see #MapAttrs_uiRotateGestures + @see #MapAttrs_uiScrollGestures + @see #MapAttrs_uiTiltGestures + @see #MapAttrs_uiZoomControls + @see #MapAttrs_uiZoomGestures + @see #MapAttrs_useViewLifecycle + @see #MapAttrs_zOrderOnTop + */ + public static final int[] MapAttrs = { + 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, + 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, + 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, + 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, + 0x7f01006f + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#ambientEnabled} + attribute's value can be found in the {@link #MapAttrs} 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.example.user.gps:ambientEnabled + */ + public static final int MapAttrs_ambientEnabled = 16; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#cameraBearing} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:cameraBearing + */ + public static final int MapAttrs_cameraBearing = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#cameraTargetLat} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:cameraTargetLat + */ + public static final int MapAttrs_cameraTargetLat = 2; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#cameraTargetLng} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:cameraTargetLng + */ + public static final int MapAttrs_cameraTargetLng = 3; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#cameraTilt} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:cameraTilt + */ + public static final int MapAttrs_cameraTilt = 4; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#cameraZoom} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:cameraZoom + */ + public static final int MapAttrs_cameraZoom = 5; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#liteMode} + attribute's value can be found in the {@link #MapAttrs} 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.example.user.gps:liteMode + */ + public static final int MapAttrs_liteMode = 6; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#mapType} + attribute's value can be found in the {@link #MapAttrs} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
none0
normal1
satellite2
terrain3
hybrid4
+ @attr name com.example.user.gps:mapType + */ + public static final int MapAttrs_mapType = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#uiCompass} + attribute's value can be found in the {@link #MapAttrs} 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.example.user.gps:uiCompass + */ + public static final int MapAttrs_uiCompass = 7; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#uiMapToolbar} + attribute's value can be found in the {@link #MapAttrs} 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.example.user.gps:uiMapToolbar + */ + public static final int MapAttrs_uiMapToolbar = 15; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#uiRotateGestures} + attribute's value can be found in the {@link #MapAttrs} 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.example.user.gps:uiRotateGestures + */ + public static final int MapAttrs_uiRotateGestures = 8; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#uiScrollGestures} + attribute's value can be found in the {@link #MapAttrs} 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.example.user.gps:uiScrollGestures + */ + public static final int MapAttrs_uiScrollGestures = 9; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#uiTiltGestures} + attribute's value can be found in the {@link #MapAttrs} 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.example.user.gps:uiTiltGestures + */ + public static final int MapAttrs_uiTiltGestures = 10; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#uiZoomControls} + attribute's value can be found in the {@link #MapAttrs} 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.example.user.gps:uiZoomControls + */ + public static final int MapAttrs_uiZoomControls = 11; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#uiZoomGestures} + attribute's value can be found in the {@link #MapAttrs} 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.example.user.gps:uiZoomGestures + */ + public static final int MapAttrs_uiZoomGestures = 12; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#useViewLifecycle} + attribute's value can be found in the {@link #MapAttrs} 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.example.user.gps:useViewLifecycle + */ + public static final int MapAttrs_useViewLifecycle = 13; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#zOrderOnTop} + attribute's value can be found in the {@link #MapAttrs} 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.example.user.gps:zOrderOnTop + */ + public static final int MapAttrs_zOrderOnTop = 14; + /** Attributes that can be used with a MediaRouteButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #MediaRouteButton_android_minHeight android:minHeight}
{@link #MediaRouteButton_android_minWidth android:minWidth}
{@link #MediaRouteButton_externalRouteEnabledDrawable com.example.user.gps:externalRouteEnabledDrawable}
+ @see #MediaRouteButton_android_minHeight + @see #MediaRouteButton_android_minWidth + @see #MediaRouteButton_externalRouteEnabledDrawable + */ + public static final int[] MediaRouteButton = { + 0x0101013f, 0x01010140, 0x7f010070 + }; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #MediaRouteButton} array. + @attr name android:minHeight + */ + public static final int MediaRouteButton_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #MediaRouteButton} array. + @attr name android:minWidth + */ + public static final int MediaRouteButton_android_minWidth = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#externalRouteEnabledDrawable} + attribute's value can be found in the {@link #MediaRouteButton} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:externalRouteEnabledDrawable + */ + public static final int MediaRouteButton_externalRouteEnabledDrawable = 2; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

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

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

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

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

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

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

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

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout com.example.user.gps:actionLayout}
{@link #MenuItem_actionProviderClass com.example.user.gps:actionProviderClass}
{@link #MenuItem_actionViewClass com.example.user.gps: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.example.user.gps: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, 0x7f010071, 0x7f010072, 0x7f010073, + 0x7f010074 + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionLayout + */ + public static final int MenuItem_actionLayout = 14; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 16; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionViewClass + */ + public static final int MenuItem_actionViewClass = 15; + /** +

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

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

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

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

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

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

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

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

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

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

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

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

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

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:showAsAction + */ + public static final int MenuItem_showAsAction = 13; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing com.example.user.gps: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, 0x7f010075 + }; + /** +

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

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

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

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

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

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

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

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation com.example.user.gps:elevation}
{@link #NavigationView_headerLayout com.example.user.gps:headerLayout}
{@link #NavigationView_itemBackground com.example.user.gps:itemBackground}
{@link #NavigationView_itemIconTint com.example.user.gps:itemIconTint}
{@link #NavigationView_itemTextAppearance com.example.user.gps:itemTextAppearance}
{@link #NavigationView_itemTextColor com.example.user.gps:itemTextColor}
{@link #NavigationView_menu com.example.user.gps:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010022, + 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, + 0x7f01007a, 0x7f01007b + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:elevation + */ + public static final int NavigationView_elevation = 3; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:headerLayout + */ + public static final int NavigationView_headerLayout = 9; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:itemBackground + */ + public static final int NavigationView_itemBackground = 7; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:itemIconTint + */ + public static final int NavigationView_itemIconTint = 5; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 8; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:itemTextColor + */ + public static final int NavigationView_itemTextColor = 6; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:menu + */ + public static final int NavigationView_menu = 4; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

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

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

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 1; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor com.example.user.gps:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f01007d + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_layoutManager com.example.user.gps:layoutManager}
{@link #RecyclerView_reverseLayout com.example.user.gps:reverseLayout}
{@link #RecyclerView_spanCount com.example.user.gps:spanCount}
{@link #RecyclerView_stackFromEnd com.example.user.gps:stackFromEnd}
+ @see #RecyclerView_android_orientation + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x7f01007e, 0x7f01007f, 0x7f010080, + 0x7f010081 + }; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:layoutManager + */ + public static final int RecyclerView_layoutManager = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 3; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:spanCount + */ + public static final int RecyclerView_spanCount = 2; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 4; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground com.example.user.gps:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f010082 + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

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

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.example.user.gps:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Params. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Params_behavior_overlapTop com.example.user.gps:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Params_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Params = { + 0x7f010083 + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Params_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon com.example.user.gps:closeIcon}
{@link #SearchView_commitIcon com.example.user.gps:commitIcon}
{@link #SearchView_defaultQueryHint com.example.user.gps:defaultQueryHint}
{@link #SearchView_goIcon com.example.user.gps:goIcon}
{@link #SearchView_iconifiedByDefault com.example.user.gps:iconifiedByDefault}
{@link #SearchView_layout com.example.user.gps:layout}
{@link #SearchView_queryBackground com.example.user.gps:queryBackground}
{@link #SearchView_queryHint com.example.user.gps:queryHint}
{@link #SearchView_searchHintIcon com.example.user.gps:searchHintIcon}
{@link #SearchView_searchIcon com.example.user.gps:searchIcon}
{@link #SearchView_submitBackground com.example.user.gps:submitBackground}
{@link #SearchView_suggestionRowLayout com.example.user.gps:suggestionRowLayout}
{@link #SearchView_voiceIcon com.example.user.gps:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, + 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, + 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, + 0x7f010090 + }; + /** +

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

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

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

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

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SignInButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SignInButton_buttonSize com.example.user.gps:buttonSize}
{@link #SignInButton_colorScheme com.example.user.gps:colorScheme}
{@link #SignInButton_scopeUris com.example.user.gps:scopeUris}
+ @see #SignInButton_buttonSize + @see #SignInButton_colorScheme + @see #SignInButton_scopeUris + */ + public static final int[] SignInButton = { + 0x7f010091, 0x7f010092, 0x7f010093 + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#buttonSize} + attribute's value can be found in the {@link #SignInButton} 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 one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
standard0
wide1
icon_only2
+ @attr name com.example.user.gps:buttonSize + */ + public static final int SignInButton_buttonSize = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#colorScheme} + attribute's value can be found in the {@link #SignInButton} 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 one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
dark0
light1
auto2
+ @attr name com.example.user.gps:colorScheme + */ + public static final int SignInButton_colorScheme = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#scopeUris} + attribute's value can be found in the {@link #SignInButton} 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 string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. + @attr name com.example.user.gps:scopeUris + */ + public static final int SignInButton_scopeUris = 2; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

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

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:elevation + */ + public static final int SnackbarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 2; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

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

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

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

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

This symbol is the offset where the {@link com.example.user.gps.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:popupTheme + */ + public static final int Spinner_popupTheme = 3; + /** 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.example.user.gps:showText}
{@link #SwitchCompat_splitTrack com.example.user.gps:splitTrack}
{@link #SwitchCompat_switchMinWidth com.example.user.gps:switchMinWidth}
{@link #SwitchCompat_switchPadding com.example.user.gps:switchPadding}
{@link #SwitchCompat_switchTextAppearance com.example.user.gps:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding com.example.user.gps:thumbTextPadding}
{@link #SwitchCompat_track com.example.user.gps: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, 0x7f010095, + 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, + 0x7f01009a, 0x7f01009b + }; + /** +

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

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

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

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:showText + */ + public static final int SwitchCompat_showText = 9; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:splitTrack + */ + public static final int SwitchCompat_splitTrack = 8; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 6; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:switchPadding + */ + public static final int SwitchCompat_switchPadding = 7; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 5; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 4; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:track + */ + public static final int SwitchCompat_track = 3; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground com.example.user.gps:tabBackground}
{@link #TabLayout_tabContentStart com.example.user.gps:tabContentStart}
{@link #TabLayout_tabGravity com.example.user.gps:tabGravity}
{@link #TabLayout_tabIndicatorColor com.example.user.gps:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight com.example.user.gps:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth com.example.user.gps:tabMaxWidth}
{@link #TabLayout_tabMinWidth com.example.user.gps:tabMinWidth}
{@link #TabLayout_tabMode com.example.user.gps:tabMode}
{@link #TabLayout_tabPadding com.example.user.gps:tabPadding}
{@link #TabLayout_tabPaddingBottom com.example.user.gps:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd com.example.user.gps:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart com.example.user.gps:tabPaddingStart}
{@link #TabLayout_tabPaddingTop com.example.user.gps:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor com.example.user.gps:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance com.example.user.gps:tabTextAppearance}
{@link #TabLayout_tabTextColor com.example.user.gps:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, + 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, + 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, + 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name com.example.user.gps:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name com.example.user.gps:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

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

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 4; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 5; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 7; + /** +

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

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

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

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

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 8; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled com.example.user.gps:counterEnabled}
{@link #TextInputLayout_counterMaxLength com.example.user.gps:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance com.example.user.gps:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance com.example.user.gps:counterTextAppearance}
{@link #TextInputLayout_errorEnabled com.example.user.gps:errorEnabled}
{@link #TextInputLayout_errorTextAppearance com.example.user.gps:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled com.example.user.gps:hintAnimationEnabled}
{@link #TextInputLayout_hintTextAppearance com.example.user.gps:hintTextAppearance}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintTextAppearance + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f0100ac, 0x7f0100ad, + 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, + 0x7f0100b2, 0x7f0100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 5; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 6; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 8; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 7; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 3; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 4; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 9; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** Attributes that can be used with a Theme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Theme_actionBarDivider com.example.user.gps:actionBarDivider}
{@link #Theme_actionBarItemBackground com.example.user.gps:actionBarItemBackground}
{@link #Theme_actionBarPopupTheme com.example.user.gps:actionBarPopupTheme}
{@link #Theme_actionBarSize com.example.user.gps:actionBarSize}
{@link #Theme_actionBarSplitStyle com.example.user.gps:actionBarSplitStyle}
{@link #Theme_actionBarStyle com.example.user.gps:actionBarStyle}
{@link #Theme_actionBarTabBarStyle com.example.user.gps:actionBarTabBarStyle}
{@link #Theme_actionBarTabStyle com.example.user.gps:actionBarTabStyle}
{@link #Theme_actionBarTabTextStyle com.example.user.gps:actionBarTabTextStyle}
{@link #Theme_actionBarTheme com.example.user.gps:actionBarTheme}
{@link #Theme_actionBarWidgetTheme com.example.user.gps:actionBarWidgetTheme}
{@link #Theme_actionButtonStyle com.example.user.gps:actionButtonStyle}
{@link #Theme_actionDropDownStyle com.example.user.gps:actionDropDownStyle}
{@link #Theme_actionMenuTextAppearance com.example.user.gps:actionMenuTextAppearance}
{@link #Theme_actionMenuTextColor com.example.user.gps:actionMenuTextColor}
{@link #Theme_actionModeBackground com.example.user.gps:actionModeBackground}
{@link #Theme_actionModeCloseButtonStyle com.example.user.gps:actionModeCloseButtonStyle}
{@link #Theme_actionModeCloseDrawable com.example.user.gps:actionModeCloseDrawable}
{@link #Theme_actionModeCopyDrawable com.example.user.gps:actionModeCopyDrawable}
{@link #Theme_actionModeCutDrawable com.example.user.gps:actionModeCutDrawable}
{@link #Theme_actionModeFindDrawable com.example.user.gps:actionModeFindDrawable}
{@link #Theme_actionModePasteDrawable com.example.user.gps:actionModePasteDrawable}
{@link #Theme_actionModePopupWindowStyle com.example.user.gps:actionModePopupWindowStyle}
{@link #Theme_actionModeSelectAllDrawable com.example.user.gps:actionModeSelectAllDrawable}
{@link #Theme_actionModeShareDrawable com.example.user.gps:actionModeShareDrawable}
{@link #Theme_actionModeSplitBackground com.example.user.gps:actionModeSplitBackground}
{@link #Theme_actionModeStyle com.example.user.gps:actionModeStyle}
{@link #Theme_actionModeWebSearchDrawable com.example.user.gps:actionModeWebSearchDrawable}
{@link #Theme_actionOverflowButtonStyle com.example.user.gps:actionOverflowButtonStyle}
{@link #Theme_actionOverflowMenuStyle com.example.user.gps:actionOverflowMenuStyle}
{@link #Theme_activityChooserViewStyle com.example.user.gps:activityChooserViewStyle}
{@link #Theme_alertDialogButtonGroupStyle com.example.user.gps:alertDialogButtonGroupStyle}
{@link #Theme_alertDialogCenterButtons com.example.user.gps:alertDialogCenterButtons}
{@link #Theme_alertDialogStyle com.example.user.gps:alertDialogStyle}
{@link #Theme_alertDialogTheme com.example.user.gps:alertDialogTheme}
{@link #Theme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #Theme_android_windowIsFloating android:windowIsFloating}
{@link #Theme_autoCompleteTextViewStyle com.example.user.gps:autoCompleteTextViewStyle}
{@link #Theme_borderlessButtonStyle com.example.user.gps:borderlessButtonStyle}
{@link #Theme_buttonBarButtonStyle com.example.user.gps:buttonBarButtonStyle}
{@link #Theme_buttonBarNegativeButtonStyle com.example.user.gps:buttonBarNegativeButtonStyle}
{@link #Theme_buttonBarNeutralButtonStyle com.example.user.gps:buttonBarNeutralButtonStyle}
{@link #Theme_buttonBarPositiveButtonStyle com.example.user.gps:buttonBarPositiveButtonStyle}
{@link #Theme_buttonBarStyle com.example.user.gps:buttonBarStyle}
{@link #Theme_buttonStyle com.example.user.gps:buttonStyle}
{@link #Theme_buttonStyleSmall com.example.user.gps:buttonStyleSmall}
{@link #Theme_checkboxStyle com.example.user.gps:checkboxStyle}
{@link #Theme_checkedTextViewStyle com.example.user.gps:checkedTextViewStyle}
{@link #Theme_colorAccent com.example.user.gps:colorAccent}
{@link #Theme_colorButtonNormal com.example.user.gps:colorButtonNormal}
{@link #Theme_colorControlActivated com.example.user.gps:colorControlActivated}
{@link #Theme_colorControlHighlight com.example.user.gps:colorControlHighlight}
{@link #Theme_colorControlNormal com.example.user.gps:colorControlNormal}
{@link #Theme_colorPrimary com.example.user.gps:colorPrimary}
{@link #Theme_colorPrimaryDark com.example.user.gps:colorPrimaryDark}
{@link #Theme_colorSwitchThumbNormal com.example.user.gps:colorSwitchThumbNormal}
{@link #Theme_controlBackground com.example.user.gps:controlBackground}
{@link #Theme_dialogPreferredPadding com.example.user.gps:dialogPreferredPadding}
{@link #Theme_dialogTheme com.example.user.gps:dialogTheme}
{@link #Theme_dividerHorizontal com.example.user.gps:dividerHorizontal}
{@link #Theme_dividerVertical com.example.user.gps:dividerVertical}
{@link #Theme_dropDownListViewStyle com.example.user.gps:dropDownListViewStyle}
{@link #Theme_dropdownListPreferredItemHeight com.example.user.gps:dropdownListPreferredItemHeight}
{@link #Theme_editTextBackground com.example.user.gps:editTextBackground}
{@link #Theme_editTextColor com.example.user.gps:editTextColor}
{@link #Theme_editTextStyle com.example.user.gps:editTextStyle}
{@link #Theme_homeAsUpIndicator com.example.user.gps:homeAsUpIndicator}
{@link #Theme_imageButtonStyle com.example.user.gps:imageButtonStyle}
{@link #Theme_listChoiceBackgroundIndicator com.example.user.gps:listChoiceBackgroundIndicator}
{@link #Theme_listDividerAlertDialog com.example.user.gps:listDividerAlertDialog}
{@link #Theme_listPopupWindowStyle com.example.user.gps:listPopupWindowStyle}
{@link #Theme_listPreferredItemHeight com.example.user.gps:listPreferredItemHeight}
{@link #Theme_listPreferredItemHeightLarge com.example.user.gps:listPreferredItemHeightLarge}
{@link #Theme_listPreferredItemHeightSmall com.example.user.gps:listPreferredItemHeightSmall}
{@link #Theme_listPreferredItemPaddingLeft com.example.user.gps:listPreferredItemPaddingLeft}
{@link #Theme_listPreferredItemPaddingRight com.example.user.gps:listPreferredItemPaddingRight}
{@link #Theme_panelBackground com.example.user.gps:panelBackground}
{@link #Theme_panelMenuListTheme com.example.user.gps:panelMenuListTheme}
{@link #Theme_panelMenuListWidth com.example.user.gps:panelMenuListWidth}
{@link #Theme_popupMenuStyle com.example.user.gps:popupMenuStyle}
{@link #Theme_popupWindowStyle com.example.user.gps:popupWindowStyle}
{@link #Theme_radioButtonStyle com.example.user.gps:radioButtonStyle}
{@link #Theme_ratingBarStyle com.example.user.gps:ratingBarStyle}
{@link #Theme_searchViewStyle com.example.user.gps:searchViewStyle}
{@link #Theme_seekBarStyle com.example.user.gps:seekBarStyle}
{@link #Theme_selectableItemBackground com.example.user.gps:selectableItemBackground}
{@link #Theme_selectableItemBackgroundBorderless com.example.user.gps:selectableItemBackgroundBorderless}
{@link #Theme_spinnerDropDownItemStyle com.example.user.gps:spinnerDropDownItemStyle}
{@link #Theme_spinnerStyle com.example.user.gps:spinnerStyle}
{@link #Theme_switchStyle com.example.user.gps:switchStyle}
{@link #Theme_textAppearanceLargePopupMenu com.example.user.gps:textAppearanceLargePopupMenu}
{@link #Theme_textAppearanceListItem com.example.user.gps:textAppearanceListItem}
{@link #Theme_textAppearanceListItemSmall com.example.user.gps:textAppearanceListItemSmall}
{@link #Theme_textAppearanceSearchResultSubtitle com.example.user.gps:textAppearanceSearchResultSubtitle}
{@link #Theme_textAppearanceSearchResultTitle com.example.user.gps:textAppearanceSearchResultTitle}
{@link #Theme_textAppearanceSmallPopupMenu com.example.user.gps:textAppearanceSmallPopupMenu}
{@link #Theme_textColorAlertDialogListItem com.example.user.gps:textColorAlertDialogListItem}
{@link #Theme_textColorSearchUrl com.example.user.gps:textColorSearchUrl}
{@link #Theme_toolbarNavigationButtonStyle com.example.user.gps:toolbarNavigationButtonStyle}
{@link #Theme_toolbarStyle com.example.user.gps:toolbarStyle}
{@link #Theme_windowActionBar com.example.user.gps:windowActionBar}
{@link #Theme_windowActionBarOverlay com.example.user.gps:windowActionBarOverlay}
{@link #Theme_windowActionModeOverlay com.example.user.gps:windowActionModeOverlay}
{@link #Theme_windowFixedHeightMajor com.example.user.gps:windowFixedHeightMajor}
{@link #Theme_windowFixedHeightMinor com.example.user.gps:windowFixedHeightMinor}
{@link #Theme_windowFixedWidthMajor com.example.user.gps:windowFixedWidthMajor}
{@link #Theme_windowFixedWidthMinor com.example.user.gps:windowFixedWidthMinor}
{@link #Theme_windowMinWidthMajor com.example.user.gps:windowMinWidthMajor}
{@link #Theme_windowMinWidthMinor com.example.user.gps:windowMinWidthMinor}
{@link #Theme_windowNoTitle com.example.user.gps: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_borderlessButtonStyle + @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_controlBackground + @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_imageButtonStyle + @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_seekBarStyle + @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, 0x7f0100b4, 0x7f0100b5, + 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, + 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, + 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, + 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, + 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, + 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, + 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, + 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, + 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, + 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, + 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, + 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, 0x7f0100e5, + 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, + 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, + 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, + 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, + 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, + 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, + 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101, + 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, + 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, + 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, + 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, + 0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115, + 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, + 0x7f01011a, 0x7f01011b, 0x7f01011c, 0x7f01011d, + 0x7f01011e, 0x7f01011f + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionBarDivider + */ + public static final int Theme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionBarItemBackground + */ + public static final int Theme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionBarPopupTheme + */ + public static final int Theme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionBarSize + */ + public static final int Theme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionBarSplitStyle + */ + public static final int Theme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionBarStyle + */ + public static final int Theme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionBarTabBarStyle + */ + public static final int Theme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionBarTabStyle + */ + public static final int Theme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionBarTabTextStyle + */ + public static final int Theme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionBarTheme + */ + public static final int Theme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionBarWidgetTheme + */ + public static final int Theme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionButtonStyle + */ + public static final int Theme_actionButtonStyle = 49; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionDropDownStyle + */ + public static final int Theme_actionDropDownStyle = 45; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionMenuTextAppearance + */ + public static final int Theme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionMenuTextColor + */ + public static final int Theme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionModeBackground + */ + public static final int Theme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionModeCloseButtonStyle + */ + public static final int Theme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionModeCloseDrawable + */ + public static final int Theme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionModeCopyDrawable + */ + public static final int Theme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionModeCutDrawable + */ + public static final int Theme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionModeFindDrawable + */ + public static final int Theme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionModePasteDrawable + */ + public static final int Theme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionModePopupWindowStyle + */ + public static final int Theme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionModeSelectAllDrawable + */ + public static final int Theme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionModeShareDrawable + */ + public static final int Theme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionModeSplitBackground + */ + public static final int Theme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionModeStyle + */ + public static final int Theme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionModeWebSearchDrawable + */ + public static final int Theme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionOverflowButtonStyle + */ + public static final int Theme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:actionOverflowMenuStyle + */ + public static final int Theme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:activityChooserViewStyle + */ + public static final int Theme_activityChooserViewStyle = 57; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:alertDialogButtonGroupStyle + */ + public static final int Theme_alertDialogButtonGroupStyle = 92; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:alertDialogCenterButtons + */ + public static final int Theme_alertDialogCenterButtons = 93; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:alertDialogStyle + */ + public static final int Theme_alertDialogStyle = 91; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:alertDialogTheme + */ + public static final int Theme_alertDialogTheme = 94; + /** +

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 final 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 final int Theme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:autoCompleteTextViewStyle + */ + public static final int Theme_autoCompleteTextViewStyle = 99; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#borderlessButtonStyle} + 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.example.user.gps:borderlessButtonStyle + */ + public static final int Theme_borderlessButtonStyle = 54; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:buttonBarButtonStyle + */ + public static final int Theme_buttonBarButtonStyle = 51; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:buttonBarNegativeButtonStyle + */ + public static final int Theme_buttonBarNegativeButtonStyle = 97; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:buttonBarNeutralButtonStyle + */ + public static final int Theme_buttonBarNeutralButtonStyle = 98; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:buttonBarPositiveButtonStyle + */ + public static final int Theme_buttonBarPositiveButtonStyle = 96; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:buttonBarStyle + */ + public static final int Theme_buttonBarStyle = 50; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:buttonStyle + */ + public static final int Theme_buttonStyle = 100; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:buttonStyleSmall + */ + public static final int Theme_buttonStyleSmall = 101; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:checkboxStyle + */ + public static final int Theme_checkboxStyle = 102; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:checkedTextViewStyle + */ + public static final int Theme_checkedTextViewStyle = 103; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:colorAccent + */ + public static final int Theme_colorAccent = 84; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:colorButtonNormal + */ + public static final int Theme_colorButtonNormal = 88; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:colorControlActivated + */ + public static final int Theme_colorControlActivated = 86; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:colorControlHighlight + */ + public static final int Theme_colorControlHighlight = 87; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:colorControlNormal + */ + public static final int Theme_colorControlNormal = 85; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:colorPrimary + */ + public static final int Theme_colorPrimary = 82; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:colorPrimaryDark + */ + public static final int Theme_colorPrimaryDark = 83; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:colorSwitchThumbNormal + */ + public static final int Theme_colorSwitchThumbNormal = 89; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#controlBackground} + 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.example.user.gps:controlBackground + */ + public static final int Theme_controlBackground = 90; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:dialogPreferredPadding + */ + public static final int Theme_dialogPreferredPadding = 43; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:dialogTheme + */ + public static final int Theme_dialogTheme = 42; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:dividerHorizontal + */ + public static final int Theme_dividerHorizontal = 56; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:dividerVertical + */ + public static final int Theme_dividerVertical = 55; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:dropDownListViewStyle + */ + public static final int Theme_dropDownListViewStyle = 74; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:dropdownListPreferredItemHeight + */ + public static final int Theme_dropdownListPreferredItemHeight = 46; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:editTextBackground + */ + public static final int Theme_editTextBackground = 63; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:editTextColor + */ + public static final int Theme_editTextColor = 62; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:editTextStyle + */ + public static final int Theme_editTextStyle = 104; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:homeAsUpIndicator + */ + public static final int Theme_homeAsUpIndicator = 48; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#imageButtonStyle} + 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.example.user.gps:imageButtonStyle + */ + public static final int Theme_imageButtonStyle = 64; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:listChoiceBackgroundIndicator + */ + public static final int Theme_listChoiceBackgroundIndicator = 81; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:listDividerAlertDialog + */ + public static final int Theme_listDividerAlertDialog = 44; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:listPopupWindowStyle + */ + public static final int Theme_listPopupWindowStyle = 75; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:listPreferredItemHeight + */ + public static final int Theme_listPreferredItemHeight = 69; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:listPreferredItemHeightLarge + */ + public static final int Theme_listPreferredItemHeightLarge = 71; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:listPreferredItemHeightSmall + */ + public static final int Theme_listPreferredItemHeightSmall = 70; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:listPreferredItemPaddingLeft + */ + public static final int Theme_listPreferredItemPaddingLeft = 72; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:listPreferredItemPaddingRight + */ + public static final int Theme_listPreferredItemPaddingRight = 73; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:panelBackground + */ + public static final int Theme_panelBackground = 78; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:panelMenuListTheme + */ + public static final int Theme_panelMenuListTheme = 80; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:panelMenuListWidth + */ + public static final int Theme_panelMenuListWidth = 79; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:popupMenuStyle + */ + public static final int Theme_popupMenuStyle = 60; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:popupWindowStyle + */ + public static final int Theme_popupWindowStyle = 61; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:radioButtonStyle + */ + public static final int Theme_radioButtonStyle = 105; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:ratingBarStyle + */ + public static final int Theme_ratingBarStyle = 106; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:searchViewStyle + */ + public static final int Theme_searchViewStyle = 68; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#seekBarStyle} + 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.example.user.gps:seekBarStyle + */ + public static final int Theme_seekBarStyle = 107; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:selectableItemBackground + */ + public static final int Theme_selectableItemBackground = 52; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:selectableItemBackgroundBorderless + */ + public static final int Theme_selectableItemBackgroundBorderless = 53; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:spinnerDropDownItemStyle + */ + public static final int Theme_spinnerDropDownItemStyle = 47; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:spinnerStyle + */ + public static final int Theme_spinnerStyle = 108; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:switchStyle + */ + public static final int Theme_switchStyle = 109; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:textAppearanceLargePopupMenu + */ + public static final int Theme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:textAppearanceListItem + */ + public static final int Theme_textAppearanceListItem = 76; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:textAppearanceListItemSmall + */ + public static final int Theme_textAppearanceListItemSmall = 77; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:textAppearanceSearchResultSubtitle + */ + public static final int Theme_textAppearanceSearchResultSubtitle = 66; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:textAppearanceSearchResultTitle + */ + public static final int Theme_textAppearanceSearchResultTitle = 65; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:textAppearanceSmallPopupMenu + */ + public static final int Theme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:textColorAlertDialogListItem + */ + public static final int Theme_textColorAlertDialogListItem = 95; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:textColorSearchUrl + */ + public static final int Theme_textColorSearchUrl = 67; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:toolbarNavigationButtonStyle + */ + public static final int Theme_toolbarNavigationButtonStyle = 59; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:toolbarStyle + */ + public static final int Theme_toolbarStyle = 58; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:windowActionBar + */ + public static final int Theme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:windowActionBarOverlay + */ + public static final int Theme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:windowActionModeOverlay + */ + public static final int Theme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:windowFixedHeightMajor + */ + public static final int Theme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:windowFixedHeightMinor + */ + public static final int Theme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:windowFixedWidthMajor + */ + public static final int Theme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:windowFixedWidthMinor + */ + public static final int Theme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:windowMinWidthMajor + */ + public static final int Theme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:windowMinWidthMinor + */ + public static final int Theme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:windowNoTitle + */ + public static final 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.example.user.gps:collapseContentDescription}
{@link #Toolbar_collapseIcon com.example.user.gps:collapseIcon}
{@link #Toolbar_contentInsetEnd com.example.user.gps:contentInsetEnd}
{@link #Toolbar_contentInsetLeft com.example.user.gps:contentInsetLeft}
{@link #Toolbar_contentInsetRight com.example.user.gps:contentInsetRight}
{@link #Toolbar_contentInsetStart com.example.user.gps:contentInsetStart}
{@link #Toolbar_logo com.example.user.gps:logo}
{@link #Toolbar_logoDescription com.example.user.gps:logoDescription}
{@link #Toolbar_maxButtonHeight com.example.user.gps:maxButtonHeight}
{@link #Toolbar_navigationContentDescription com.example.user.gps:navigationContentDescription}
{@link #Toolbar_navigationIcon com.example.user.gps:navigationIcon}
{@link #Toolbar_popupTheme com.example.user.gps:popupTheme}
{@link #Toolbar_subtitle com.example.user.gps:subtitle}
{@link #Toolbar_subtitleTextAppearance com.example.user.gps:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor com.example.user.gps:subtitleTextColor}
{@link #Toolbar_title com.example.user.gps:title}
{@link #Toolbar_titleMarginBottom com.example.user.gps:titleMarginBottom}
{@link #Toolbar_titleMarginEnd com.example.user.gps:titleMarginEnd}
{@link #Toolbar_titleMarginStart com.example.user.gps:titleMarginStart}
{@link #Toolbar_titleMarginTop com.example.user.gps:titleMarginTop}
{@link #Toolbar_titleMargins com.example.user.gps:titleMargins}
{@link #Toolbar_titleTextAppearance com.example.user.gps:titleTextAppearance}
{@link #Toolbar_titleTextColor com.example.user.gps:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f01000b, 0x7f01000e, + 0x7f010012, 0x7f01001e, 0x7f01001f, 0x7f010020, + 0x7f010021, 0x7f010023, 0x7f010120, 0x7f010121, + 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, + 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, + 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, + 0x7f01012e + }; + /** +

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

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 19; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:collapseIcon + */ + public static final int Toolbar_collapseIcon = 18; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:logoDescription + */ + public static final int Toolbar_logoDescription = 22; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 17; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 21; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:navigationIcon + */ + public static final int Toolbar_navigationIcon = 20; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:popupTheme + */ + public static final int Toolbar_popupTheme = 9; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 11; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 24; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 16; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 14; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 13; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 15; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:titleMargins + */ + public static final int Toolbar_titleMargins = 12; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 10; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:titleTextColor + */ + public static final int Toolbar_titleTextColor = 23; + /** Attributes that can be used with a View. +

Includes the following attributes:

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

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link com.example.user.gps.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.example.user.gps:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

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

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

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

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.example.user.gps:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

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

Includes the following attributes:

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

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + /** Attributes that can be used with a WalletFragmentOptions. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #WalletFragmentOptions_appTheme com.example.user.gps:appTheme}
{@link #WalletFragmentOptions_environment com.example.user.gps:environment}
{@link #WalletFragmentOptions_fragmentMode com.example.user.gps:fragmentMode}
{@link #WalletFragmentOptions_fragmentStyle com.example.user.gps:fragmentStyle}
+ @see #WalletFragmentOptions_appTheme + @see #WalletFragmentOptions_environment + @see #WalletFragmentOptions_fragmentMode + @see #WalletFragmentOptions_fragmentStyle + */ + public static final int[] WalletFragmentOptions = { + 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#appTheme} + attribute's value can be found in the {@link #WalletFragmentOptions} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
holo_dark0
holo_light1
+ @attr name com.example.user.gps:appTheme + */ + public static final int WalletFragmentOptions_appTheme = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#environment} + attribute's value can be found in the {@link #WalletFragmentOptions} array. + + +

Must be one of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
production1
test3
sandbox0
strict_sandbox2
+ @attr name com.example.user.gps:environment + */ + public static final int WalletFragmentOptions_environment = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#fragmentMode} + attribute's value can be found in the {@link #WalletFragmentOptions} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
buyButton1
selectionDetails2
+ @attr name com.example.user.gps:fragmentMode + */ + public static final int WalletFragmentOptions_fragmentMode = 3; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#fragmentStyle} + attribute's value can be found in the {@link #WalletFragmentOptions} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:fragmentStyle + */ + public static final int WalletFragmentOptions_fragmentStyle = 2; + /** Attributes that can be used with a WalletFragmentStyle. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #WalletFragmentStyle_buyButtonAppearance com.example.user.gps:buyButtonAppearance}
{@link #WalletFragmentStyle_buyButtonHeight com.example.user.gps:buyButtonHeight}
{@link #WalletFragmentStyle_buyButtonText com.example.user.gps:buyButtonText}
{@link #WalletFragmentStyle_buyButtonWidth com.example.user.gps:buyButtonWidth}
{@link #WalletFragmentStyle_maskedWalletDetailsBackground com.example.user.gps:maskedWalletDetailsBackground}
{@link #WalletFragmentStyle_maskedWalletDetailsButtonBackground com.example.user.gps:maskedWalletDetailsButtonBackground}
{@link #WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance com.example.user.gps:maskedWalletDetailsButtonTextAppearance}
{@link #WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance com.example.user.gps:maskedWalletDetailsHeaderTextAppearance}
{@link #WalletFragmentStyle_maskedWalletDetailsLogoImageType com.example.user.gps:maskedWalletDetailsLogoImageType}
{@link #WalletFragmentStyle_maskedWalletDetailsLogoTextColor com.example.user.gps:maskedWalletDetailsLogoTextColor}
{@link #WalletFragmentStyle_maskedWalletDetailsTextAppearance com.example.user.gps:maskedWalletDetailsTextAppearance}
+ @see #WalletFragmentStyle_buyButtonAppearance + @see #WalletFragmentStyle_buyButtonHeight + @see #WalletFragmentStyle_buyButtonText + @see #WalletFragmentStyle_buyButtonWidth + @see #WalletFragmentStyle_maskedWalletDetailsBackground + @see #WalletFragmentStyle_maskedWalletDetailsButtonBackground + @see #WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance + @see #WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance + @see #WalletFragmentStyle_maskedWalletDetailsLogoImageType + @see #WalletFragmentStyle_maskedWalletDetailsLogoTextColor + @see #WalletFragmentStyle_maskedWalletDetailsTextAppearance + */ + public static final int[] WalletFragmentStyle = { + 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, + 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, + 0x7f010140, 0x7f010141, 0x7f010142 + }; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#buyButtonAppearance} + attribute's value can be found in the {@link #WalletFragmentStyle} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + + + +
ConstantValueDescription
google_wallet_classic1
google_wallet_grayscale2
google_wallet_monochrome3
android_pay_dark4
android_pay_light5
android_pay_light_with_border6
classic1
grayscale2
monochrome3
+ @attr name com.example.user.gps:buyButtonAppearance + */ + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#buyButtonHeight} + attribute's value can be found in the {@link #WalletFragmentStyle} 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
match_parent-1
wrap_content-2
+ @attr name com.example.user.gps:buyButtonHeight + */ + public static final int WalletFragmentStyle_buyButtonHeight = 0; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#buyButtonText} + attribute's value can be found in the {@link #WalletFragmentStyle} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
buy_with5
logo_only6
donate_with7
buy_with_google1
buy_now2
book_now3
donate_with_google4
+ @attr name com.example.user.gps:buyButtonText + */ + public static final int WalletFragmentStyle_buyButtonText = 2; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#buyButtonWidth} + attribute's value can be found in the {@link #WalletFragmentStyle} 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
match_parent-1
wrap_content-2
+ @attr name com.example.user.gps:buyButtonWidth + */ + public static final int WalletFragmentStyle_buyButtonWidth = 1; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#maskedWalletDetailsBackground} + attribute's value can be found in the {@link #WalletFragmentStyle} 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.example.user.gps:maskedWalletDetailsBackground + */ + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#maskedWalletDetailsButtonBackground} + attribute's value can be found in the {@link #WalletFragmentStyle} 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.example.user.gps:maskedWalletDetailsButtonBackground + */ + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#maskedWalletDetailsButtonTextAppearance} + attribute's value can be found in the {@link #WalletFragmentStyle} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:maskedWalletDetailsButtonTextAppearance + */ + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#maskedWalletDetailsHeaderTextAppearance} + attribute's value can be found in the {@link #WalletFragmentStyle} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:maskedWalletDetailsHeaderTextAppearance + */ + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#maskedWalletDetailsLogoImageType} + attribute's value can be found in the {@link #WalletFragmentStyle} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
google_wallet_classic1
google_wallet_monochrome2
android_pay3
classic1
monochrome2
+ @attr name com.example.user.gps:maskedWalletDetailsLogoImageType + */ + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#maskedWalletDetailsLogoTextColor} + attribute's value can be found in the {@link #WalletFragmentStyle} 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.example.user.gps:maskedWalletDetailsLogoTextColor + */ + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + /** +

This symbol is the offset where the {@link com.example.user.gps.R.attr#maskedWalletDetailsTextAppearance} + attribute's value can be found in the {@link #WalletFragmentStyle} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.example.user.gps:maskedWalletDetailsTextAppearance + */ + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + }; +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/R.java new file mode 100644 index 0000000..1e6068e --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/ads/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/ads/R.java new file mode 100644 index 0000000..4e152cd --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/ads/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.ads; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/all/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/all/R.java new file mode 100644 index 0000000..0fcfa45 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/all/R.java @@ -0,0 +1,10 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ +package com.google.android.gms.all; + +public final class R { +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/analytics/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/analytics/R.java new file mode 100644 index 0000000..7c4979f --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/analytics/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.analytics; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/appindexing/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/appindexing/R.java new file mode 100644 index 0000000..771c360 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/appindexing/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.appindexing; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/appinvite/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/appinvite/R.java new file mode 100644 index 0000000..e03a37d --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/appinvite/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.appinvite; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/appstate/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/appstate/R.java new file mode 100644 index 0000000..b852655 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/appstate/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.appstate; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/auth/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/auth/R.java new file mode 100644 index 0000000..1e2ec80 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/auth/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.auth; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/base/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/base/R.java new file mode 100644 index 0000000..a6d9cbb --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/base/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.base; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/cast/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/cast/R.java new file mode 100644 index 0000000..9a3b2ef --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/cast/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.cast; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/drive/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/drive/R.java new file mode 100644 index 0000000..b5e7acd --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/drive/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.drive; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/fitness/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/fitness/R.java new file mode 100644 index 0000000..d29161d --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/fitness/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.fitness; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/games/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/games/R.java new file mode 100644 index 0000000..2fa8780 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/games/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.games; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/gcm/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/gcm/R.java new file mode 100644 index 0000000..dcac9d9 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/gcm/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.gcm; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/identity/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/identity/R.java new file mode 100644 index 0000000..b833e15 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/identity/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.identity; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/location/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/location/R.java new file mode 100644 index 0000000..7117204 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/location/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.location; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/maps/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/maps/R.java new file mode 100644 index 0000000..f111910 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/maps/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.maps; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/measurement/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/measurement/R.java new file mode 100644 index 0000000..54427b3 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/measurement/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.measurement; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/nearby/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/nearby/R.java new file mode 100644 index 0000000..fdfae20 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/nearby/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.nearby; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/panorama/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/panorama/R.java new file mode 100644 index 0000000..498ff93 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/panorama/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.panorama; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/plus/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/plus/R.java new file mode 100644 index 0000000..5a98970 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/plus/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.plus; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/safetynet/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/safetynet/R.java new file mode 100644 index 0000000..2aa8ea7 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/safetynet/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.safetynet; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/vision/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/vision/R.java new file mode 100644 index 0000000..d74f23c --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/vision/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.vision; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/wallet/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/wallet/R.java new file mode 100644 index 0000000..46960c0 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/wallet/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.wallet; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/generated/source/r/debug/com/google/android/gms/wearable/R.java b/GPS/app/build/generated/source/r/debug/com/google/android/gms/wearable/R.java new file mode 100644 index 0000000..cca14e0 --- /dev/null +++ b/GPS/app/build/generated/source/r/debug/com/google/android/gms/wearable/R.java @@ -0,0 +1,336 @@ +/* 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.google.android.gms.wearable; + +public final class R { + public static final class attr { + public static final int adSize = 0x7f010027; + public static final int adSizes = 0x7f010028; + public static final int adUnitId = 0x7f010029; + public static final int ambientEnabled = 0x7f01006f; + public static final int appTheme = 0x7f010134; + public static final int buttonSize = 0x7f010091; + public static final int buyButtonAppearance = 0x7f01013b; + public static final int buyButtonHeight = 0x7f010138; + public static final int buyButtonText = 0x7f01013a; + public static final int buyButtonWidth = 0x7f010139; + public static final int cameraBearing = 0x7f010060; + public static final int cameraTargetLat = 0x7f010061; + public static final int cameraTargetLng = 0x7f010062; + public static final int cameraTilt = 0x7f010063; + public static final int cameraZoom = 0x7f010064; + public static final int circleCrop = 0x7f01005e; + public static final int colorScheme = 0x7f010092; + public static final int environment = 0x7f010135; + public static final int fragmentMode = 0x7f010137; + public static final int fragmentStyle = 0x7f010136; + public static final int imageAspectRatio = 0x7f01005d; + public static final int imageAspectRatioAdjust = 0x7f01005c; + public static final int liteMode = 0x7f010065; + public static final int mapType = 0x7f01005f; + public static final int maskedWalletDetailsBackground = 0x7f01013e; + public static final int maskedWalletDetailsButtonBackground = 0x7f010140; + public static final int maskedWalletDetailsButtonTextAppearance = 0x7f01013f; + public static final int maskedWalletDetailsHeaderTextAppearance = 0x7f01013d; + public static final int maskedWalletDetailsLogoImageType = 0x7f010142; + public static final int maskedWalletDetailsLogoTextColor = 0x7f010141; + public static final int maskedWalletDetailsTextAppearance = 0x7f01013c; + public static final int scopeUris = 0x7f010093; + public static final int uiCompass = 0x7f010066; + public static final int uiMapToolbar = 0x7f01006e; + public static final int uiRotateGestures = 0x7f010067; + public static final int uiScrollGestures = 0x7f010068; + public static final int uiTiltGestures = 0x7f010069; + public static final int uiZoomControls = 0x7f01006a; + public static final int uiZoomGestures = 0x7f01006b; + public static final int useViewLifecycle = 0x7f01006c; + public static final int windowTransitionStyle = 0x7f01004b; + public static final int zOrderOnTop = 0x7f01006d; + } + public static final class color { + public static final int common_action_bar_splitter = 0x7f0d0015; + public static final int common_google_signin_btn_text_dark = 0x7f0d0074; + public static final int common_google_signin_btn_text_dark_default = 0x7f0d0016; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f0d0017; + public static final int common_google_signin_btn_text_dark_focused = 0x7f0d0018; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f0d0019; + public static final int common_google_signin_btn_text_light = 0x7f0d0075; + public static final int common_google_signin_btn_text_light_default = 0x7f0d001a; + public static final int common_google_signin_btn_text_light_disabled = 0x7f0d001b; + public static final int common_google_signin_btn_text_light_focused = 0x7f0d001c; + public static final int common_google_signin_btn_text_light_pressed = 0x7f0d001d; + public static final int common_plus_signin_btn_text_dark = 0x7f0d0076; + public static final int common_plus_signin_btn_text_dark_default = 0x7f0d001e; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f0d001f; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f0d0020; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f0d0021; + public static final int common_plus_signin_btn_text_light = 0x7f0d0077; + public static final int common_plus_signin_btn_text_light_default = 0x7f0d0022; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f0d0023; + public static final int common_plus_signin_btn_text_light_focused = 0x7f0d0024; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f0d0025; + public static final int place_autocomplete_prediction_primary_text = 0x7f0d0045; + public static final int place_autocomplete_prediction_primary_text_highlight = 0x7f0d0046; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0d0047; + public static final int place_autocomplete_search_hint = 0x7f0d0048; + public static final int place_autocomplete_search_text = 0x7f0d0049; + public static final int place_autocomplete_separator = 0x7f0d004a; + public static final int wallet_bright_foreground_disabled_holo_light = 0x7f0d005d; + public static final int wallet_bright_foreground_holo_dark = 0x7f0d005e; + public static final int wallet_bright_foreground_holo_light = 0x7f0d005f; + public static final int wallet_dim_foreground_disabled_holo_dark = 0x7f0d0060; + public static final int wallet_dim_foreground_holo_dark = 0x7f0d0061; + public static final int wallet_dim_foreground_inverse_disabled_holo_dark = 0x7f0d0062; + public static final int wallet_dim_foreground_inverse_holo_dark = 0x7f0d0063; + public static final int wallet_highlighted_text_holo_dark = 0x7f0d0064; + public static final int wallet_highlighted_text_holo_light = 0x7f0d0065; + public static final int wallet_hint_foreground_holo_dark = 0x7f0d0066; + public static final int wallet_hint_foreground_holo_light = 0x7f0d0067; + public static final int wallet_holo_blue_light = 0x7f0d0068; + public static final int wallet_link_text_light = 0x7f0d0069; + public static final int wallet_primary_text_holo_light = 0x7f0d007a; + public static final int wallet_secondary_text_holo_dark = 0x7f0d007b; + } + public static final class dimen { + public static final int place_autocomplete_button_padding = 0x7f09006c; + public static final int place_autocomplete_powered_by_google_height = 0x7f09006d; + public static final int place_autocomplete_powered_by_google_start = 0x7f09006e; + public static final int place_autocomplete_prediction_height = 0x7f09006f; + public static final int place_autocomplete_prediction_horizontal_margin = 0x7f090070; + public static final int place_autocomplete_prediction_primary_text = 0x7f090071; + public static final int place_autocomplete_prediction_secondary_text = 0x7f090072; + public static final int place_autocomplete_progress_horizontal_margin = 0x7f090073; + public static final int place_autocomplete_progress_size = 0x7f090074; + public static final int place_autocomplete_separator_start = 0x7f090075; + } + public static final class drawable { + public static final int cast_ic_notification_0 = 0x7f020046; + public static final int cast_ic_notification_1 = 0x7f020047; + public static final int cast_ic_notification_2 = 0x7f020048; + public static final int cast_ic_notification_connecting = 0x7f020049; + public static final int cast_ic_notification_on = 0x7f02004a; + public static final int common_full_open_on_phone = 0x7f02004b; + public static final int common_google_signin_btn_icon_dark = 0x7f02004c; + public static final int common_google_signin_btn_icon_dark_disabled = 0x7f02004d; + public static final int common_google_signin_btn_icon_dark_focused = 0x7f02004e; + public static final int common_google_signin_btn_icon_dark_normal = 0x7f02004f; + public static final int common_google_signin_btn_icon_dark_pressed = 0x7f020050; + public static final int common_google_signin_btn_icon_light = 0x7f020051; + public static final int common_google_signin_btn_icon_light_disabled = 0x7f020052; + public static final int common_google_signin_btn_icon_light_focused = 0x7f020053; + public static final int common_google_signin_btn_icon_light_normal = 0x7f020054; + public static final int common_google_signin_btn_icon_light_pressed = 0x7f020055; + public static final int common_google_signin_btn_text_dark = 0x7f020056; + public static final int common_google_signin_btn_text_dark_disabled = 0x7f020057; + public static final int common_google_signin_btn_text_dark_focused = 0x7f020058; + public static final int common_google_signin_btn_text_dark_normal = 0x7f020059; + public static final int common_google_signin_btn_text_dark_pressed = 0x7f02005a; + public static final int common_google_signin_btn_text_light = 0x7f02005b; + public static final int common_google_signin_btn_text_light_disabled = 0x7f02005c; + public static final int common_google_signin_btn_text_light_focused = 0x7f02005d; + public static final int common_google_signin_btn_text_light_normal = 0x7f02005e; + public static final int common_google_signin_btn_text_light_pressed = 0x7f02005f; + public static final int common_ic_googleplayservices = 0x7f020060; + public static final int common_plus_signin_btn_icon_dark = 0x7f020061; + public static final int common_plus_signin_btn_icon_dark_disabled = 0x7f020062; + public static final int common_plus_signin_btn_icon_dark_focused = 0x7f020063; + public static final int common_plus_signin_btn_icon_dark_normal = 0x7f020064; + public static final int common_plus_signin_btn_icon_dark_pressed = 0x7f020065; + public static final int common_plus_signin_btn_icon_light = 0x7f020066; + public static final int common_plus_signin_btn_icon_light_disabled = 0x7f020067; + public static final int common_plus_signin_btn_icon_light_focused = 0x7f020068; + public static final int common_plus_signin_btn_icon_light_normal = 0x7f020069; + public static final int common_plus_signin_btn_icon_light_pressed = 0x7f02006a; + public static final int common_plus_signin_btn_text_dark = 0x7f02006b; + public static final int common_plus_signin_btn_text_dark_disabled = 0x7f02006c; + public static final int common_plus_signin_btn_text_dark_focused = 0x7f02006d; + public static final int common_plus_signin_btn_text_dark_normal = 0x7f02006e; + public static final int common_plus_signin_btn_text_dark_pressed = 0x7f02006f; + public static final int common_plus_signin_btn_text_light = 0x7f020070; + public static final int common_plus_signin_btn_text_light_disabled = 0x7f020071; + public static final int common_plus_signin_btn_text_light_focused = 0x7f020072; + public static final int common_plus_signin_btn_text_light_normal = 0x7f020073; + public static final int common_plus_signin_btn_text_light_pressed = 0x7f020074; + public static final int ic_plusone_medium_off_client = 0x7f02008c; + public static final int ic_plusone_small_off_client = 0x7f02008d; + public static final int ic_plusone_standard_off_client = 0x7f02008e; + public static final int ic_plusone_tall_off_client = 0x7f02008f; + public static final int places_ic_clear = 0x7f0200a0; + public static final int places_ic_search = 0x7f0200a1; + public static final int powered_by_google_dark = 0x7f0200a2; + public static final int powered_by_google_light = 0x7f0200a3; + } + public static final class id { + public static final int adjust_height = 0x7f0e0034; + public static final int adjust_width = 0x7f0e0035; + public static final int android_pay = 0x7f0e0060; + public static final int android_pay_dark = 0x7f0e0057; + public static final int android_pay_light = 0x7f0e0058; + public static final int android_pay_light_with_border = 0x7f0e0059; + public static final int auto = 0x7f0e0041; + public static final int book_now = 0x7f0e0050; + public static final int buyButton = 0x7f0e004d; + public static final int buy_now = 0x7f0e0051; + public static final int buy_with = 0x7f0e0052; + public static final int buy_with_google = 0x7f0e0053; + public static final int cast_notification_id = 0x7f0e0004; + public static final int classic = 0x7f0e005a; + public static final int dark = 0x7f0e0042; + public static final int donate_with = 0x7f0e0054; + public static final int donate_with_google = 0x7f0e0055; + public static final int google_wallet_classic = 0x7f0e005b; + public static final int google_wallet_grayscale = 0x7f0e005c; + public static final int google_wallet_monochrome = 0x7f0e005d; + public static final int grayscale = 0x7f0e005e; + public static final int holo_dark = 0x7f0e0047; + public static final int holo_light = 0x7f0e0048; + public static final int hybrid = 0x7f0e0036; + public static final int icon_only = 0x7f0e003e; + public static final int light = 0x7f0e0043; + public static final int logo_only = 0x7f0e0056; + public static final int match_parent = 0x7f0e004f; + public static final int monochrome = 0x7f0e005f; + public static final int none = 0x7f0e0011; + public static final int normal = 0x7f0e000d; + public static final int place_autocomplete_clear_button = 0x7f0e00bd; + public static final int place_autocomplete_powered_by_google = 0x7f0e00bf; + public static final int place_autocomplete_prediction_primary_text = 0x7f0e00c1; + public static final int place_autocomplete_prediction_secondary_text = 0x7f0e00c2; + public static final int place_autocomplete_progress = 0x7f0e00c0; + public static final int place_autocomplete_search_button = 0x7f0e00bb; + public static final int place_autocomplete_search_input = 0x7f0e00bc; + public static final int place_autocomplete_separator = 0x7f0e00be; + public static final int production = 0x7f0e0049; + public static final int sandbox = 0x7f0e004a; + public static final int satellite = 0x7f0e0037; + public static final int selectionDetails = 0x7f0e004e; + public static final int slide = 0x7f0e0030; + public static final int standard = 0x7f0e003f; + public static final int strict_sandbox = 0x7f0e004b; + public static final int terrain = 0x7f0e0038; + public static final int test = 0x7f0e004c; + public static final int wide = 0x7f0e0040; + public static final int wrap_content = 0x7f0e0046; + } + public static final class integer { + public static final int google_play_services_version = 0x7f0b0005; + } + public static final class layout { + public static final int place_autocomplete_fragment = 0x7f040032; + public static final int place_autocomplete_item_powered_by_google = 0x7f040033; + public static final int place_autocomplete_item_prediction = 0x7f040034; + public static final int place_autocomplete_progress = 0x7f040035; + } + public static final class raw { + public static final int gtm_analytics = 0x7f060000; + } + public static final class string { + public static final int accept = 0x7f07003f; + public static final int auth_google_play_services_client_facebook_display_name = 0x7f070042; + public static final int auth_google_play_services_client_google_display_name = 0x7f070043; + public static final int cast_notification_connected_message = 0x7f070044; + public static final int cast_notification_connecting_message = 0x7f070045; + public static final int cast_notification_disconnect = 0x7f070046; + public static final int common_google_play_services_api_unavailable_text = 0x7f070013; + public static final int common_google_play_services_enable_button = 0x7f070014; + public static final int common_google_play_services_enable_text = 0x7f070015; + public static final int common_google_play_services_enable_title = 0x7f070016; + public static final int common_google_play_services_install_button = 0x7f070017; + public static final int common_google_play_services_install_text_phone = 0x7f070018; + public static final int common_google_play_services_install_text_tablet = 0x7f070019; + public static final int common_google_play_services_install_title = 0x7f07001a; + public static final int common_google_play_services_invalid_account_text = 0x7f07001b; + public static final int common_google_play_services_invalid_account_title = 0x7f07001c; + public static final int common_google_play_services_network_error_text = 0x7f07001d; + public static final int common_google_play_services_network_error_title = 0x7f07001e; + public static final int common_google_play_services_notification_ticker = 0x7f07001f; + public static final int common_google_play_services_restricted_profile_text = 0x7f070020; + public static final int common_google_play_services_restricted_profile_title = 0x7f070021; + public static final int common_google_play_services_sign_in_failed_text = 0x7f070022; + public static final int common_google_play_services_sign_in_failed_title = 0x7f070023; + public static final int common_google_play_services_unknown_issue = 0x7f070024; + public static final int common_google_play_services_unsupported_text = 0x7f070025; + public static final int common_google_play_services_unsupported_title = 0x7f070026; + public static final int common_google_play_services_update_button = 0x7f070027; + public static final int common_google_play_services_update_text = 0x7f070028; + public static final int common_google_play_services_update_title = 0x7f070029; + public static final int common_google_play_services_updating_text = 0x7f07002a; + public static final int common_google_play_services_updating_title = 0x7f07002b; + public static final int common_google_play_services_wear_update_text = 0x7f07002c; + public static final int common_open_on_phone = 0x7f07002d; + public static final int common_signin_button_text = 0x7f07002e; + public static final int common_signin_button_text_long = 0x7f07002f; + public static final int create_calendar_message = 0x7f070048; + public static final int create_calendar_title = 0x7f070049; + public static final int decline = 0x7f07004a; + public static final int place_autocomplete_clear_button = 0x7f07003b; + public static final int place_autocomplete_search_hint = 0x7f07003c; + public static final int store_picture_message = 0x7f07004d; + public static final int store_picture_title = 0x7f07004e; + public static final int wallet_buy_button_place_holder = 0x7f07003e; + } + public static final class style { + public static final int Theme_AppInvite_Preview = 0x7f0a00f8; + public static final int Theme_AppInvite_Preview_Base = 0x7f0a0016; + public static final int Theme_IAPTheme = 0x7f0a00f9; + public static final int WalletFragmentDefaultButtonTextAppearance = 0x7f0a0101; + public static final int WalletFragmentDefaultDetailsHeaderTextAppearance = 0x7f0a0102; + public static final int WalletFragmentDefaultDetailsTextAppearance = 0x7f0a0103; + public static final int WalletFragmentDefaultStyle = 0x7f0a0104; + } + public static final class styleable { + public static final int[] AdsAttrs = { 0x7f010027, 0x7f010028, 0x7f010029 }; + public static final int AdsAttrs_adSize = 0; + public static final int AdsAttrs_adSizes = 1; + public static final int AdsAttrs_adUnitId = 2; + public static final int[] CustomWalletTheme = { 0x7f01004b }; + public static final int CustomWalletTheme_windowTransitionStyle = 0; + public static final int[] LoadingImageView = { 0x7f01005c, 0x7f01005d, 0x7f01005e }; + public static final int LoadingImageView_circleCrop = 2; + public static final int LoadingImageView_imageAspectRatio = 1; + public static final int LoadingImageView_imageAspectRatioAdjust = 0; + public static final int[] MapAttrs = { 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; + public static final int MapAttrs_ambientEnabled = 16; + public static final int MapAttrs_cameraBearing = 1; + public static final int MapAttrs_cameraTargetLat = 2; + public static final int MapAttrs_cameraTargetLng = 3; + public static final int MapAttrs_cameraTilt = 4; + public static final int MapAttrs_cameraZoom = 5; + public static final int MapAttrs_liteMode = 6; + public static final int MapAttrs_mapType = 0; + public static final int MapAttrs_uiCompass = 7; + public static final int MapAttrs_uiMapToolbar = 15; + public static final int MapAttrs_uiRotateGestures = 8; + public static final int MapAttrs_uiScrollGestures = 9; + public static final int MapAttrs_uiTiltGestures = 10; + public static final int MapAttrs_uiZoomControls = 11; + public static final int MapAttrs_uiZoomGestures = 12; + public static final int MapAttrs_useViewLifecycle = 13; + public static final int MapAttrs_zOrderOnTop = 14; + public static final int[] SignInButton = { 0x7f010091, 0x7f010092, 0x7f010093 }; + public static final int SignInButton_buttonSize = 0; + public static final int SignInButton_colorScheme = 1; + public static final int SignInButton_scopeUris = 2; + public static final int[] WalletFragmentOptions = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137 }; + public static final int WalletFragmentOptions_appTheme = 0; + public static final int WalletFragmentOptions_environment = 1; + public static final int WalletFragmentOptions_fragmentMode = 3; + public static final int WalletFragmentOptions_fragmentStyle = 2; + public static final int[] WalletFragmentStyle = { 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; + public static final int WalletFragmentStyle_buyButtonAppearance = 3; + public static final int WalletFragmentStyle_buyButtonHeight = 0; + public static final int WalletFragmentStyle_buyButtonText = 2; + public static final int WalletFragmentStyle_buyButtonWidth = 1; + public static final int WalletFragmentStyle_maskedWalletDetailsBackground = 6; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonBackground = 8; + public static final int WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance = 7; + public static final int WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance = 5; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoImageType = 10; + public static final int WalletFragmentStyle_maskedWalletDetailsLogoTextColor = 9; + public static final int WalletFragmentStyle_maskedWalletDetailsTextAppearance = 4; + } +} diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/layout.json b/GPS/app/build/intermediates/blame/res/debug/multi/layout.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/layout.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-af.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-af.json new file mode 100644 index 0000000..e715d8d --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-af.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-af\\values-af.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 103, + "endOffset": 204 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 103, + "endOffset": 328 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 209, + "endColumn": 107, + "endOffset": 312 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 333, + "endColumn": 107, + "endOffset": 436 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 317, + "endColumn": 122, + "endOffset": 435 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 441, + "endColumn": 122, + "endOffset": 559 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 440, + "endColumn": 99, + "endOffset": 535 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 564, + "endColumn": 99, + "endOffset": 659 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 540, + "endColumn": 105, + "endOffset": 641 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 664, + "endColumn": 105, + "endOffset": 765 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 646, + "endColumn": 84, + "endOffset": 726 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 770, + "endColumn": 84, + "endOffset": 850 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 731, + "endColumn": 102, + "endOffset": 829 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 855, + "endColumn": 102, + "endOffset": 953 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 834, + "endColumn": 117, + "endOffset": 947 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 958, + "endColumn": 117, + "endOffset": 1071 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 952, + "endColumn": 75, + "endOffset": 1023 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1076, + "endColumn": 75, + "endOffset": 1147 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1028, + "endColumn": 76, + "endOffset": 1100 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1152, + "endColumn": 76, + "endOffset": 1224 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1105, + "endColumn": 80, + "endOffset": 1181 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1229, + "endColumn": 80, + "endOffset": 1305 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 106, + "endOffset": 1288 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1310, + "endColumn": 106, + "endOffset": 1412 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1293, + "endColumn": 102, + "endOffset": 1391 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1417, + "endColumn": 102, + "endOffset": 1515 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 96, + "endOffset": 1488 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1520, + "endColumn": 96, + "endOffset": 1612 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1493, + "endColumn": 107, + "endOffset": 1596 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1617, + "endColumn": 107, + "endOffset": 1720 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1601, + "endColumn": 101, + "endOffset": 1698 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1725, + "endColumn": 101, + "endOffset": 1822 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1703, + "endColumn": 101, + "endOffset": 1800 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1827, + "endColumn": 101, + "endOffset": 1924 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1805, + "endColumn": 116, + "endOffset": 1917 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1929, + "endColumn": 116, + "endOffset": 2041 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1922, + "endColumn": 97, + "endOffset": 2015 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2046, + "endColumn": 97, + "endOffset": 2139 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2020, + "endColumn": 258, + "endOffset": 2274 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3486, + "endColumn": 262, + "endOffset": 3744 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2279, + "endColumn": 128, + "endOffset": 2403 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1304, + "endColumn": 128, + "endOffset": 1428 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2408, + "endColumn": 187, + "endOffset": 2591 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1112, + "endColumn": 191, + "endOffset": 1299 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2596, + "endColumn": 127, + "endOffset": 2719 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 984, + "endColumn": 127, + "endOffset": 1107 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2724, + "endColumn": 124, + "endOffset": 2844 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 859, + "endColumn": 124, + "endOffset": 979 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2849, + "endColumn": 211, + "endOffset": 3056 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 424, + "endColumn": 215, + "endOffset": 635 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3061, + "endColumn": 214, + "endOffset": 3271 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 640, + "endColumn": 218, + "endOffset": 854 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3276, + "endColumn": 123, + "endOffset": 3395 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 300, + "endColumn": 123, + "endOffset": 419 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3400, + "endColumn": 206, + "endOffset": 3602 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2692, + "endColumn": 206, + "endOffset": 2894 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3607, + "endColumn": 123, + "endOffset": 3726 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2568, + "endColumn": 123, + "endOffset": 2687 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3731, + "endColumn": 173, + "endOffset": 3900 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2394, + "endColumn": 173, + "endOffset": 2563 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3905, + "endColumn": 117, + "endOffset": 4018 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2276, + "endColumn": 117, + "endOffset": 2389 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4023, + "endColumn": 129, + "endOffset": 4148 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 129, + "endOffset": 295 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4153, + "endColumn": 178, + "endOffset": 4327 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4196, + "endColumn": 178, + "endOffset": 4370 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4332, + "endColumn": 127, + "endOffset": 4455 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4068, + "endColumn": 127, + "endOffset": 4191 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4460, + "endColumn": 191, + "endOffset": 4647 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3876, + "endColumn": 191, + "endOffset": 4063 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4652, + "endColumn": 126, + "endOffset": 4774 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3749, + "endColumn": 126, + "endOffset": 3871 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4779, + "endColumn": 250, + "endOffset": 5025 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-af\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 254, + "endOffset": 420 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5030, + "endColumn": 254, + "endOffset": 5280 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3022, + "endColumn": 258, + "endOffset": 3276 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5285, + "endColumn": 122, + "endOffset": 5403 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2899, + "endColumn": 122, + "endOffset": 3017 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5408, + "endColumn": 109, + "endOffset": 5513 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3281, + "endColumn": 109, + "endOffset": 3386 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5518, + "endColumn": 187, + "endOffset": 5701 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1562, + "endColumn": 191, + "endOffset": 1749 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5706, + "endColumn": 128, + "endOffset": 5830 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1433, + "endColumn": 128, + "endOffset": 1557 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5835, + "endColumn": 197, + "endOffset": 6028 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2074, + "endColumn": 201, + "endOffset": 2271 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6033, + "endColumn": 135, + "endOffset": 6164 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1938, + "endColumn": 135, + "endOffset": 2069 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6169, + "endColumn": 183, + "endOffset": 6348 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1754, + "endColumn": 183, + "endOffset": 1933 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6353, + "endColumn": 94, + "endOffset": 6443 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3391, + "endColumn": 94, + "endOffset": 3481 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6448, + "endColumn": 92, + "endOffset": 6536 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4375, + "endColumn": 92, + "endOffset": 4463 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6541, + "endColumn": 108, + "endOffset": 6645 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-af\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4468, + "endColumn": 108, + "endOffset": 4572 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6650, + "endColumn": 108, + "endOffset": 6754 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-af\\values-af.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 108, + "endOffset": 382 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6759, + "endColumn": 115, + "endOffset": 6870 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-af\\values-af.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 387, + "endColumn": 115, + "endOffset": 498 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6875, + "endColumn": 105, + "endOffset": 6976 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-af\\values-af.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 105, + "endOffset": 604 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6981, + "endColumn": 103, + "endOffset": 7080 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-af\\values-af.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 609, + "endColumn": 103, + "endOffset": 708 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7085, + "endColumn": 131, + "endOffset": 7212 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-af\\values-af.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 713, + "endColumn": 131, + "endOffset": 840 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7217, + "endColumn": 98, + "endOffset": 7311 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-af\\values-af.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 845, + "endColumn": 98, + "endOffset": 939 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7316, + "endColumn": 94, + "endOffset": 7406 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-af\\values-af.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 944, + "endColumn": 94, + "endOffset": 1034 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7411, + "endColumn": 121, + "endOffset": 7528 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-af\\values-af.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1039, + "endColumn": 121, + "endOffset": 1156 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7533, + "endColumn": 103, + "endOffset": 7632 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-af\\values-af.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1161, + "endColumn": 103, + "endOffset": 1260 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7637, + "endColumn": 86, + "endOffset": 7719 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-af\\values-af.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1265, + "endColumn": 86, + "endOffset": 1347 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7724, + "endColumn": 95, + "endOffset": 7815 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-af\\values-af.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1352, + "endColumn": 95, + "endOffset": 1443 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7820, + "endColumn": 111, + "endOffset": 7927 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-af\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 324, + "endColumn": 111, + "endOffset": 431 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7932, + "endColumn": 93, + "endOffset": 8021 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-af\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 93, + "endOffset": 319 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8026, + "endColumn": 100, + "endOffset": 8122 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-af\\values-af.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2144, + "endColumn": 100, + "endOffset": 2240 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-am.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-am.json new file mode 100644 index 0000000..c50156d --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-am.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-am\\values-am.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 101, + "endOffset": 202 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 101, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 207, + "endColumn": 107, + "endOffset": 310 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 331, + "endColumn": 107, + "endOffset": 434 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 315, + "endColumn": 122, + "endOffset": 433 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 439, + "endColumn": 122, + "endOffset": 557 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 438, + "endColumn": 98, + "endOffset": 532 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 562, + "endColumn": 98, + "endOffset": 656 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 537, + "endColumn": 105, + "endOffset": 638 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 661, + "endColumn": 105, + "endOffset": 762 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 643, + "endColumn": 85, + "endOffset": 724 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 767, + "endColumn": 85, + "endOffset": 848 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 729, + "endColumn": 102, + "endOffset": 827 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 853, + "endColumn": 102, + "endOffset": 951 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 832, + "endColumn": 112, + "endOffset": 940 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 956, + "endColumn": 112, + "endOffset": 1064 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 77, + "endOffset": 1018 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1069, + "endColumn": 77, + "endOffset": 1142 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1023, + "endColumn": 77, + "endOffset": 1096 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 77, + "endOffset": 1220 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1101, + "endColumn": 78, + "endOffset": 1175 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1225, + "endColumn": 78, + "endOffset": 1299 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1180, + "endColumn": 99, + "endOffset": 1275 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1304, + "endColumn": 99, + "endOffset": 1399 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1280, + "endColumn": 99, + "endOffset": 1375 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1404, + "endColumn": 99, + "endOffset": 1499 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1380, + "endColumn": 95, + "endOffset": 1471 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1504, + "endColumn": 95, + "endOffset": 1595 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1476, + "endColumn": 102, + "endOffset": 1574 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1600, + "endColumn": 102, + "endOffset": 1698 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1579, + "endColumn": 98, + "endOffset": 1673 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1703, + "endColumn": 98, + "endOffset": 1797 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1678, + "endColumn": 106, + "endOffset": 1780 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1802, + "endColumn": 106, + "endOffset": 1904 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1785, + "endColumn": 115, + "endOffset": 1896 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1909, + "endColumn": 115, + "endOffset": 2020 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1901, + "endColumn": 95, + "endOffset": 1992 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2025, + "endColumn": 95, + "endOffset": 2116 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1997, + "endColumn": 229, + "endOffset": 2222 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3245, + "endColumn": 233, + "endOffset": 3474 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2227, + "endColumn": 124, + "endOffset": 2347 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1247, + "endColumn": 124, + "endOffset": 1367 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2352, + "endColumn": 170, + "endOffset": 2518 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1072, + "endColumn": 174, + "endOffset": 1242 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2523, + "endColumn": 123, + "endOffset": 2642 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 948, + "endColumn": 123, + "endOffset": 1067 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2647, + "endColumn": 125, + "endOffset": 2768 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 822, + "endColumn": 125, + "endOffset": 943 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2773, + "endColumn": 194, + "endOffset": 2963 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 427, + "endColumn": 198, + "endOffset": 621 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2968, + "endColumn": 191, + "endOffset": 3155 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 626, + "endColumn": 195, + "endOffset": 817 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3160, + "endColumn": 124, + "endOffset": 3280 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 302, + "endColumn": 124, + "endOffset": 422 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3285, + "endColumn": 154, + "endOffset": 3435 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2560, + "endColumn": 154, + "endOffset": 2710 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3440, + "endColumn": 116, + "endOffset": 3552 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2443, + "endColumn": 116, + "endOffset": 2555 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3557, + "endColumn": 154, + "endOffset": 3707 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2288, + "endColumn": 154, + "endOffset": 2438 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3712, + "endColumn": 120, + "endOffset": 3828 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2167, + "endColumn": 120, + "endOffset": 2283 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 3833, + "endColumn": 131, + "endOffset": 3960 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 131, + "endOffset": 297 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 3965, + "endColumn": 140, + "endOffset": 4101 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3877, + "endColumn": 140, + "endOffset": 4013 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4106, + "endColumn": 121, + "endOffset": 4223 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3755, + "endColumn": 121, + "endOffset": 3872 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4228, + "endColumn": 149, + "endOffset": 4373 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3605, + "endColumn": 149, + "endOffset": 3750 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4378, + "endColumn": 125, + "endOffset": 4499 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3479, + "endColumn": 125, + "endOffset": 3600 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4504, + "endColumn": 206, + "endOffset": 4706 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-am\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 210, + "endOffset": 376 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4711, + "endColumn": 207, + "endOffset": 4914 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2839, + "endColumn": 211, + "endOffset": 3046 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 4919, + "endColumn": 123, + "endOffset": 5038 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2715, + "endColumn": 123, + "endOffset": 2834 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5043, + "endColumn": 104, + "endOffset": 5143 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3051, + "endColumn": 104, + "endOffset": 3151 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5148, + "endColumn": 175, + "endOffset": 5319 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1497, + "endColumn": 179, + "endOffset": 1672 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5324, + "endColumn": 124, + "endOffset": 5444 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1372, + "endColumn": 124, + "endOffset": 1492 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5449, + "endColumn": 193, + "endOffset": 5638 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 197, + "endOffset": 2162 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5643, + "endColumn": 134, + "endOffset": 5773 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1834, + "endColumn": 134, + "endOffset": 1964 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 5778, + "endColumn": 156, + "endOffset": 5930 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1677, + "endColumn": 156, + "endOffset": 1829 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 5935, + "endColumn": 88, + "endOffset": 6019 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3156, + "endColumn": 88, + "endOffset": 3240 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6024, + "endColumn": 86, + "endOffset": 6106 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4018, + "endColumn": 86, + "endOffset": 4100 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6111, + "endColumn": 100, + "endOffset": 6207 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-am\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4105, + "endColumn": 100, + "endOffset": 4201 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6212, + "endColumn": 103, + "endOffset": 6311 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-am\\values-am.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 103, + "endOffset": 377 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6316, + "endColumn": 108, + "endOffset": 6420 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-am\\values-am.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 382, + "endColumn": 108, + "endOffset": 486 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6425, + "endColumn": 100, + "endOffset": 6521 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-am\\values-am.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 491, + "endColumn": 100, + "endOffset": 587 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6526, + "endColumn": 104, + "endOffset": 6626 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-am\\values-am.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 592, + "endColumn": 104, + "endOffset": 692 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 6631, + "endColumn": 115, + "endOffset": 6742 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-am\\values-am.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 697, + "endColumn": 115, + "endOffset": 808 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 6747, + "endColumn": 98, + "endOffset": 6841 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-am\\values-am.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 813, + "endColumn": 98, + "endOffset": 907 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 6846, + "endColumn": 93, + "endOffset": 6935 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-am\\values-am.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 93, + "endOffset": 1001 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 6940, + "endColumn": 115, + "endOffset": 7051 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-am\\values-am.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1006, + "endColumn": 115, + "endOffset": 1117 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7056, + "endColumn": 97, + "endOffset": 7149 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-am\\values-am.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 97, + "endOffset": 1215 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7154, + "endColumn": 83, + "endOffset": 7233 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-am\\values-am.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1220, + "endColumn": 83, + "endOffset": 1299 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7238, + "endColumn": 92, + "endOffset": 7326 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-am\\values-am.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1304, + "endColumn": 92, + "endOffset": 1392 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7331, + "endColumn": 98, + "endOffset": 7425 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-am\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 324, + "endColumn": 98, + "endOffset": 418 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7430, + "endColumn": 93, + "endOffset": 7519 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-am\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 93, + "endOffset": 319 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 7524, + "endColumn": 100, + "endOffset": 7620 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-am\\values-am.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2121, + "endColumn": 100, + "endOffset": 2217 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 7625, + "endColumn": 100, + "endOffset": 7721 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-am\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 100, + "endOffset": 326 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-ar.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-ar.json new file mode 100644 index 0000000..73c8b28 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-ar.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-ar\\values-ar.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 116, + "endOffset": 217 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 116, + "endOffset": 341 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 222, + "endColumn": 107, + "endOffset": 325 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 346, + "endColumn": 107, + "endOffset": 449 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 330, + "endColumn": 122, + "endOffset": 448 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 454, + "endColumn": 122, + "endOffset": 572 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 453, + "endColumn": 103, + "endOffset": 552 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 577, + "endColumn": 103, + "endOffset": 676 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 557, + "endColumn": 108, + "endOffset": 661 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 108, + "endOffset": 785 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 666, + "endColumn": 81, + "endOffset": 743 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 790, + "endColumn": 81, + "endOffset": 867 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 748, + "endColumn": 100, + "endOffset": 844 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 872, + "endColumn": 100, + "endOffset": 968 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 849, + "endColumn": 113, + "endOffset": 958 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 973, + "endColumn": 113, + "endOffset": 1082 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 963, + "endColumn": 78, + "endOffset": 1037 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1087, + "endColumn": 78, + "endOffset": 1161 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1042, + "endColumn": 78, + "endOffset": 1116 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1166, + "endColumn": 78, + "endOffset": 1240 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1121, + "endColumn": 78, + "endOffset": 1195 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1245, + "endColumn": 78, + "endOffset": 1319 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1200, + "endColumn": 104, + "endOffset": 1300 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1324, + "endColumn": 104, + "endOffset": 1424 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1305, + "endColumn": 100, + "endOffset": 1401 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1429, + "endColumn": 100, + "endOffset": 1525 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1406, + "endColumn": 95, + "endOffset": 1497 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1530, + "endColumn": 95, + "endOffset": 1621 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1502, + "endColumn": 107, + "endOffset": 1605 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1626, + "endColumn": 107, + "endOffset": 1729 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1610, + "endColumn": 102, + "endOffset": 1708 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1734, + "endColumn": 102, + "endOffset": 1832 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1713, + "endColumn": 102, + "endOffset": 1811 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1837, + "endColumn": 102, + "endOffset": 1935 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1816, + "endColumn": 118, + "endOffset": 1930 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1940, + "endColumn": 118, + "endOffset": 2054 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1935, + "endColumn": 96, + "endOffset": 2027 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2059, + "endColumn": 96, + "endOffset": 2151 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2032, + "endColumn": 254, + "endOffset": 2282 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3380, + "endColumn": 258, + "endOffset": 3634 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2287, + "endColumn": 124, + "endOffset": 2407 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1293, + "endColumn": 124, + "endOffset": 1413 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2412, + "endColumn": 175, + "endOffset": 2583 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1113, + "endColumn": 179, + "endOffset": 1288 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2588, + "endColumn": 123, + "endOffset": 2707 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 989, + "endColumn": 123, + "endOffset": 1108 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2712, + "endColumn": 130, + "endOffset": 2838 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 858, + "endColumn": 130, + "endOffset": 984 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2843, + "endColumn": 202, + "endOffset": 3041 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 436, + "endColumn": 206, + "endOffset": 638 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3046, + "endColumn": 210, + "endOffset": 3252 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 643, + "endColumn": 214, + "endOffset": 853 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3257, + "endColumn": 129, + "endOffset": 3382 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 306, + "endColumn": 129, + "endOffset": 431 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3387, + "endColumn": 174, + "endOffset": 3557 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2642, + "endColumn": 174, + "endOffset": 2812 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3562, + "endColumn": 118, + "endOffset": 3676 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2523, + "endColumn": 118, + "endOffset": 2637 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3681, + "endColumn": 157, + "endOffset": 3834 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2365, + "endColumn": 157, + "endOffset": 2518 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3839, + "endColumn": 123, + "endOffset": 3958 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2241, + "endColumn": 123, + "endOffset": 2360 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 3963, + "endColumn": 135, + "endOffset": 4094 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 135, + "endOffset": 301 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4099, + "endColumn": 166, + "endOffset": 4261 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4067, + "endColumn": 166, + "endOffset": 4229 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4266, + "endColumn": 126, + "endOffset": 4388 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3940, + "endColumn": 126, + "endOffset": 4062 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4393, + "endColumn": 175, + "endOffset": 4564 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3764, + "endColumn": 175, + "endOffset": 3935 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4569, + "endColumn": 124, + "endOffset": 4689 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3639, + "endColumn": 124, + "endOffset": 3759 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4694, + "endColumn": 241, + "endOffset": 4931 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-ar\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 245, + "endOffset": 411 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4936, + "endColumn": 237, + "endOffset": 5169 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2939, + "endColumn": 241, + "endOffset": 3176 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5174, + "endColumn": 121, + "endOffset": 5291 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2817, + "endColumn": 121, + "endOffset": 2934 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5296, + "endColumn": 105, + "endOffset": 5397 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3181, + "endColumn": 105, + "endOffset": 3282 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5402, + "endColumn": 180, + "endOffset": 5578 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1542, + "endColumn": 184, + "endOffset": 1722 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5583, + "endColumn": 123, + "endOffset": 5702 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1418, + "endColumn": 123, + "endOffset": 1537 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5707, + "endColumn": 197, + "endOffset": 5900 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2039, + "endColumn": 201, + "endOffset": 2236 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5905, + "endColumn": 135, + "endOffset": 6036 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1903, + "endColumn": 135, + "endOffset": 2034 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6041, + "endColumn": 175, + "endOffset": 6212 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1727, + "endColumn": 175, + "endOffset": 1898 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6217, + "endColumn": 92, + "endOffset": 6305 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3287, + "endColumn": 92, + "endOffset": 3375 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6310, + "endColumn": 95, + "endOffset": 6401 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4234, + "endColumn": 95, + "endOffset": 4325 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6406, + "endColumn": 113, + "endOffset": 6515 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ar\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4330, + "endColumn": 113, + "endOffset": 4439 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6520, + "endColumn": 105, + "endOffset": 6621 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 105, + "endOffset": 379 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6626, + "endColumn": 113, + "endOffset": 6735 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 384, + "endColumn": 113, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6740, + "endColumn": 100, + "endOffset": 6836 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 100, + "endOffset": 594 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6841, + "endColumn": 105, + "endOffset": 6942 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 599, + "endColumn": 105, + "endOffset": 700 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 6947, + "endColumn": 122, + "endOffset": 7065 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 705, + "endColumn": 122, + "endOffset": 823 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7070, + "endColumn": 100, + "endOffset": 7166 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 828, + "endColumn": 100, + "endOffset": 924 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7171, + "endColumn": 94, + "endOffset": 7261 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 929, + "endColumn": 94, + "endOffset": 1019 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7266, + "endColumn": 118, + "endOffset": 7380 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1024, + "endColumn": 118, + "endOffset": 1138 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7385, + "endColumn": 102, + "endOffset": 7483 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1143, + "endColumn": 102, + "endOffset": 1241 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7488, + "endColumn": 85, + "endOffset": 7569 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1246, + "endColumn": 85, + "endOffset": 1327 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7574, + "endColumn": 93, + "endOffset": 7663 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1332, + "endColumn": 93, + "endOffset": 1421 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7668, + "endColumn": 99, + "endOffset": 7763 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ar\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 99, + "endOffset": 420 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7768, + "endColumn": 94, + "endOffset": 7858 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ar\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 7863, + "endColumn": 100, + "endOffset": 7959 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ar\\values-ar.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2156, + "endColumn": 100, + "endOffset": 2252 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 7964, + "endColumn": 106, + "endOffset": 8066 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-ar\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 106, + "endOffset": 332 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-az-rAZ.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-az-rAZ.json new file mode 100644 index 0000000..661a46b --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-az-rAZ.json @@ -0,0 +1,1166 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-az-rAZ\\values-az-rAZ.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 97, + "endOffset": 198 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 97, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 203, + "endColumn": 107, + "endOffset": 306 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 331, + "endColumn": 107, + "endOffset": 434 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 311, + "endColumn": 122, + "endOffset": 429 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 439, + "endColumn": 122, + "endOffset": 557 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 434, + "endColumn": 98, + "endOffset": 528 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 562, + "endColumn": 98, + "endOffset": 656 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 533, + "endColumn": 109, + "endOffset": 638 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 661, + "endColumn": 109, + "endOffset": 766 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 643, + "endColumn": 87, + "endOffset": 726 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 771, + "endColumn": 87, + "endOffset": 854 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 731, + "endColumn": 106, + "endOffset": 833 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 859, + "endColumn": 106, + "endOffset": 961 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 838, + "endColumn": 113, + "endOffset": 947 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 966, + "endColumn": 113, + "endOffset": 1075 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 952, + "endColumn": 80, + "endOffset": 1028 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1080, + "endColumn": 80, + "endOffset": 1156 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1033, + "endColumn": 78, + "endOffset": 1107 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1161, + "endColumn": 78, + "endOffset": 1235 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1112, + "endColumn": 84, + "endOffset": 1192 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1240, + "endColumn": 84, + "endOffset": 1320 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1197, + "endColumn": 106, + "endOffset": 1299 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1325, + "endColumn": 106, + "endOffset": 1427 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1304, + "endColumn": 106, + "endOffset": 1406 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1432, + "endColumn": 106, + "endOffset": 1534 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1411, + "endColumn": 99, + "endOffset": 1506 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1539, + "endColumn": 99, + "endOffset": 1634 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1511, + "endColumn": 108, + "endOffset": 1615 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1639, + "endColumn": 108, + "endOffset": 1743 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1620, + "endColumn": 103, + "endOffset": 1719 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1748, + "endColumn": 103, + "endOffset": 1847 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1724, + "endColumn": 109, + "endOffset": 1829 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1852, + "endColumn": 109, + "endOffset": 1957 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1834, + "endColumn": 96, + "endOffset": 1926 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1962, + "endColumn": 96, + "endOffset": 2054 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1931, + "endColumn": 256, + "endOffset": 2183 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3505, + "endColumn": 260, + "endOffset": 3761 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2188, + "endColumn": 135, + "endOffset": 2319 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1334, + "endColumn": 135, + "endOffset": 1465 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2324, + "endColumn": 186, + "endOffset": 2506 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1143, + "endColumn": 190, + "endOffset": 1329 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2511, + "endColumn": 134, + "endOffset": 2641 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1008, + "endColumn": 134, + "endOffset": 1138 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2646, + "endColumn": 135, + "endOffset": 2777 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 872, + "endColumn": 135, + "endOffset": 1003 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2782, + "endColumn": 210, + "endOffset": 2988 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 441, + "endColumn": 214, + "endOffset": 651 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2993, + "endColumn": 211, + "endOffset": 3200 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 656, + "endColumn": 215, + "endOffset": 867 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3205, + "endColumn": 134, + "endOffset": 3335 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 306, + "endColumn": 134, + "endOffset": 436 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3340, + "endColumn": 177, + "endOffset": 3513 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2740, + "endColumn": 177, + "endOffset": 2913 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3518, + "endColumn": 120, + "endOffset": 3634 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2619, + "endColumn": 120, + "endOffset": 2735 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3639, + "endColumn": 173, + "endOffset": 3808 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2445, + "endColumn": 173, + "endOffset": 2614 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3813, + "endColumn": 119, + "endOffset": 3928 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2325, + "endColumn": 119, + "endOffset": 2440 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3933, + "endColumn": 135, + "endOffset": 4064 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 135, + "endOffset": 301 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4069, + "endColumn": 167, + "endOffset": 4232 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4205, + "endColumn": 167, + "endOffset": 4368 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4237, + "endColumn": 135, + "endOffset": 4368 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4069, + "endColumn": 135, + "endOffset": 4200 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4373, + "endColumn": 182, + "endOffset": 4551 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3886, + "endColumn": 182, + "endOffset": 4064 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4556, + "endColumn": 119, + "endOffset": 4671 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3766, + "endColumn": 119, + "endOffset": 3881 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4676, + "endColumn": 255, + "endOffset": 4927 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-az-rAZ\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 259, + "endOffset": 425 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4932, + "endColumn": 251, + "endOffset": 5179 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3044, + "endColumn": 255, + "endOffset": 3295 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5184, + "endColumn": 125, + "endOffset": 5305 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2918, + "endColumn": 125, + "endOffset": 3039 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5310, + "endColumn": 111, + "endOffset": 5417 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3300, + "endColumn": 111, + "endOffset": 3407 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5422, + "endColumn": 184, + "endOffset": 5602 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1609, + "endColumn": 188, + "endOffset": 1793 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5607, + "endColumn": 138, + "endOffset": 5741 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1470, + "endColumn": 138, + "endOffset": 1604 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5746, + "endColumn": 202, + "endOffset": 5944 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2118, + "endColumn": 206, + "endOffset": 2320 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5949, + "endColumn": 133, + "endOffset": 6078 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1984, + "endColumn": 133, + "endOffset": 2113 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6083, + "endColumn": 185, + "endOffset": 6264 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1798, + "endColumn": 185, + "endOffset": 1979 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6269, + "endColumn": 92, + "endOffset": 6357 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3412, + "endColumn": 92, + "endOffset": 3500 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6362, + "endColumn": 94, + "endOffset": 6452 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4373, + "endColumn": 94, + "endOffset": 4463 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6457, + "endColumn": 110, + "endOffset": 6563 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-az-rAZ\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4468, + "endColumn": 110, + "endOffset": 4574 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6568, + "endColumn": 112, + "endOffset": 6676 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 112, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6681, + "endColumn": 111, + "endOffset": 6788 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 111, + "endOffset": 502 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6793, + "endColumn": 97, + "endOffset": 6886 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 507, + "endColumn": 97, + "endOffset": 600 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6891, + "endColumn": 108, + "endOffset": 6995 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 605, + "endColumn": 108, + "endOffset": 709 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7000, + "endColumn": 121, + "endOffset": 7117 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 714, + "endColumn": 121, + "endOffset": 831 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7122, + "endColumn": 100, + "endOffset": 7218 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 836, + "endColumn": 100, + "endOffset": 932 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7223, + "endColumn": 95, + "endOffset": 7314 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 937, + "endColumn": 95, + "endOffset": 1028 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7319, + "endColumn": 124, + "endOffset": 7439 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1033, + "endColumn": 124, + "endOffset": 1153 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7444, + "endColumn": 104, + "endOffset": 7544 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1158, + "endColumn": 104, + "endOffset": 1258 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7549, + "endColumn": 85, + "endOffset": 7630 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1263, + "endColumn": 85, + "endOffset": 1344 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7635, + "endColumn": 94, + "endOffset": 7725 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1349, + "endColumn": 94, + "endOffset": 1439 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7730, + "endColumn": 109, + "endOffset": 7835 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-az-rAZ\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 327, + "endColumn": 109, + "endOffset": 432 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7840, + "endColumn": 96, + "endOffset": 7932 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-az-rAZ\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 96, + "endOffset": 322 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7937, + "endColumn": 100, + "endOffset": 8033 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-az-rAZ\\values-az-rAZ.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2059, + "endColumn": 100, + "endOffset": 2155 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-bg.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-bg.json new file mode 100644 index 0000000..491a013 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-bg.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-bg\\values-bg.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 114, + "endOffset": 215 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 114, + "endOffset": 339 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 220, + "endColumn": 110, + "endOffset": 326 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 344, + "endColumn": 110, + "endOffset": 450 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 331, + "endColumn": 127, + "endOffset": 454 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 455, + "endColumn": 127, + "endOffset": 578 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 459, + "endColumn": 106, + "endOffset": 561 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 583, + "endColumn": 106, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 566, + "endColumn": 104, + "endOffset": 666 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 104, + "endOffset": 790 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 671, + "endColumn": 85, + "endOffset": 752 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 85, + "endOffset": 876 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 757, + "endColumn": 104, + "endOffset": 857 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 881, + "endColumn": 104, + "endOffset": 981 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 862, + "endColumn": 120, + "endOffset": 978 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 986, + "endColumn": 120, + "endOffset": 1102 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 983, + "endColumn": 78, + "endOffset": 1057 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1107, + "endColumn": 78, + "endOffset": 1181 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 77, + "endOffset": 1135 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 77, + "endOffset": 1259 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1140, + "endColumn": 82, + "endOffset": 1218 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1264, + "endColumn": 82, + "endOffset": 1342 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1223, + "endColumn": 113, + "endOffset": 1332 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1347, + "endColumn": 113, + "endOffset": 1456 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1337, + "endColumn": 108, + "endOffset": 1441 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1461, + "endColumn": 108, + "endOffset": 1565 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1446, + "endColumn": 99, + "endOffset": 1541 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1570, + "endColumn": 99, + "endOffset": 1665 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1546, + "endColumn": 113, + "endOffset": 1655 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1670, + "endColumn": 113, + "endOffset": 1779 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1660, + "endColumn": 105, + "endOffset": 1761 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 105, + "endOffset": 1885 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1766, + "endColumn": 107, + "endOffset": 1869 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1890, + "endColumn": 107, + "endOffset": 1993 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 122, + "endOffset": 1992 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1998, + "endColumn": 122, + "endOffset": 2116 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1997, + "endColumn": 98, + "endOffset": 2091 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2121, + "endColumn": 98, + "endOffset": 2215 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2096, + "endColumn": 266, + "endOffset": 2358 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3628, + "endColumn": 270, + "endOffset": 3894 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2363, + "endColumn": 137, + "endOffset": 2496 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1386, + "endColumn": 137, + "endOffset": 1519 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2501, + "endColumn": 196, + "endOffset": 2693 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1185, + "endColumn": 200, + "endOffset": 1381 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2698, + "endColumn": 136, + "endOffset": 2830 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1048, + "endColumn": 136, + "endOffset": 1180 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2835, + "endColumn": 137, + "endOffset": 2968 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 910, + "endColumn": 137, + "endOffset": 1043 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2973, + "endColumn": 227, + "endOffset": 3196 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 446, + "endColumn": 231, + "endOffset": 673 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3201, + "endColumn": 227, + "endOffset": 3424 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 678, + "endColumn": 231, + "endOffset": 905 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3429, + "endColumn": 136, + "endOffset": 3561 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 309, + "endColumn": 136, + "endOffset": 441 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3566, + "endColumn": 179, + "endOffset": 3741 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2848, + "endColumn": 179, + "endOffset": 3023 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3746, + "endColumn": 121, + "endOffset": 3863 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2726, + "endColumn": 121, + "endOffset": 2843 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3868, + "endColumn": 171, + "endOffset": 4035 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2554, + "endColumn": 171, + "endOffset": 2721 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4040, + "endColumn": 122, + "endOffset": 4158 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2431, + "endColumn": 122, + "endOffset": 2549 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4163, + "endColumn": 138, + "endOffset": 4297 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 138, + "endOffset": 304 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4302, + "endColumn": 196, + "endOffset": 4494 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4357, + "endColumn": 196, + "endOffset": 4549 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4499, + "endColumn": 141, + "endOffset": 4636 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4215, + "endColumn": 141, + "endOffset": 4352 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4641, + "endColumn": 174, + "endOffset": 4811 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4040, + "endColumn": 174, + "endOffset": 4210 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4816, + "endColumn": 140, + "endOffset": 4952 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3899, + "endColumn": 140, + "endOffset": 4035 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4957, + "endColumn": 243, + "endOffset": 5196 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-bg\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 247, + "endOffset": 413 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5201, + "endColumn": 257, + "endOffset": 5454 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3153, + "endColumn": 261, + "endOffset": 3410 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5459, + "endColumn": 124, + "endOffset": 5579 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 3028, + "endColumn": 124, + "endOffset": 3148 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5584, + "endColumn": 113, + "endOffset": 5693 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3415, + "endColumn": 113, + "endOffset": 3524 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5698, + "endColumn": 205, + "endOffset": 5899 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1664, + "endColumn": 209, + "endOffset": 1869 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5904, + "endColumn": 139, + "endOffset": 6039 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1524, + "endColumn": 139, + "endOffset": 1659 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6044, + "endColumn": 215, + "endOffset": 6255 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2211, + "endColumn": 219, + "endOffset": 2426 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6260, + "endColumn": 140, + "endOffset": 6396 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2070, + "endColumn": 140, + "endOffset": 2206 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6401, + "endColumn": 195, + "endOffset": 6592 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 195, + "endOffset": 2065 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6597, + "endColumn": 98, + "endOffset": 6691 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3529, + "endColumn": 98, + "endOffset": 3623 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6696, + "endColumn": 88, + "endOffset": 6780 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4554, + "endColumn": 88, + "endOffset": 4638 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6785, + "endColumn": 102, + "endOffset": 6883 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bg\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4643, + "endColumn": 102, + "endOffset": 4741 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6888, + "endColumn": 109, + "endOffset": 6993 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 109, + "endOffset": 383 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6998, + "endColumn": 112, + "endOffset": 7106 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 388, + "endColumn": 112, + "endOffset": 496 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7111, + "endColumn": 109, + "endOffset": 7216 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 501, + "endColumn": 109, + "endOffset": 606 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7221, + "endColumn": 118, + "endOffset": 7335 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 611, + "endColumn": 118, + "endOffset": 725 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7340, + "endColumn": 125, + "endOffset": 7461 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 730, + "endColumn": 125, + "endOffset": 851 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7466, + "endColumn": 108, + "endOffset": 7570 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 856, + "endColumn": 108, + "endOffset": 960 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7575, + "endColumn": 96, + "endOffset": 7667 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 965, + "endColumn": 96, + "endOffset": 1057 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7672, + "endColumn": 125, + "endOffset": 7793 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 125, + "endOffset": 1183 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7798, + "endColumn": 111, + "endOffset": 7905 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1188, + "endColumn": 111, + "endOffset": 1295 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7910, + "endColumn": 86, + "endOffset": 7992 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1300, + "endColumn": 86, + "endOffset": 1382 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7997, + "endColumn": 96, + "endOffset": 8089 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1387, + "endColumn": 96, + "endOffset": 1479 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8094, + "endColumn": 113, + "endOffset": 8203 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-bg\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 327, + "endColumn": 113, + "endOffset": 436 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8208, + "endColumn": 96, + "endOffset": 8300 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-bg\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 96, + "endOffset": 322 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8305, + "endColumn": 100, + "endOffset": 8401 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bg\\values-bg.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2220, + "endColumn": 100, + "endOffset": 2316 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8406, + "endColumn": 104, + "endOffset": 8506 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-bg\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 104, + "endOffset": 330 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-bn-rBD.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-bn-rBD.json new file mode 100644 index 0000000..0327794 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-bn-rBD.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-bn-rBD\\values-bn-rBD.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 108, + "endOffset": 209 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 108, + "endOffset": 337 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 214, + "endColumn": 107, + "endOffset": 317 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 342, + "endColumn": 107, + "endOffset": 445 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 322, + "endColumn": 122, + "endOffset": 440 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 450, + "endColumn": 122, + "endOffset": 568 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 445, + "endColumn": 111, + "endOffset": 552 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 573, + "endColumn": 111, + "endOffset": 680 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 557, + "endColumn": 105, + "endOffset": 658 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 685, + "endColumn": 105, + "endOffset": 786 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 663, + "endColumn": 93, + "endOffset": 752 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 791, + "endColumn": 93, + "endOffset": 880 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 757, + "endColumn": 104, + "endOffset": 857 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 885, + "endColumn": 104, + "endOffset": 985 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 862, + "endColumn": 129, + "endOffset": 987 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 990, + "endColumn": 129, + "endOffset": 1115 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 992, + "endColumn": 77, + "endOffset": 1065 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1120, + "endColumn": 77, + "endOffset": 1193 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1070, + "endColumn": 77, + "endOffset": 1143 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1198, + "endColumn": 77, + "endOffset": 1271 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1148, + "endColumn": 86, + "endOffset": 1230 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1276, + "endColumn": 86, + "endOffset": 1358 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 109, + "endOffset": 1340 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1363, + "endColumn": 109, + "endOffset": 1468 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1345, + "endColumn": 115, + "endOffset": 1456 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1473, + "endColumn": 115, + "endOffset": 1584 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1461, + "endColumn": 106, + "endOffset": 1563 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1589, + "endColumn": 106, + "endOffset": 1691 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1568, + "endColumn": 109, + "endOffset": 1673 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1696, + "endColumn": 109, + "endOffset": 1801 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1678, + "endColumn": 105, + "endOffset": 1779 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1806, + "endColumn": 105, + "endOffset": 1907 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 109, + "endOffset": 1889 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1912, + "endColumn": 109, + "endOffset": 2017 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1894, + "endColumn": 124, + "endOffset": 2014 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2022, + "endColumn": 124, + "endOffset": 2142 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2019, + "endColumn": 104, + "endOffset": 2119 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2147, + "endColumn": 104, + "endOffset": 2247 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2124, + "endColumn": 270, + "endOffset": 2390 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3435, + "endColumn": 274, + "endOffset": 3705 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2395, + "endColumn": 130, + "endOffset": 2521 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1290, + "endColumn": 130, + "endOffset": 1416 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2526, + "endColumn": 190, + "endOffset": 2712 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1095, + "endColumn": 194, + "endOffset": 1285 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2717, + "endColumn": 129, + "endOffset": 2842 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 965, + "endColumn": 129, + "endOffset": 1090 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2847, + "endColumn": 124, + "endOffset": 2967 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 840, + "endColumn": 124, + "endOffset": 960 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2972, + "endColumn": 198, + "endOffset": 3166 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 428, + "endColumn": 202, + "endOffset": 626 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3171, + "endColumn": 204, + "endOffset": 3371 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 631, + "endColumn": 208, + "endOffset": 835 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3376, + "endColumn": 123, + "endOffset": 3495 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 304, + "endColumn": 123, + "endOffset": 423 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3500, + "endColumn": 194, + "endOffset": 3690 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2662, + "endColumn": 194, + "endOffset": 2852 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3695, + "endColumn": 120, + "endOffset": 3811 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2541, + "endColumn": 120, + "endOffset": 2657 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3816, + "endColumn": 165, + "endOffset": 3977 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2375, + "endColumn": 165, + "endOffset": 2536 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3982, + "endColumn": 123, + "endOffset": 4101 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2251, + "endColumn": 123, + "endOffset": 2370 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4106, + "endColumn": 133, + "endOffset": 4235 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 133, + "endOffset": 299 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4240, + "endColumn": 187, + "endOffset": 4423 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4171, + "endColumn": 187, + "endOffset": 4354 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4428, + "endColumn": 134, + "endOffset": 4558 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4036, + "endColumn": 134, + "endOffset": 4166 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4563, + "endColumn": 191, + "endOffset": 4750 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3844, + "endColumn": 191, + "endOffset": 4031 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4755, + "endColumn": 133, + "endOffset": 4884 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3710, + "endColumn": 133, + "endOffset": 3839 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4889, + "endColumn": 265, + "endOffset": 5150 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-bn-rBD\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 269, + "endOffset": 435 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5155, + "endColumn": 250, + "endOffset": 5401 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2980, + "endColumn": 254, + "endOffset": 3230 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5406, + "endColumn": 122, + "endOffset": 5524 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2857, + "endColumn": 122, + "endOffset": 2975 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5529, + "endColumn": 110, + "endOffset": 5635 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3235, + "endColumn": 110, + "endOffset": 3341 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5640, + "endColumn": 186, + "endOffset": 5822 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1551, + "endColumn": 190, + "endOffset": 1737 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5827, + "endColumn": 129, + "endOffset": 5952 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1421, + "endColumn": 129, + "endOffset": 1546 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5957, + "endColumn": 192, + "endOffset": 6145 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2054, + "endColumn": 196, + "endOffset": 2246 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6150, + "endColumn": 132, + "endOffset": 6278 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1921, + "endColumn": 132, + "endOffset": 2049 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6283, + "endColumn": 178, + "endOffset": 6457 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1742, + "endColumn": 178, + "endOffset": 1916 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6462, + "endColumn": 88, + "endOffset": 6546 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3346, + "endColumn": 88, + "endOffset": 3430 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6551, + "endColumn": 96, + "endOffset": 6643 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4359, + "endColumn": 96, + "endOffset": 4451 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6648, + "endColumn": 119, + "endOffset": 6763 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-bn-rBD\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4456, + "endColumn": 119, + "endOffset": 4571 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6768, + "endColumn": 110, + "endOffset": 6874 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 110, + "endOffset": 388 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6879, + "endColumn": 122, + "endOffset": 6997 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 122, + "endOffset": 511 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7002, + "endColumn": 105, + "endOffset": 7103 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 105, + "endOffset": 617 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7108, + "endColumn": 114, + "endOffset": 7218 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 622, + "endColumn": 114, + "endOffset": 732 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7223, + "endColumn": 122, + "endOffset": 7341 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 737, + "endColumn": 122, + "endOffset": 855 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7346, + "endColumn": 99, + "endOffset": 7441 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 860, + "endColumn": 99, + "endOffset": 955 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7446, + "endColumn": 94, + "endOffset": 7536 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 960, + "endColumn": 94, + "endOffset": 1050 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7541, + "endColumn": 119, + "endOffset": 7656 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1055, + "endColumn": 119, + "endOffset": 1170 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7661, + "endColumn": 108, + "endOffset": 7765 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1175, + "endColumn": 108, + "endOffset": 1279 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7770, + "endColumn": 86, + "endOffset": 7852 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1284, + "endColumn": 86, + "endOffset": 1366 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7857, + "endColumn": 96, + "endOffset": 7949 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1371, + "endColumn": 96, + "endOffset": 1463 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7954, + "endColumn": 105, + "endOffset": 8055 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-bn-rBD\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 334, + "endColumn": 105, + "endOffset": 435 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8060, + "endColumn": 103, + "endOffset": 8159 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-bn-rBD\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 103, + "endOffset": 329 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8164, + "endColumn": 100, + "endOffset": 8260 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-bn-rBD\\values-bn-rBD.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2252, + "endColumn": 100, + "endOffset": 2348 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-ca.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-ca.json new file mode 100644 index 0000000..12ec0b7 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-ca.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-ca\\values-ca.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 117, + "endOffset": 218 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 117, + "endOffset": 342 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 223, + "endColumn": 107, + "endOffset": 326 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 347, + "endColumn": 107, + "endOffset": 450 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 331, + "endColumn": 122, + "endOffset": 449 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 455, + "endColumn": 122, + "endOffset": 573 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 454, + "endColumn": 105, + "endOffset": 555 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 105, + "endOffset": 679 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 560, + "endColumn": 106, + "endOffset": 662 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 684, + "endColumn": 106, + "endOffset": 786 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 667, + "endColumn": 82, + "endOffset": 745 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 791, + "endColumn": 82, + "endOffset": 869 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 750, + "endColumn": 107, + "endOffset": 853 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 874, + "endColumn": 107, + "endOffset": 977 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 858, + "endColumn": 125, + "endOffset": 979 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 982, + "endColumn": 125, + "endOffset": 1103 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 984, + "endColumn": 83, + "endOffset": 1063 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1108, + "endColumn": 83, + "endOffset": 1187 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1068, + "endColumn": 80, + "endOffset": 1144 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1192, + "endColumn": 80, + "endOffset": 1268 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1149, + "endColumn": 82, + "endOffset": 1227 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1273, + "endColumn": 82, + "endOffset": 1351 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1232, + "endColumn": 110, + "endOffset": 1338 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 110, + "endOffset": 1462 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1343, + "endColumn": 108, + "endOffset": 1447 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1467, + "endColumn": 108, + "endOffset": 1571 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1452, + "endColumn": 97, + "endOffset": 1545 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1576, + "endColumn": 97, + "endOffset": 1669 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1550, + "endColumn": 109, + "endOffset": 1655 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1674, + "endColumn": 109, + "endOffset": 1779 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1660, + "endColumn": 103, + "endOffset": 1759 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 103, + "endOffset": 1883 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1764, + "endColumn": 107, + "endOffset": 1867 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1888, + "endColumn": 107, + "endOffset": 1991 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1872, + "endColumn": 122, + "endOffset": 1990 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1996, + "endColumn": 122, + "endOffset": 2114 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1995, + "endColumn": 98, + "endOffset": 2089 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2119, + "endColumn": 98, + "endOffset": 2213 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2094, + "endColumn": 268, + "endOffset": 2358 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3576, + "endColumn": 272, + "endOffset": 3844 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2363, + "endColumn": 133, + "endOffset": 2492 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1341, + "endColumn": 133, + "endOffset": 1470 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2497, + "endColumn": 187, + "endOffset": 2680 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1149, + "endColumn": 191, + "endOffset": 1336 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2685, + "endColumn": 132, + "endOffset": 2813 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1016, + "endColumn": 132, + "endOffset": 1144 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2818, + "endColumn": 133, + "endOffset": 2947 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 882, + "endColumn": 133, + "endOffset": 1011 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2952, + "endColumn": 214, + "endOffset": 3162 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 443, + "endColumn": 218, + "endOffset": 657 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3167, + "endColumn": 215, + "endOffset": 3378 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 662, + "endColumn": 219, + "endOffset": 877 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3383, + "endColumn": 132, + "endOffset": 3511 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 310, + "endColumn": 132, + "endOffset": 438 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3516, + "endColumn": 184, + "endOffset": 3696 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2793, + "endColumn": 184, + "endOffset": 2973 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3701, + "endColumn": 120, + "endOffset": 3817 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2672, + "endColumn": 120, + "endOffset": 2788 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3822, + "endColumn": 176, + "endOffset": 3994 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2495, + "endColumn": 176, + "endOffset": 2667 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3999, + "endColumn": 120, + "endOffset": 4115 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2374, + "endColumn": 120, + "endOffset": 2490 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4120, + "endColumn": 139, + "endOffset": 4255 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 139, + "endOffset": 305 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4260, + "endColumn": 164, + "endOffset": 4420 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4299, + "endColumn": 164, + "endOffset": 4459 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4425, + "endColumn": 128, + "endOffset": 4549 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4170, + "endColumn": 128, + "endOffset": 4294 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4554, + "endColumn": 188, + "endOffset": 4738 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3981, + "endColumn": 188, + "endOffset": 4165 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4743, + "endColumn": 131, + "endOffset": 4870 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3849, + "endColumn": 131, + "endOffset": 3976 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4875, + "endColumn": 253, + "endOffset": 5124 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-ca\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 257, + "endOffset": 423 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5129, + "endColumn": 262, + "endOffset": 5387 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3104, + "endColumn": 266, + "endOffset": 3366 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5392, + "endColumn": 125, + "endOffset": 5513 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2978, + "endColumn": 125, + "endOffset": 3099 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5518, + "endColumn": 110, + "endOffset": 5624 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3371, + "endColumn": 110, + "endOffset": 3477 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5629, + "endColumn": 193, + "endOffset": 5818 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1612, + "endColumn": 197, + "endOffset": 1805 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5823, + "endColumn": 136, + "endOffset": 5955 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 136, + "endOffset": 1607 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5960, + "endColumn": 227, + "endOffset": 6183 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2142, + "endColumn": 231, + "endOffset": 2369 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6188, + "endColumn": 140, + "endOffset": 6324 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2001, + "endColumn": 140, + "endOffset": 2137 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6329, + "endColumn": 190, + "endOffset": 6515 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1810, + "endColumn": 190, + "endOffset": 1996 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6520, + "endColumn": 93, + "endOffset": 6609 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3482, + "endColumn": 93, + "endOffset": 3571 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6614, + "endColumn": 97, + "endOffset": 6707 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4464, + "endColumn": 97, + "endOffset": 4557 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6712, + "endColumn": 116, + "endOffset": 6824 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ca\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4562, + "endColumn": 116, + "endOffset": 4674 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6829, + "endColumn": 104, + "endOffset": 6929 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 104, + "endOffset": 378 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6934, + "endColumn": 120, + "endOffset": 7050 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 383, + "endColumn": 120, + "endOffset": 499 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7055, + "endColumn": 109, + "endOffset": 7160 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 109, + "endOffset": 609 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7165, + "endColumn": 105, + "endOffset": 7266 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 614, + "endColumn": 105, + "endOffset": 715 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7271, + "endColumn": 132, + "endOffset": 7399 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 720, + "endColumn": 132, + "endOffset": 848 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7404, + "endColumn": 103, + "endOffset": 7503 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 853, + "endColumn": 103, + "endOffset": 952 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7508, + "endColumn": 99, + "endOffset": 7603 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 957, + "endColumn": 99, + "endOffset": 1052 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7608, + "endColumn": 127, + "endOffset": 7731 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1057, + "endColumn": 127, + "endOffset": 1180 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7736, + "endColumn": 105, + "endOffset": 7837 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1185, + "endColumn": 105, + "endOffset": 1286 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7842, + "endColumn": 86, + "endOffset": 7924 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1291, + "endColumn": 86, + "endOffset": 1373 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7929, + "endColumn": 97, + "endOffset": 8022 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1378, + "endColumn": 97, + "endOffset": 1471 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8027, + "endColumn": 106, + "endOffset": 8129 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ca\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 106, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8134, + "endColumn": 94, + "endOffset": 8224 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ca\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8229, + "endColumn": 100, + "endOffset": 8325 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ca\\values-ca.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2218, + "endColumn": 100, + "endOffset": 2314 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8330, + "endColumn": 106, + "endOffset": 8432 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-ca\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 106, + "endOffset": 332 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-cs.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-cs.json new file mode 100644 index 0000000..5ca7fab --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-cs.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-cs\\values-cs.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 106, + "endOffset": 207 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 106, + "endOffset": 331 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 212, + "endColumn": 108, + "endOffset": 316 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 336, + "endColumn": 108, + "endOffset": 440 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 321, + "endColumn": 123, + "endOffset": 440 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 445, + "endColumn": 123, + "endOffset": 564 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 445, + "endColumn": 101, + "endOffset": 542 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 569, + "endColumn": 101, + "endOffset": 666 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 547, + "endColumn": 108, + "endOffset": 651 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 671, + "endColumn": 108, + "endOffset": 775 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 656, + "endColumn": 85, + "endOffset": 737 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 780, + "endColumn": 85, + "endOffset": 861 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 742, + "endColumn": 104, + "endOffset": 842 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 866, + "endColumn": 104, + "endOffset": 966 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 847, + "endColumn": 116, + "endOffset": 959 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 971, + "endColumn": 116, + "endOffset": 1083 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 964, + "endColumn": 80, + "endOffset": 1040 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1088, + "endColumn": 80, + "endOffset": 1164 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1045, + "endColumn": 80, + "endOffset": 1121 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1169, + "endColumn": 80, + "endOffset": 1245 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1126, + "endColumn": 83, + "endOffset": 1205 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1250, + "endColumn": 83, + "endOffset": 1329 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1210, + "endColumn": 103, + "endOffset": 1309 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1334, + "endColumn": 103, + "endOffset": 1433 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1314, + "endColumn": 108, + "endOffset": 1418 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 108, + "endOffset": 1542 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1423, + "endColumn": 98, + "endOffset": 1517 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1547, + "endColumn": 98, + "endOffset": 1641 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1522, + "endColumn": 105, + "endOffset": 1623 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1646, + "endColumn": 105, + "endOffset": 1747 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1628, + "endColumn": 109, + "endOffset": 1733 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1752, + "endColumn": 109, + "endOffset": 1857 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1738, + "endColumn": 106, + "endOffset": 1840 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1862, + "endColumn": 106, + "endOffset": 1964 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1845, + "endColumn": 121, + "endOffset": 1962 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 121, + "endOffset": 2086 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1967, + "endColumn": 97, + "endOffset": 2060 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2091, + "endColumn": 97, + "endOffset": 2184 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2065, + "endColumn": 271, + "endOffset": 2332 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3512, + "endColumn": 275, + "endOffset": 3783 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2337, + "endColumn": 128, + "endOffset": 2461 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1327, + "endColumn": 128, + "endOffset": 1451 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2466, + "endColumn": 191, + "endOffset": 2653 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1131, + "endColumn": 195, + "endOffset": 1322 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2658, + "endColumn": 126, + "endOffset": 2780 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1004, + "endColumn": 126, + "endOffset": 1126 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2785, + "endColumn": 129, + "endOffset": 2910 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 874, + "endColumn": 129, + "endOffset": 999 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2915, + "endColumn": 217, + "endOffset": 3128 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 430, + "endColumn": 221, + "endOffset": 647 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3133, + "endColumn": 217, + "endOffset": 3346 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 652, + "endColumn": 221, + "endOffset": 869 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3351, + "endColumn": 128, + "endOffset": 3475 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 301, + "endColumn": 128, + "endOffset": 425 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3480, + "endColumn": 173, + "endOffset": 3649 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2735, + "endColumn": 173, + "endOffset": 2904 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3654, + "endColumn": 118, + "endOffset": 3768 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2616, + "endColumn": 118, + "endOffset": 2730 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3773, + "endColumn": 164, + "endOffset": 3933 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2451, + "endColumn": 164, + "endOffset": 2611 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3938, + "endColumn": 116, + "endOffset": 4050 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2334, + "endColumn": 116, + "endOffset": 2446 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4055, + "endColumn": 130, + "endOffset": 4181 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 130, + "endOffset": 296 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4186, + "endColumn": 162, + "endOffset": 4344 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4217, + "endColumn": 162, + "endOffset": 4375 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4349, + "endColumn": 125, + "endOffset": 4470 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4091, + "endColumn": 125, + "endOffset": 4212 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4475, + "endColumn": 171, + "endOffset": 4642 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3919, + "endColumn": 171, + "endOffset": 4086 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4647, + "endColumn": 130, + "endOffset": 4773 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3788, + "endColumn": 130, + "endOffset": 3914 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4778, + "endColumn": 244, + "endOffset": 5018 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-cs\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 248, + "endOffset": 414 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5023, + "endColumn": 266, + "endOffset": 5285 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3031, + "endColumn": 270, + "endOffset": 3297 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5290, + "endColumn": 121, + "endOffset": 5407 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2909, + "endColumn": 121, + "endOffset": 3026 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5412, + "endColumn": 112, + "endOffset": 5520 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3302, + "endColumn": 112, + "endOffset": 3410 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5525, + "endColumn": 194, + "endOffset": 5715 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1586, + "endColumn": 198, + "endOffset": 1780 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5720, + "endColumn": 129, + "endOffset": 5845 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1456, + "endColumn": 129, + "endOffset": 1581 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5850, + "endColumn": 219, + "endOffset": 6065 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2110, + "endColumn": 223, + "endOffset": 2329 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6070, + "endColumn": 139, + "endOffset": 6205 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1970, + "endColumn": 139, + "endOffset": 2105 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6210, + "endColumn": 184, + "endOffset": 6390 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1785, + "endColumn": 184, + "endOffset": 1965 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6395, + "endColumn": 96, + "endOffset": 6487 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3415, + "endColumn": 96, + "endOffset": 3507 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6492, + "endColumn": 96, + "endOffset": 6584 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4380, + "endColumn": 96, + "endOffset": 4472 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6589, + "endColumn": 115, + "endOffset": 6700 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-cs\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4477, + "endColumn": 115, + "endOffset": 4588 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6705, + "endColumn": 107, + "endOffset": 6808 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 107, + "endOffset": 381 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6813, + "endColumn": 112, + "endOffset": 6921 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 386, + "endColumn": 112, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6926, + "endColumn": 107, + "endOffset": 7029 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 107, + "endOffset": 602 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7034, + "endColumn": 101, + "endOffset": 7131 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 607, + "endColumn": 101, + "endOffset": 704 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7136, + "endColumn": 117, + "endOffset": 7249 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 117, + "endOffset": 822 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7254, + "endColumn": 100, + "endOffset": 7350 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 827, + "endColumn": 100, + "endOffset": 923 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7355, + "endColumn": 96, + "endOffset": 7447 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 928, + "endColumn": 96, + "endOffset": 1020 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7452, + "endColumn": 119, + "endOffset": 7567 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1025, + "endColumn": 119, + "endOffset": 1140 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7572, + "endColumn": 106, + "endOffset": 7674 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1145, + "endColumn": 106, + "endOffset": 1247 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7679, + "endColumn": 85, + "endOffset": 7760 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1252, + "endColumn": 85, + "endOffset": 1333 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7765, + "endColumn": 94, + "endOffset": 7855 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1338, + "endColumn": 94, + "endOffset": 1428 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7860, + "endColumn": 109, + "endOffset": 7965 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-cs\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 331, + "endColumn": 109, + "endOffset": 436 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7970, + "endColumn": 100, + "endOffset": 8066 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-cs\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 100, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8071, + "endColumn": 100, + "endOffset": 8167 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-cs\\values-cs.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2189, + "endColumn": 100, + "endOffset": 2285 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8172, + "endColumn": 109, + "endOffset": 8277 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-cs\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 109, + "endOffset": 335 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-da.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-da.json new file mode 100644 index 0000000..2866e3d --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-da.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-da\\values-da.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 102, + "endOffset": 203 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 102, + "endOffset": 327 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 208, + "endColumn": 107, + "endOffset": 311 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 332, + "endColumn": 107, + "endOffset": 435 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 316, + "endColumn": 122, + "endOffset": 434 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 440, + "endColumn": 122, + "endOffset": 558 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 439, + "endColumn": 98, + "endOffset": 533 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 563, + "endColumn": 98, + "endOffset": 657 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 538, + "endColumn": 111, + "endOffset": 645 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 662, + "endColumn": 111, + "endOffset": 769 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 650, + "endColumn": 82, + "endOffset": 728 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 774, + "endColumn": 82, + "endOffset": 852 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 733, + "endColumn": 99, + "endOffset": 828 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 857, + "endColumn": 99, + "endOffset": 952 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 833, + "endColumn": 112, + "endOffset": 941 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 957, + "endColumn": 112, + "endOffset": 1065 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 946, + "endColumn": 76, + "endOffset": 1018 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1070, + "endColumn": 76, + "endOffset": 1142 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1023, + "endColumn": 76, + "endOffset": 1095 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 76, + "endOffset": 1219 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1100, + "endColumn": 78, + "endOffset": 1174 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1224, + "endColumn": 78, + "endOffset": 1298 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1179, + "endColumn": 108, + "endOffset": 1283 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1303, + "endColumn": 108, + "endOffset": 1407 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1288, + "endColumn": 107, + "endOffset": 1391 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1412, + "endColumn": 107, + "endOffset": 1515 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 95, + "endOffset": 1487 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1520, + "endColumn": 95, + "endOffset": 1611 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1492, + "endColumn": 113, + "endOffset": 1601 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1616, + "endColumn": 113, + "endOffset": 1725 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1606, + "endColumn": 101, + "endOffset": 1703 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1730, + "endColumn": 101, + "endOffset": 1827 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1708, + "endColumn": 100, + "endOffset": 1804 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1832, + "endColumn": 100, + "endOffset": 1928 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1809, + "endColumn": 115, + "endOffset": 1920 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1933, + "endColumn": 115, + "endOffset": 2044 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1925, + "endColumn": 96, + "endOffset": 2017 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2049, + "endColumn": 96, + "endOffset": 2141 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2022, + "endColumn": 264, + "endOffset": 2282 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3505, + "endColumn": 268, + "endOffset": 3769 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2287, + "endColumn": 129, + "endOffset": 2412 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1319, + "endColumn": 129, + "endOffset": 1444 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2417, + "endColumn": 191, + "endOffset": 2604 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1123, + "endColumn": 195, + "endOffset": 1314 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2609, + "endColumn": 128, + "endOffset": 2733 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 994, + "endColumn": 128, + "endOffset": 1118 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2738, + "endColumn": 127, + "endOffset": 2861 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 866, + "endColumn": 127, + "endOffset": 989 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2866, + "endColumn": 212, + "endOffset": 3074 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 432, + "endColumn": 216, + "endOffset": 644 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3079, + "endColumn": 212, + "endOffset": 3287 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 649, + "endColumn": 216, + "endOffset": 861 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3292, + "endColumn": 126, + "endOffset": 3414 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 305, + "endColumn": 126, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3419, + "endColumn": 173, + "endOffset": 3588 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2751, + "endColumn": 173, + "endOffset": 2920 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3593, + "endColumn": 118, + "endOffset": 3707 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2632, + "endColumn": 118, + "endOffset": 2746 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3712, + "endColumn": 188, + "endOffset": 3896 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2443, + "endColumn": 188, + "endOffset": 2627 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3901, + "endColumn": 118, + "endOffset": 4015 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2324, + "endColumn": 118, + "endOffset": 2438 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4020, + "endColumn": 134, + "endOffset": 4150 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 134, + "endOffset": 300 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4155, + "endColumn": 166, + "endOffset": 4317 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4205, + "endColumn": 166, + "endOffset": 4367 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4322, + "endColumn": 127, + "endOffset": 4445 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4077, + "endColumn": 127, + "endOffset": 4200 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4450, + "endColumn": 177, + "endOffset": 4623 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3899, + "endColumn": 177, + "endOffset": 4072 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4628, + "endColumn": 124, + "endOffset": 4748 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3774, + "endColumn": 124, + "endOffset": 3894 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4753, + "endColumn": 245, + "endOffset": 4994 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-da\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 249, + "endOffset": 415 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4999, + "endColumn": 247, + "endOffset": 5242 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3050, + "endColumn": 251, + "endOffset": 3297 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5247, + "endColumn": 124, + "endOffset": 5367 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2925, + "endColumn": 124, + "endOffset": 3045 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5372, + "endColumn": 107, + "endOffset": 5475 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3302, + "endColumn": 107, + "endOffset": 3405 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5480, + "endColumn": 192, + "endOffset": 5668 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1578, + "endColumn": 196, + "endOffset": 1770 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5673, + "endColumn": 128, + "endOffset": 5797 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1449, + "endColumn": 128, + "endOffset": 1573 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5802, + "endColumn": 203, + "endOffset": 6001 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2116, + "endColumn": 207, + "endOffset": 2319 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6006, + "endColumn": 132, + "endOffset": 6134 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1983, + "endColumn": 132, + "endOffset": 2111 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6139, + "endColumn": 207, + "endOffset": 6342 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1775, + "endColumn": 207, + "endOffset": 1978 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6347, + "endColumn": 94, + "endOffset": 6437 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3410, + "endColumn": 94, + "endOffset": 3500 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6442, + "endColumn": 91, + "endOffset": 6529 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4372, + "endColumn": 91, + "endOffset": 4459 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6534, + "endColumn": 107, + "endOffset": 6637 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-da\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4464, + "endColumn": 107, + "endOffset": 4567 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6642, + "endColumn": 104, + "endOffset": 6742 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-da\\values-da.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 104, + "endOffset": 378 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6747, + "endColumn": 113, + "endOffset": 6856 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-da\\values-da.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 383, + "endColumn": 113, + "endOffset": 492 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6861, + "endColumn": 116, + "endOffset": 6973 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-da\\values-da.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 497, + "endColumn": 116, + "endOffset": 609 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6978, + "endColumn": 113, + "endOffset": 7087 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-da\\values-da.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 614, + "endColumn": 113, + "endOffset": 723 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7092, + "endColumn": 139, + "endOffset": 7227 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-da\\values-da.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 728, + "endColumn": 139, + "endOffset": 863 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7232, + "endColumn": 102, + "endOffset": 7330 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-da\\values-da.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 868, + "endColumn": 102, + "endOffset": 966 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7335, + "endColumn": 95, + "endOffset": 7426 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-da\\values-da.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 971, + "endColumn": 95, + "endOffset": 1062 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7431, + "endColumn": 121, + "endOffset": 7548 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-da\\values-da.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1067, + "endColumn": 121, + "endOffset": 1184 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7553, + "endColumn": 106, + "endOffset": 7655 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-da\\values-da.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1189, + "endColumn": 106, + "endOffset": 1291 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7660, + "endColumn": 85, + "endOffset": 7741 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-da\\values-da.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1296, + "endColumn": 85, + "endOffset": 1377 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7746, + "endColumn": 93, + "endOffset": 7835 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-da\\values-da.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1382, + "endColumn": 93, + "endOffset": 1471 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7840, + "endColumn": 101, + "endOffset": 7937 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-da\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 323, + "endColumn": 101, + "endOffset": 420 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7942, + "endColumn": 92, + "endOffset": 8030 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-da\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 92, + "endOffset": 318 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8035, + "endColumn": 100, + "endOffset": 8131 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-da\\values-da.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2146, + "endColumn": 100, + "endOffset": 2242 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8136, + "endColumn": 103, + "endOffset": 8235 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-da\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 103, + "endOffset": 329 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-de.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-de.json new file mode 100644 index 0000000..518bb90 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-de.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-de\\values-de.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 104, + "endOffset": 205 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 104, + "endOffset": 329 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 210, + "endColumn": 107, + "endOffset": 313 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 334, + "endColumn": 107, + "endOffset": 437 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 318, + "endColumn": 122, + "endOffset": 436 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 442, + "endColumn": 122, + "endOffset": 560 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 441, + "endColumn": 97, + "endOffset": 534 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 565, + "endColumn": 97, + "endOffset": 658 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 539, + "endColumn": 111, + "endOffset": 646 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 663, + "endColumn": 111, + "endOffset": 770 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 651, + "endColumn": 85, + "endOffset": 732 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 775, + "endColumn": 85, + "endOffset": 856 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 737, + "endColumn": 104, + "endOffset": 837 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 861, + "endColumn": 104, + "endOffset": 961 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 842, + "endColumn": 114, + "endOffset": 952 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 966, + "endColumn": 114, + "endOffset": 1076 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 957, + "endColumn": 76, + "endOffset": 1029 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1081, + "endColumn": 76, + "endOffset": 1153 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1034, + "endColumn": 75, + "endOffset": 1105 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1158, + "endColumn": 75, + "endOffset": 1229 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1110, + "endColumn": 81, + "endOffset": 1187 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1234, + "endColumn": 81, + "endOffset": 1311 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1192, + "endColumn": 110, + "endOffset": 1298 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1316, + "endColumn": 110, + "endOffset": 1422 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1303, + "endColumn": 102, + "endOffset": 1401 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1427, + "endColumn": 102, + "endOffset": 1525 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1406, + "endColumn": 98, + "endOffset": 1500 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1530, + "endColumn": 98, + "endOffset": 1624 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1505, + "endColumn": 110, + "endOffset": 1611 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1629, + "endColumn": 110, + "endOffset": 1735 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1616, + "endColumn": 101, + "endOffset": 1713 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1740, + "endColumn": 101, + "endOffset": 1837 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1718, + "endColumn": 106, + "endOffset": 1820 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1842, + "endColumn": 106, + "endOffset": 1944 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1825, + "endColumn": 121, + "endOffset": 1942 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1949, + "endColumn": 121, + "endOffset": 2066 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1947, + "endColumn": 101, + "endOffset": 2044 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2071, + "endColumn": 101, + "endOffset": 2168 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2049, + "endColumn": 304, + "endOffset": 2349 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3760, + "endColumn": 308, + "endOffset": 4064 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2354, + "endColumn": 130, + "endOffset": 2480 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1408, + "endColumn": 130, + "endOffset": 1534 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2485, + "endColumn": 195, + "endOffset": 2676 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1208, + "endColumn": 199, + "endOffset": 1403 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2681, + "endColumn": 129, + "endOffset": 2806 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1078, + "endColumn": 129, + "endOffset": 1203 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2811, + "endColumn": 133, + "endOffset": 2940 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 944, + "endColumn": 133, + "endOffset": 1073 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2945, + "endColumn": 242, + "endOffset": 3183 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 453, + "endColumn": 246, + "endOffset": 695 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3188, + "endColumn": 239, + "endOffset": 3423 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 700, + "endColumn": 243, + "endOffset": 939 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3428, + "endColumn": 132, + "endOffset": 3556 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 320, + "endColumn": 132, + "endOffset": 448 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3561, + "endColumn": 205, + "endOffset": 3762 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2905, + "endColumn": 205, + "endOffset": 3106 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3767, + "endColumn": 119, + "endOffset": 3882 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2785, + "endColumn": 119, + "endOffset": 2900 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3887, + "endColumn": 204, + "endOffset": 4087 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2580, + "endColumn": 204, + "endOffset": 2780 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4092, + "endColumn": 120, + "endOffset": 4208 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2459, + "endColumn": 120, + "endOffset": 2575 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4213, + "endColumn": 149, + "endOffset": 4358 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 149, + "endOffset": 315 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4363, + "endColumn": 185, + "endOffset": 4544 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4522, + "endColumn": 185, + "endOffset": 4703 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4549, + "endColumn": 133, + "endOffset": 4678 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4388, + "endColumn": 133, + "endOffset": 4517 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4683, + "endColumn": 186, + "endOffset": 4865 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4201, + "endColumn": 186, + "endOffset": 4383 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4870, + "endColumn": 131, + "endOffset": 4997 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 4069, + "endColumn": 131, + "endOffset": 4196 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 5002, + "endColumn": 247, + "endOffset": 5245 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-de\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 251, + "endOffset": 417 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5250, + "endColumn": 307, + "endOffset": 5553 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3234, + "endColumn": 311, + "endOffset": 3541 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5558, + "endColumn": 122, + "endOffset": 5676 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 3111, + "endColumn": 122, + "endOffset": 3229 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5681, + "endColumn": 113, + "endOffset": 5790 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3546, + "endColumn": 113, + "endOffset": 3655 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5795, + "endColumn": 210, + "endOffset": 6001 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1672, + "endColumn": 214, + "endOffset": 1882 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 6006, + "endColumn": 132, + "endOffset": 6134 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1539, + "endColumn": 132, + "endOffset": 1667 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6139, + "endColumn": 220, + "endOffset": 6355 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2234, + "endColumn": 224, + "endOffset": 2454 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6360, + "endColumn": 140, + "endOffset": 6496 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2093, + "endColumn": 140, + "endOffset": 2229 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6501, + "endColumn": 205, + "endOffset": 6702 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1887, + "endColumn": 205, + "endOffset": 2088 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6707, + "endColumn": 99, + "endOffset": 6802 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3660, + "endColumn": 99, + "endOffset": 3755 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6807, + "endColumn": 92, + "endOffset": 6895 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4708, + "endColumn": 92, + "endOffset": 4796 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6900, + "endColumn": 109, + "endOffset": 7005 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-de\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4801, + "endColumn": 109, + "endOffset": 4906 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 7010, + "endColumn": 110, + "endOffset": 7116 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-de\\values-de.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 110, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 7121, + "endColumn": 113, + "endOffset": 7230 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-de\\values-de.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 113, + "endOffset": 498 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7235, + "endColumn": 106, + "endOffset": 7337 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-de\\values-de.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 106, + "endOffset": 605 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7342, + "endColumn": 113, + "endOffset": 7451 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-de\\values-de.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 610, + "endColumn": 113, + "endOffset": 719 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7456, + "endColumn": 131, + "endOffset": 7583 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-de\\values-de.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 724, + "endColumn": 131, + "endOffset": 851 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7588, + "endColumn": 95, + "endOffset": 7679 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-de\\values-de.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 856, + "endColumn": 95, + "endOffset": 947 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7684, + "endColumn": 99, + "endOffset": 7779 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-de\\values-de.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 952, + "endColumn": 99, + "endOffset": 1047 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7784, + "endColumn": 124, + "endOffset": 7904 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-de\\values-de.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1052, + "endColumn": 124, + "endOffset": 1172 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7909, + "endColumn": 108, + "endOffset": 8013 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-de\\values-de.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1177, + "endColumn": 108, + "endOffset": 1281 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 8018, + "endColumn": 85, + "endOffset": 8099 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-de\\values-de.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1286, + "endColumn": 85, + "endOffset": 1367 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 8104, + "endColumn": 92, + "endOffset": 8192 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-de\\values-de.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1372, + "endColumn": 92, + "endOffset": 1460 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8197, + "endColumn": 108, + "endOffset": 8301 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-de\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 108, + "endOffset": 429 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8306, + "endColumn": 94, + "endOffset": 8396 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-de\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8401, + "endColumn": 100, + "endOffset": 8497 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-de\\values-de.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2173, + "endColumn": 100, + "endOffset": 2269 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8502, + "endColumn": 109, + "endOffset": 8607 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-de\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 109, + "endOffset": 335 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-el.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-el.json new file mode 100644 index 0000000..8709c81 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-el.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-el\\values-el.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 117, + "endOffset": 218 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 117, + "endOffset": 342 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 223, + "endColumn": 107, + "endOffset": 326 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 347, + "endColumn": 107, + "endOffset": 450 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 331, + "endColumn": 122, + "endOffset": 449 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 455, + "endColumn": 122, + "endOffset": 573 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 454, + "endColumn": 110, + "endOffset": 560 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 110, + "endOffset": 684 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 565, + "endColumn": 116, + "endOffset": 677 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 689, + "endColumn": 116, + "endOffset": 801 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 682, + "endColumn": 84, + "endOffset": 762 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 806, + "endColumn": 84, + "endOffset": 886 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 767, + "endColumn": 104, + "endOffset": 867 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 891, + "endColumn": 104, + "endOffset": 991 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 872, + "endColumn": 125, + "endOffset": 993 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 996, + "endColumn": 125, + "endOffset": 1117 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 998, + "endColumn": 87, + "endOffset": 1081 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 87, + "endOffset": 1205 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1086, + "endColumn": 85, + "endOffset": 1167 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1210, + "endColumn": 85, + "endOffset": 1291 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1172, + "endColumn": 84, + "endOffset": 1252 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1296, + "endColumn": 84, + "endOffset": 1376 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1257, + "endColumn": 110, + "endOffset": 1363 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1381, + "endColumn": 110, + "endOffset": 1487 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1368, + "endColumn": 109, + "endOffset": 1473 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1492, + "endColumn": 109, + "endOffset": 1597 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1478, + "endColumn": 101, + "endOffset": 1575 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1602, + "endColumn": 101, + "endOffset": 1699 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1580, + "endColumn": 110, + "endOffset": 1686 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1704, + "endColumn": 110, + "endOffset": 1810 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1691, + "endColumn": 108, + "endOffset": 1795 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1815, + "endColumn": 108, + "endOffset": 1919 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1800, + "endColumn": 107, + "endOffset": 1903 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1924, + "endColumn": 107, + "endOffset": 2027 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1908, + "endColumn": 122, + "endOffset": 2026 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2032, + "endColumn": 122, + "endOffset": 2150 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2031, + "endColumn": 99, + "endOffset": 2126 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2155, + "endColumn": 99, + "endOffset": 2250 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2131, + "endColumn": 293, + "endOffset": 2420 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3683, + "endColumn": 297, + "endOffset": 3976 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2425, + "endColumn": 134, + "endOffset": 2555 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1403, + "endColumn": 134, + "endOffset": 1533 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2560, + "endColumn": 217, + "endOffset": 2773 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1181, + "endColumn": 221, + "endOffset": 1398 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2778, + "endColumn": 133, + "endOffset": 2907 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1047, + "endColumn": 133, + "endOffset": 1176 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2912, + "endColumn": 127, + "endOffset": 3035 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 919, + "endColumn": 127, + "endOffset": 1042 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3040, + "endColumn": 239, + "endOffset": 3275 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 432, + "endColumn": 243, + "endOffset": 671 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3280, + "endColumn": 238, + "endOffset": 3514 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 676, + "endColumn": 242, + "endOffset": 914 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3519, + "endColumn": 126, + "endOffset": 3641 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 305, + "endColumn": 126, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3646, + "endColumn": 205, + "endOffset": 3847 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2858, + "endColumn": 205, + "endOffset": 3059 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3852, + "endColumn": 127, + "endOffset": 3975 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2730, + "endColumn": 127, + "endOffset": 2853 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3980, + "endColumn": 181, + "endOffset": 4157 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2548, + "endColumn": 181, + "endOffset": 2725 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4162, + "endColumn": 120, + "endOffset": 4278 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2427, + "endColumn": 120, + "endOffset": 2543 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4283, + "endColumn": 134, + "endOffset": 4413 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 134, + "endOffset": 300 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4418, + "endColumn": 194, + "endOffset": 4608 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4443, + "endColumn": 194, + "endOffset": 4633 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4613, + "endColumn": 141, + "endOffset": 4750 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4301, + "endColumn": 141, + "endOffset": 4438 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4755, + "endColumn": 194, + "endOffset": 4945 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4106, + "endColumn": 194, + "endOffset": 4296 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4950, + "endColumn": 124, + "endOffset": 5070 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3981, + "endColumn": 124, + "endOffset": 4101 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 5075, + "endColumn": 298, + "endOffset": 5369 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-el\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 302, + "endOffset": 468 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5374, + "endColumn": 281, + "endOffset": 5651 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3189, + "endColumn": 285, + "endOffset": 3470 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5656, + "endColumn": 124, + "endOffset": 5776 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 3064, + "endColumn": 124, + "endOffset": 3184 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5781, + "endColumn": 109, + "endOffset": 5886 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3475, + "endColumn": 109, + "endOffset": 3580 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5891, + "endColumn": 200, + "endOffset": 6087 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1669, + "endColumn": 204, + "endOffset": 1869 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 6092, + "endColumn": 130, + "endOffset": 6218 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1538, + "endColumn": 130, + "endOffset": 1664 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6223, + "endColumn": 236, + "endOffset": 6455 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2186, + "endColumn": 240, + "endOffset": 2422 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6460, + "endColumn": 136, + "endOffset": 6592 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2049, + "endColumn": 136, + "endOffset": 2181 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6597, + "endColumn": 174, + "endOffset": 6767 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 174, + "endOffset": 2044 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6772, + "endColumn": 97, + "endOffset": 6865 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3585, + "endColumn": 97, + "endOffset": 3678 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6870, + "endColumn": 91, + "endOffset": 6957 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4638, + "endColumn": 91, + "endOffset": 4725 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6962, + "endColumn": 112, + "endOffset": 7070 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-el\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4730, + "endColumn": 112, + "endOffset": 4838 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 7075, + "endColumn": 108, + "endOffset": 7179 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-el\\values-el.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 108, + "endOffset": 382 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 7184, + "endColumn": 110, + "endOffset": 7290 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-el\\values-el.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 387, + "endColumn": 110, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7295, + "endColumn": 108, + "endOffset": 7399 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-el\\values-el.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 108, + "endOffset": 602 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7404, + "endColumn": 104, + "endOffset": 7504 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-el\\values-el.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 607, + "endColumn": 104, + "endOffset": 707 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7509, + "endColumn": 137, + "endOffset": 7642 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-el\\values-el.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 712, + "endColumn": 137, + "endOffset": 845 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7647, + "endColumn": 95, + "endOffset": 7738 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-el\\values-el.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 850, + "endColumn": 95, + "endOffset": 941 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7743, + "endColumn": 100, + "endOffset": 7839 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-el\\values-el.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 946, + "endColumn": 100, + "endOffset": 1042 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7844, + "endColumn": 123, + "endOffset": 7963 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-el\\values-el.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1047, + "endColumn": 123, + "endOffset": 1166 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7968, + "endColumn": 106, + "endOffset": 8070 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-el\\values-el.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1171, + "endColumn": 106, + "endOffset": 1273 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 8075, + "endColumn": 86, + "endOffset": 8157 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-el\\values-el.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 86, + "endOffset": 1360 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 8162, + "endColumn": 94, + "endOffset": 8252 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-el\\values-el.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1365, + "endColumn": 94, + "endOffset": 1455 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8257, + "endColumn": 110, + "endOffset": 8363 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-el\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 110, + "endOffset": 435 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8368, + "endColumn": 98, + "endOffset": 8462 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-el\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 98, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8467, + "endColumn": 100, + "endOffset": 8563 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-el\\values-el.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2255, + "endColumn": 100, + "endOffset": 2351 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8568, + "endColumn": 106, + "endOffset": 8670 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-el\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 106, + "endOffset": 332 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-en-rAU.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-en-rAU.json new file mode 100644 index 0000000..28ca57f --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-en-rAU.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-en-rAU\\values-en-rAU.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 103, + "endOffset": 204 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 103, + "endOffset": 332 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 209, + "endColumn": 107, + "endOffset": 312 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 337, + "endColumn": 107, + "endOffset": 440 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 317, + "endColumn": 122, + "endOffset": 435 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 445, + "endColumn": 122, + "endOffset": 563 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 440, + "endColumn": 99, + "endOffset": 535 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 568, + "endColumn": 99, + "endOffset": 663 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 540, + "endColumn": 107, + "endOffset": 643 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 668, + "endColumn": 107, + "endOffset": 771 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 648, + "endColumn": 83, + "endOffset": 727 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 776, + "endColumn": 83, + "endOffset": 855 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 732, + "endColumn": 99, + "endOffset": 827 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 860, + "endColumn": 99, + "endOffset": 955 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 832, + "endColumn": 114, + "endOffset": 942 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 960, + "endColumn": 114, + "endOffset": 1070 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 947, + "endColumn": 76, + "endOffset": 1019 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1075, + "endColumn": 76, + "endOffset": 1147 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1024, + "endColumn": 75, + "endOffset": 1095 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1152, + "endColumn": 75, + "endOffset": 1223 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1100, + "endColumn": 81, + "endOffset": 1177 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1228, + "endColumn": 81, + "endOffset": 1305 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1182, + "endColumn": 102, + "endOffset": 1280 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1310, + "endColumn": 102, + "endOffset": 1408 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1285, + "endColumn": 103, + "endOffset": 1384 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1413, + "endColumn": 103, + "endOffset": 1512 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1389, + "endColumn": 98, + "endOffset": 1483 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1517, + "endColumn": 98, + "endOffset": 1611 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1488, + "endColumn": 104, + "endOffset": 1588 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1616, + "endColumn": 104, + "endOffset": 1716 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1593, + "endColumn": 102, + "endOffset": 1691 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1721, + "endColumn": 102, + "endOffset": 1819 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1696, + "endColumn": 103, + "endOffset": 1795 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1824, + "endColumn": 103, + "endOffset": 1923 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1800, + "endColumn": 118, + "endOffset": 1914 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 118, + "endOffset": 2042 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1919, + "endColumn": 99, + "endOffset": 2014 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2047, + "endColumn": 99, + "endOffset": 2142 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2019, + "endColumn": 261, + "endOffset": 2276 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3456, + "endColumn": 265, + "endOffset": 3717 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2281, + "endColumn": 127, + "endOffset": 2404 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1309, + "endColumn": 127, + "endOffset": 1432 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2409, + "endColumn": 183, + "endOffset": 2588 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1121, + "endColumn": 187, + "endOffset": 1304 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2593, + "endColumn": 126, + "endOffset": 2715 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 994, + "endColumn": 126, + "endOffset": 1116 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2720, + "endColumn": 125, + "endOffset": 2841 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 868, + "endColumn": 125, + "endOffset": 989 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2846, + "endColumn": 214, + "endOffset": 3056 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 428, + "endColumn": 218, + "endOffset": 642 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3061, + "endColumn": 216, + "endOffset": 3273 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 647, + "endColumn": 220, + "endOffset": 863 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3278, + "endColumn": 124, + "endOffset": 3398 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 303, + "endColumn": 124, + "endOffset": 423 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3403, + "endColumn": 194, + "endOffset": 3593 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2685, + "endColumn": 194, + "endOffset": 2875 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3598, + "endColumn": 120, + "endOffset": 3714 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2564, + "endColumn": 120, + "endOffset": 2680 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3719, + "endColumn": 170, + "endOffset": 3885 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2393, + "endColumn": 170, + "endOffset": 2559 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3890, + "endColumn": 119, + "endOffset": 4005 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2273, + "endColumn": 119, + "endOffset": 2388 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4010, + "endColumn": 132, + "endOffset": 4138 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 132, + "endOffset": 298 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4143, + "endColumn": 172, + "endOffset": 4311 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4156, + "endColumn": 172, + "endOffset": 4324 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4316, + "endColumn": 129, + "endOffset": 4441 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4026, + "endColumn": 129, + "endOffset": 4151 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4446, + "endColumn": 181, + "endOffset": 4623 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3844, + "endColumn": 181, + "endOffset": 4021 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4628, + "endColumn": 121, + "endOffset": 4745 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3722, + "endColumn": 121, + "endOffset": 3839 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4750, + "endColumn": 248, + "endOffset": 4994 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-en-rAU\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 252, + "endOffset": 418 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4999, + "endColumn": 248, + "endOffset": 5243 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3004, + "endColumn": 252, + "endOffset": 3252 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5248, + "endColumn": 123, + "endOffset": 5367 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2880, + "endColumn": 123, + "endOffset": 2999 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5372, + "endColumn": 106, + "endOffset": 5474 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3257, + "endColumn": 106, + "endOffset": 3359 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5479, + "endColumn": 182, + "endOffset": 5657 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1564, + "endColumn": 186, + "endOffset": 1746 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5662, + "endColumn": 126, + "endOffset": 5784 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 126, + "endOffset": 1559 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5789, + "endColumn": 204, + "endOffset": 5989 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2064, + "endColumn": 208, + "endOffset": 2268 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5994, + "endColumn": 134, + "endOffset": 6124 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1929, + "endColumn": 134, + "endOffset": 2059 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6129, + "endColumn": 177, + "endOffset": 6302 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1751, + "endColumn": 177, + "endOffset": 1924 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6307, + "endColumn": 91, + "endOffset": 6394 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3364, + "endColumn": 91, + "endOffset": 3451 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6399, + "endColumn": 91, + "endOffset": 6486 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4329, + "endColumn": 91, + "endOffset": 4416 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6491, + "endColumn": 108, + "endOffset": 6595 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rAU\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4421, + "endColumn": 108, + "endOffset": 4525 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6600, + "endColumn": 104, + "endOffset": 6700 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 104, + "endOffset": 382 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6705, + "endColumn": 113, + "endOffset": 6814 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 387, + "endColumn": 113, + "endOffset": 496 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6819, + "endColumn": 104, + "endOffset": 6919 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 501, + "endColumn": 104, + "endOffset": 601 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6924, + "endColumn": 104, + "endOffset": 7024 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 104, + "endOffset": 706 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7029, + "endColumn": 119, + "endOffset": 7144 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 711, + "endColumn": 119, + "endOffset": 826 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7149, + "endColumn": 95, + "endOffset": 7240 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 831, + "endColumn": 95, + "endOffset": 922 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7245, + "endColumn": 93, + "endOffset": 7334 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 927, + "endColumn": 93, + "endOffset": 1016 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7339, + "endColumn": 118, + "endOffset": 7453 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1021, + "endColumn": 118, + "endOffset": 1135 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7458, + "endColumn": 101, + "endOffset": 7555 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1140, + "endColumn": 101, + "endOffset": 1237 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7560, + "endColumn": 85, + "endOffset": 7641 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1242, + "endColumn": 85, + "endOffset": 1323 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7646, + "endColumn": 93, + "endOffset": 7735 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 93, + "endOffset": 1417 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7740, + "endColumn": 102, + "endOffset": 7838 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-en-rAU\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 326, + "endColumn": 102, + "endOffset": 424 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7843, + "endColumn": 95, + "endOffset": 7934 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-en-rAU\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 95, + "endOffset": 321 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 7939, + "endColumn": 100, + "endOffset": 8035 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2147, + "endColumn": 100, + "endOffset": 2243 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8040, + "endColumn": 104, + "endOffset": 8140 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-en-rAU\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 104, + "endOffset": 330 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-en-rGB.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-en-rGB.json new file mode 100644 index 0000000..f8d2eba --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-en-rGB.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-en-rGB\\values-en-rGB.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 103, + "endOffset": 204 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 103, + "endOffset": 332 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 209, + "endColumn": 107, + "endOffset": 312 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 337, + "endColumn": 107, + "endOffset": 440 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 317, + "endColumn": 122, + "endOffset": 435 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 445, + "endColumn": 122, + "endOffset": 563 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 440, + "endColumn": 99, + "endOffset": 535 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 568, + "endColumn": 99, + "endOffset": 663 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 540, + "endColumn": 107, + "endOffset": 643 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 668, + "endColumn": 107, + "endOffset": 771 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 648, + "endColumn": 83, + "endOffset": 727 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 776, + "endColumn": 83, + "endOffset": 855 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 732, + "endColumn": 99, + "endOffset": 827 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 860, + "endColumn": 99, + "endOffset": 955 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 832, + "endColumn": 114, + "endOffset": 942 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 960, + "endColumn": 114, + "endOffset": 1070 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 947, + "endColumn": 76, + "endOffset": 1019 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1075, + "endColumn": 76, + "endOffset": 1147 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1024, + "endColumn": 75, + "endOffset": 1095 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1152, + "endColumn": 75, + "endOffset": 1223 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1100, + "endColumn": 81, + "endOffset": 1177 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1228, + "endColumn": 81, + "endOffset": 1305 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1182, + "endColumn": 102, + "endOffset": 1280 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1310, + "endColumn": 102, + "endOffset": 1408 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1285, + "endColumn": 103, + "endOffset": 1384 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1413, + "endColumn": 103, + "endOffset": 1512 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1389, + "endColumn": 98, + "endOffset": 1483 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1517, + "endColumn": 98, + "endOffset": 1611 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1488, + "endColumn": 104, + "endOffset": 1588 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1616, + "endColumn": 104, + "endOffset": 1716 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1593, + "endColumn": 102, + "endOffset": 1691 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1721, + "endColumn": 102, + "endOffset": 1819 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1696, + "endColumn": 103, + "endOffset": 1795 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1824, + "endColumn": 103, + "endOffset": 1923 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1800, + "endColumn": 118, + "endOffset": 1914 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 118, + "endOffset": 2042 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1919, + "endColumn": 99, + "endOffset": 2014 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2047, + "endColumn": 99, + "endOffset": 2142 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2019, + "endColumn": 261, + "endOffset": 2276 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3456, + "endColumn": 265, + "endOffset": 3717 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2281, + "endColumn": 127, + "endOffset": 2404 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1309, + "endColumn": 127, + "endOffset": 1432 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2409, + "endColumn": 183, + "endOffset": 2588 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1121, + "endColumn": 187, + "endOffset": 1304 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2593, + "endColumn": 126, + "endOffset": 2715 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 994, + "endColumn": 126, + "endOffset": 1116 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2720, + "endColumn": 125, + "endOffset": 2841 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 868, + "endColumn": 125, + "endOffset": 989 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2846, + "endColumn": 214, + "endOffset": 3056 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 428, + "endColumn": 218, + "endOffset": 642 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3061, + "endColumn": 216, + "endOffset": 3273 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 647, + "endColumn": 220, + "endOffset": 863 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3278, + "endColumn": 124, + "endOffset": 3398 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 303, + "endColumn": 124, + "endOffset": 423 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3403, + "endColumn": 194, + "endOffset": 3593 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2685, + "endColumn": 194, + "endOffset": 2875 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3598, + "endColumn": 120, + "endOffset": 3714 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2564, + "endColumn": 120, + "endOffset": 2680 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3719, + "endColumn": 170, + "endOffset": 3885 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2393, + "endColumn": 170, + "endOffset": 2559 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3890, + "endColumn": 119, + "endOffset": 4005 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2273, + "endColumn": 119, + "endOffset": 2388 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4010, + "endColumn": 132, + "endOffset": 4138 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 132, + "endOffset": 298 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4143, + "endColumn": 172, + "endOffset": 4311 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4156, + "endColumn": 172, + "endOffset": 4324 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4316, + "endColumn": 129, + "endOffset": 4441 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4026, + "endColumn": 129, + "endOffset": 4151 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4446, + "endColumn": 181, + "endOffset": 4623 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3844, + "endColumn": 181, + "endOffset": 4021 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4628, + "endColumn": 121, + "endOffset": 4745 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3722, + "endColumn": 121, + "endOffset": 3839 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4750, + "endColumn": 248, + "endOffset": 4994 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-en-rGB\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 252, + "endOffset": 418 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4999, + "endColumn": 248, + "endOffset": 5243 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3004, + "endColumn": 252, + "endOffset": 3252 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5248, + "endColumn": 123, + "endOffset": 5367 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2880, + "endColumn": 123, + "endOffset": 2999 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5372, + "endColumn": 106, + "endOffset": 5474 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3257, + "endColumn": 106, + "endOffset": 3359 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5479, + "endColumn": 182, + "endOffset": 5657 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1564, + "endColumn": 186, + "endOffset": 1746 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5662, + "endColumn": 126, + "endOffset": 5784 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 126, + "endOffset": 1559 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5789, + "endColumn": 204, + "endOffset": 5989 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2064, + "endColumn": 208, + "endOffset": 2268 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5994, + "endColumn": 134, + "endOffset": 6124 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1929, + "endColumn": 134, + "endOffset": 2059 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6129, + "endColumn": 177, + "endOffset": 6302 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1751, + "endColumn": 177, + "endOffset": 1924 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6307, + "endColumn": 91, + "endOffset": 6394 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3364, + "endColumn": 91, + "endOffset": 3451 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6399, + "endColumn": 91, + "endOffset": 6486 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4329, + "endColumn": 91, + "endOffset": 4416 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6491, + "endColumn": 108, + "endOffset": 6595 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rGB\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4421, + "endColumn": 108, + "endOffset": 4525 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6600, + "endColumn": 104, + "endOffset": 6700 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 104, + "endOffset": 382 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6705, + "endColumn": 113, + "endOffset": 6814 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 387, + "endColumn": 113, + "endOffset": 496 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6819, + "endColumn": 104, + "endOffset": 6919 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 501, + "endColumn": 104, + "endOffset": 601 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6924, + "endColumn": 104, + "endOffset": 7024 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 104, + "endOffset": 706 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7029, + "endColumn": 119, + "endOffset": 7144 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 711, + "endColumn": 119, + "endOffset": 826 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7149, + "endColumn": 95, + "endOffset": 7240 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 831, + "endColumn": 95, + "endOffset": 922 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7245, + "endColumn": 93, + "endOffset": 7334 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 927, + "endColumn": 93, + "endOffset": 1016 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7339, + "endColumn": 118, + "endOffset": 7453 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1021, + "endColumn": 118, + "endOffset": 1135 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7458, + "endColumn": 101, + "endOffset": 7555 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1140, + "endColumn": 101, + "endOffset": 1237 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7560, + "endColumn": 85, + "endOffset": 7641 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1242, + "endColumn": 85, + "endOffset": 1323 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7646, + "endColumn": 93, + "endOffset": 7735 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 93, + "endOffset": 1417 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7740, + "endColumn": 102, + "endOffset": 7838 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-en-rGB\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 326, + "endColumn": 102, + "endOffset": 424 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7843, + "endColumn": 95, + "endOffset": 7934 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-en-rGB\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 95, + "endOffset": 321 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 7939, + "endColumn": 100, + "endOffset": 8035 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2147, + "endColumn": 100, + "endOffset": 2243 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8040, + "endColumn": 104, + "endOffset": 8140 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-en-rGB\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 104, + "endOffset": 330 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-en-rIN.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-en-rIN.json new file mode 100644 index 0000000..c3facd5 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-en-rIN.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-en-rIN\\values-en-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 103, + "endOffset": 204 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 103, + "endOffset": 332 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 209, + "endColumn": 107, + "endOffset": 312 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 337, + "endColumn": 107, + "endOffset": 440 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 317, + "endColumn": 122, + "endOffset": 435 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 445, + "endColumn": 122, + "endOffset": 563 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 440, + "endColumn": 99, + "endOffset": 535 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 568, + "endColumn": 99, + "endOffset": 663 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 540, + "endColumn": 107, + "endOffset": 643 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 668, + "endColumn": 107, + "endOffset": 771 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 648, + "endColumn": 83, + "endOffset": 727 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 776, + "endColumn": 83, + "endOffset": 855 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 732, + "endColumn": 99, + "endOffset": 827 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 860, + "endColumn": 99, + "endOffset": 955 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 832, + "endColumn": 114, + "endOffset": 942 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 960, + "endColumn": 114, + "endOffset": 1070 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 947, + "endColumn": 76, + "endOffset": 1019 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1075, + "endColumn": 76, + "endOffset": 1147 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1024, + "endColumn": 75, + "endOffset": 1095 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1152, + "endColumn": 75, + "endOffset": 1223 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1100, + "endColumn": 81, + "endOffset": 1177 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1228, + "endColumn": 81, + "endOffset": 1305 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1182, + "endColumn": 102, + "endOffset": 1280 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1310, + "endColumn": 102, + "endOffset": 1408 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1285, + "endColumn": 103, + "endOffset": 1384 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1413, + "endColumn": 103, + "endOffset": 1512 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1389, + "endColumn": 98, + "endOffset": 1483 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1517, + "endColumn": 98, + "endOffset": 1611 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1488, + "endColumn": 104, + "endOffset": 1588 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1616, + "endColumn": 104, + "endOffset": 1716 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1593, + "endColumn": 102, + "endOffset": 1691 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1721, + "endColumn": 102, + "endOffset": 1819 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1696, + "endColumn": 103, + "endOffset": 1795 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1824, + "endColumn": 103, + "endOffset": 1923 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1800, + "endColumn": 118, + "endOffset": 1914 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 118, + "endOffset": 2042 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1919, + "endColumn": 99, + "endOffset": 2014 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2047, + "endColumn": 99, + "endOffset": 2142 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2019, + "endColumn": 261, + "endOffset": 2276 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3456, + "endColumn": 265, + "endOffset": 3717 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2281, + "endColumn": 127, + "endOffset": 2404 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1309, + "endColumn": 127, + "endOffset": 1432 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2409, + "endColumn": 183, + "endOffset": 2588 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1121, + "endColumn": 187, + "endOffset": 1304 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2593, + "endColumn": 126, + "endOffset": 2715 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 994, + "endColumn": 126, + "endOffset": 1116 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2720, + "endColumn": 125, + "endOffset": 2841 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 868, + "endColumn": 125, + "endOffset": 989 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2846, + "endColumn": 214, + "endOffset": 3056 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 428, + "endColumn": 218, + "endOffset": 642 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3061, + "endColumn": 216, + "endOffset": 3273 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 647, + "endColumn": 220, + "endOffset": 863 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3278, + "endColumn": 124, + "endOffset": 3398 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 303, + "endColumn": 124, + "endOffset": 423 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3403, + "endColumn": 194, + "endOffset": 3593 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2685, + "endColumn": 194, + "endOffset": 2875 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3598, + "endColumn": 120, + "endOffset": 3714 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2564, + "endColumn": 120, + "endOffset": 2680 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3719, + "endColumn": 170, + "endOffset": 3885 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2393, + "endColumn": 170, + "endOffset": 2559 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3890, + "endColumn": 119, + "endOffset": 4005 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2273, + "endColumn": 119, + "endOffset": 2388 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4010, + "endColumn": 132, + "endOffset": 4138 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 132, + "endOffset": 298 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4143, + "endColumn": 172, + "endOffset": 4311 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4156, + "endColumn": 172, + "endOffset": 4324 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4316, + "endColumn": 129, + "endOffset": 4441 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4026, + "endColumn": 129, + "endOffset": 4151 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4446, + "endColumn": 181, + "endOffset": 4623 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3844, + "endColumn": 181, + "endOffset": 4021 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4628, + "endColumn": 121, + "endOffset": 4745 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3722, + "endColumn": 121, + "endOffset": 3839 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4750, + "endColumn": 248, + "endOffset": 4994 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-en-rIN\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 252, + "endOffset": 418 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4999, + "endColumn": 248, + "endOffset": 5243 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3004, + "endColumn": 252, + "endOffset": 3252 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5248, + "endColumn": 123, + "endOffset": 5367 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2880, + "endColumn": 123, + "endOffset": 2999 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5372, + "endColumn": 106, + "endOffset": 5474 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3257, + "endColumn": 106, + "endOffset": 3359 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5479, + "endColumn": 182, + "endOffset": 5657 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1564, + "endColumn": 186, + "endOffset": 1746 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5662, + "endColumn": 126, + "endOffset": 5784 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 126, + "endOffset": 1559 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5789, + "endColumn": 204, + "endOffset": 5989 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2064, + "endColumn": 208, + "endOffset": 2268 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5994, + "endColumn": 134, + "endOffset": 6124 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1929, + "endColumn": 134, + "endOffset": 2059 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6129, + "endColumn": 177, + "endOffset": 6302 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1751, + "endColumn": 177, + "endOffset": 1924 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6307, + "endColumn": 91, + "endOffset": 6394 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3364, + "endColumn": 91, + "endOffset": 3451 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6399, + "endColumn": 91, + "endOffset": 6486 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4329, + "endColumn": 91, + "endOffset": 4416 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6491, + "endColumn": 108, + "endOffset": 6595 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-en-rIN\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4421, + "endColumn": 108, + "endOffset": 4525 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6600, + "endColumn": 104, + "endOffset": 6700 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 104, + "endOffset": 382 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6705, + "endColumn": 113, + "endOffset": 6814 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 387, + "endColumn": 113, + "endOffset": 496 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6819, + "endColumn": 104, + "endOffset": 6919 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 501, + "endColumn": 104, + "endOffset": 601 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6924, + "endColumn": 104, + "endOffset": 7024 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 104, + "endOffset": 706 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7029, + "endColumn": 119, + "endOffset": 7144 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 711, + "endColumn": 119, + "endOffset": 826 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7149, + "endColumn": 95, + "endOffset": 7240 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 831, + "endColumn": 95, + "endOffset": 922 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7245, + "endColumn": 93, + "endOffset": 7334 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 927, + "endColumn": 93, + "endOffset": 1016 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7339, + "endColumn": 118, + "endOffset": 7453 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1021, + "endColumn": 118, + "endOffset": 1135 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7458, + "endColumn": 101, + "endOffset": 7555 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1140, + "endColumn": 101, + "endOffset": 1237 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7560, + "endColumn": 85, + "endOffset": 7641 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1242, + "endColumn": 85, + "endOffset": 1323 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7646, + "endColumn": 93, + "endOffset": 7735 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 93, + "endOffset": 1417 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7740, + "endColumn": 102, + "endOffset": 7838 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-en-rIN\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 326, + "endColumn": 102, + "endOffset": 424 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7843, + "endColumn": 95, + "endOffset": 7934 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-en-rIN\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 95, + "endOffset": 321 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 7939, + "endColumn": 100, + "endOffset": 8035 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2147, + "endColumn": 100, + "endOffset": 2243 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8040, + "endColumn": 104, + "endOffset": 8140 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-en-rIN\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 104, + "endOffset": 330 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-es-rUS.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-es-rUS.json new file mode 100644 index 0000000..c362e75 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-es-rUS.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-es-rUS\\values-es-rUS.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 119, + "endOffset": 220 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 119, + "endOffset": 348 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 225, + "endColumn": 107, + "endOffset": 328 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 353, + "endColumn": 107, + "endOffset": 456 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 333, + "endColumn": 122, + "endOffset": 451 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 461, + "endColumn": 122, + "endOffset": 579 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 456, + "endColumn": 108, + "endOffset": 560 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 584, + "endColumn": 108, + "endOffset": 688 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 565, + "endColumn": 107, + "endOffset": 668 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 693, + "endColumn": 107, + "endOffset": 796 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 673, + "endColumn": 84, + "endOffset": 753 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 84, + "endOffset": 881 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 758, + "endColumn": 100, + "endOffset": 854 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 886, + "endColumn": 100, + "endOffset": 982 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 859, + "endColumn": 122, + "endOffset": 977 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 987, + "endColumn": 122, + "endOffset": 1105 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 982, + "endColumn": 83, + "endOffset": 1061 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1110, + "endColumn": 83, + "endOffset": 1189 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1066, + "endColumn": 80, + "endOffset": 1142 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1194, + "endColumn": 80, + "endOffset": 1270 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 81, + "endOffset": 1224 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1275, + "endColumn": 81, + "endOffset": 1352 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1229, + "endColumn": 111, + "endOffset": 1336 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1357, + "endColumn": 111, + "endOffset": 1464 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1341, + "endColumn": 111, + "endOffset": 1448 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1469, + "endColumn": 111, + "endOffset": 1576 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1453, + "endColumn": 100, + "endOffset": 1549 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1581, + "endColumn": 100, + "endOffset": 1677 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1554, + "endColumn": 107, + "endOffset": 1657 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1682, + "endColumn": 107, + "endOffset": 1785 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1662, + "endColumn": 106, + "endOffset": 1764 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 106, + "endOffset": 1892 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1769, + "endColumn": 106, + "endOffset": 1871 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1897, + "endColumn": 106, + "endOffset": 1999 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1876, + "endColumn": 121, + "endOffset": 1993 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2004, + "endColumn": 121, + "endOffset": 2121 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1998, + "endColumn": 99, + "endOffset": 2093 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2126, + "endColumn": 99, + "endOffset": 2221 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2098, + "endColumn": 276, + "endOffset": 2370 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3637, + "endColumn": 280, + "endOffset": 3913 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2375, + "endColumn": 134, + "endOffset": 2505 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1350, + "endColumn": 134, + "endOffset": 1480 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2510, + "endColumn": 197, + "endOffset": 2703 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1148, + "endColumn": 201, + "endOffset": 1345 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2708, + "endColumn": 133, + "endOffset": 2837 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 133, + "endOffset": 1143 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2842, + "endColumn": 133, + "endOffset": 2971 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 880, + "endColumn": 133, + "endOffset": 1009 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2976, + "endColumn": 214, + "endOffset": 3186 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 443, + "endColumn": 218, + "endOffset": 657 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3191, + "endColumn": 213, + "endOffset": 3400 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 662, + "endColumn": 217, + "endOffset": 875 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3405, + "endColumn": 132, + "endOffset": 3533 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 310, + "endColumn": 132, + "endOffset": 438 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3538, + "endColumn": 179, + "endOffset": 3713 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2844, + "endColumn": 179, + "endOffset": 3019 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3718, + "endColumn": 121, + "endOffset": 3835 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2722, + "endColumn": 121, + "endOffset": 2839 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3840, + "endColumn": 186, + "endOffset": 4022 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2535, + "endColumn": 186, + "endOffset": 2717 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4027, + "endColumn": 118, + "endOffset": 4141 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2416, + "endColumn": 118, + "endOffset": 2530 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4146, + "endColumn": 139, + "endOffset": 4281 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 139, + "endOffset": 305 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4286, + "endColumn": 173, + "endOffset": 4455 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4359, + "endColumn": 173, + "endOffset": 4528 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4460, + "endColumn": 129, + "endOffset": 4585 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4229, + "endColumn": 129, + "endOffset": 4354 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4590, + "endColumn": 186, + "endOffset": 4772 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4042, + "endColumn": 186, + "endOffset": 4224 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4777, + "endColumn": 123, + "endOffset": 4896 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3918, + "endColumn": 123, + "endOffset": 4037 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4901, + "endColumn": 258, + "endOffset": 5155 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-es-rUS\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 262, + "endOffset": 428 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5160, + "endColumn": 270, + "endOffset": 5426 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3152, + "endColumn": 274, + "endOffset": 3422 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5431, + "endColumn": 127, + "endOffset": 5554 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 3024, + "endColumn": 127, + "endOffset": 3147 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5559, + "endColumn": 110, + "endOffset": 5665 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3427, + "endColumn": 110, + "endOffset": 3533 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5670, + "endColumn": 200, + "endOffset": 5866 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1620, + "endColumn": 204, + "endOffset": 1820 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5871, + "endColumn": 134, + "endOffset": 6001 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1485, + "endColumn": 134, + "endOffset": 1615 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6006, + "endColumn": 235, + "endOffset": 6237 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2176, + "endColumn": 239, + "endOffset": 2411 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6242, + "endColumn": 142, + "endOffset": 6380 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2033, + "endColumn": 142, + "endOffset": 2171 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6385, + "endColumn": 207, + "endOffset": 6588 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1825, + "endColumn": 207, + "endOffset": 2028 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6593, + "endColumn": 98, + "endOffset": 6687 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3538, + "endColumn": 98, + "endOffset": 3632 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6692, + "endColumn": 91, + "endOffset": 6779 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4533, + "endColumn": 91, + "endOffset": 4620 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6784, + "endColumn": 107, + "endOffset": 6887 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es-rUS\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4625, + "endColumn": 107, + "endOffset": 4728 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6892, + "endColumn": 110, + "endOffset": 6998 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 110, + "endOffset": 388 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 7003, + "endColumn": 113, + "endOffset": 7112 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 113, + "endOffset": 502 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7117, + "endColumn": 110, + "endOffset": 7223 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 507, + "endColumn": 110, + "endOffset": 613 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7228, + "endColumn": 105, + "endOffset": 7329 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 618, + "endColumn": 105, + "endOffset": 719 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7334, + "endColumn": 131, + "endOffset": 7461 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 724, + "endColumn": 131, + "endOffset": 851 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7466, + "endColumn": 96, + "endOffset": 7558 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 856, + "endColumn": 96, + "endOffset": 948 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7563, + "endColumn": 99, + "endOffset": 7658 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 953, + "endColumn": 99, + "endOffset": 1048 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7663, + "endColumn": 125, + "endOffset": 7784 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1053, + "endColumn": 125, + "endOffset": 1174 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7789, + "endColumn": 108, + "endOffset": 7893 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1179, + "endColumn": 108, + "endOffset": 1283 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7898, + "endColumn": 86, + "endOffset": 7980 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1288, + "endColumn": 86, + "endOffset": 1370 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7985, + "endColumn": 98, + "endOffset": 8079 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1375, + "endColumn": 98, + "endOffset": 1469 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8084, + "endColumn": 105, + "endOffset": 8185 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-es-rUS\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 328, + "endColumn": 105, + "endOffset": 429 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8190, + "endColumn": 97, + "endOffset": 8283 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-es-rUS\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 97, + "endOffset": 323 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8288, + "endColumn": 100, + "endOffset": 8384 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2226, + "endColumn": 100, + "endOffset": 2322 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8389, + "endColumn": 107, + "endOffset": 8492 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-es-rUS\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 107, + "endOffset": 333 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-es.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-es.json new file mode 100644 index 0000000..96316e0 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-es.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-es\\values-es.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 116, + "endOffset": 217 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 116, + "endOffset": 341 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 222, + "endColumn": 107, + "endOffset": 325 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 346, + "endColumn": 107, + "endOffset": 449 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 330, + "endColumn": 122, + "endOffset": 448 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 454, + "endColumn": 122, + "endOffset": 572 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 453, + "endColumn": 112, + "endOffset": 561 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 577, + "endColumn": 112, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 566, + "endColumn": 107, + "endOffset": 669 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 107, + "endOffset": 793 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 674, + "endColumn": 84, + "endOffset": 754 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 84, + "endOffset": 878 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 759, + "endColumn": 100, + "endOffset": 855 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 883, + "endColumn": 100, + "endOffset": 979 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 860, + "endColumn": 127, + "endOffset": 983 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 984, + "endColumn": 127, + "endOffset": 1107 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 988, + "endColumn": 75, + "endOffset": 1059 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1112, + "endColumn": 75, + "endOffset": 1183 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1064, + "endColumn": 75, + "endOffset": 1135 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1188, + "endColumn": 75, + "endOffset": 1259 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1140, + "endColumn": 81, + "endOffset": 1217 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1264, + "endColumn": 81, + "endOffset": 1341 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1222, + "endColumn": 106, + "endOffset": 1324 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 106, + "endOffset": 1448 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1329, + "endColumn": 99, + "endOffset": 1424 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1453, + "endColumn": 99, + "endOffset": 1548 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1429, + "endColumn": 98, + "endOffset": 1523 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1553, + "endColumn": 98, + "endOffset": 1647 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1528, + "endColumn": 107, + "endOffset": 1631 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1652, + "endColumn": 107, + "endOffset": 1755 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1636, + "endColumn": 106, + "endOffset": 1738 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1760, + "endColumn": 106, + "endOffset": 1862 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1743, + "endColumn": 106, + "endOffset": 1845 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1867, + "endColumn": 106, + "endOffset": 1969 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1850, + "endColumn": 121, + "endOffset": 1967 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1974, + "endColumn": 121, + "endOffset": 2091 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1972, + "endColumn": 99, + "endOffset": 2067 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2096, + "endColumn": 99, + "endOffset": 2191 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2072, + "endColumn": 288, + "endOffset": 2356 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3675, + "endColumn": 292, + "endOffset": 3963 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2361, + "endColumn": 138, + "endOffset": 2495 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1386, + "endColumn": 138, + "endOffset": 1520 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2500, + "endColumn": 198, + "endOffset": 2694 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1183, + "endColumn": 202, + "endOffset": 1381 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2699, + "endColumn": 136, + "endOffset": 2831 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 136, + "endOffset": 1178 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2836, + "endColumn": 139, + "endOffset": 2971 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 906, + "endColumn": 139, + "endOffset": 1041 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2976, + "endColumn": 222, + "endOffset": 3194 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 453, + "endColumn": 226, + "endOffset": 675 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3199, + "endColumn": 221, + "endOffset": 3416 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 680, + "endColumn": 225, + "endOffset": 901 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3421, + "endColumn": 138, + "endOffset": 3555 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 314, + "endColumn": 138, + "endOffset": 448 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3560, + "endColumn": 184, + "endOffset": 3740 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2870, + "endColumn": 184, + "endOffset": 3050 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3745, + "endColumn": 121, + "endOffset": 3862 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2748, + "endColumn": 121, + "endOffset": 2865 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3867, + "endColumn": 197, + "endOffset": 4060 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2550, + "endColumn": 197, + "endOffset": 2743 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4065, + "endColumn": 118, + "endOffset": 4179 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2431, + "endColumn": 118, + "endOffset": 2545 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4184, + "endColumn": 143, + "endOffset": 4323 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 143, + "endOffset": 309 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4328, + "endColumn": 175, + "endOffset": 4499 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4408, + "endColumn": 175, + "endOffset": 4579 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4504, + "endColumn": 129, + "endOffset": 4629 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4278, + "endColumn": 129, + "endOffset": 4403 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4634, + "endColumn": 178, + "endOffset": 4808 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4099, + "endColumn": 178, + "endOffset": 4273 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4813, + "endColumn": 130, + "endOffset": 4939 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3968, + "endColumn": 130, + "endOffset": 4094 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4944, + "endColumn": 267, + "endOffset": 5207 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-es\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 271, + "endOffset": 437 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5212, + "endColumn": 280, + "endOffset": 5488 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3183, + "endColumn": 284, + "endOffset": 3463 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5493, + "endColumn": 127, + "endOffset": 5616 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 3055, + "endColumn": 127, + "endOffset": 3178 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5621, + "endColumn": 110, + "endOffset": 5727 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3468, + "endColumn": 110, + "endOffset": 3574 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5732, + "endColumn": 201, + "endOffset": 5929 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1663, + "endColumn": 205, + "endOffset": 1864 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5934, + "endColumn": 137, + "endOffset": 6067 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1525, + "endColumn": 137, + "endOffset": 1658 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6072, + "endColumn": 227, + "endOffset": 6295 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2199, + "endColumn": 231, + "endOffset": 2426 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6300, + "endColumn": 138, + "endOffset": 6434 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2060, + "endColumn": 138, + "endOffset": 2194 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6439, + "endColumn": 190, + "endOffset": 6625 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1869, + "endColumn": 190, + "endOffset": 2055 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6630, + "endColumn": 95, + "endOffset": 6721 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3579, + "endColumn": 95, + "endOffset": 3670 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6726, + "endColumn": 98, + "endOffset": 6820 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4584, + "endColumn": 98, + "endOffset": 4678 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6825, + "endColumn": 114, + "endOffset": 6935 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-es\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4683, + "endColumn": 114, + "endOffset": 4793 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6940, + "endColumn": 116, + "endOffset": 7052 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es\\values-es.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 116, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 7057, + "endColumn": 113, + "endOffset": 7166 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es\\values-es.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 113, + "endOffset": 504 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7171, + "endColumn": 109, + "endOffset": 7276 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es\\values-es.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 509, + "endColumn": 109, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7281, + "endColumn": 105, + "endOffset": 7382 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es\\values-es.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 105, + "endOffset": 720 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7387, + "endColumn": 131, + "endOffset": 7514 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es\\values-es.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 725, + "endColumn": 131, + "endOffset": 852 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7519, + "endColumn": 95, + "endOffset": 7610 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es\\values-es.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 857, + "endColumn": 95, + "endOffset": 948 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7615, + "endColumn": 99, + "endOffset": 7710 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es\\values-es.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 953, + "endColumn": 99, + "endOffset": 1048 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7715, + "endColumn": 119, + "endOffset": 7830 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es\\values-es.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1053, + "endColumn": 119, + "endOffset": 1168 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7835, + "endColumn": 114, + "endOffset": 7945 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es\\values-es.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1173, + "endColumn": 114, + "endOffset": 1283 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7950, + "endColumn": 86, + "endOffset": 8032 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es\\values-es.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1288, + "endColumn": 86, + "endOffset": 1370 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 8037, + "endColumn": 98, + "endOffset": 8131 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-es\\values-es.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1375, + "endColumn": 98, + "endOffset": 1469 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8136, + "endColumn": 105, + "endOffset": 8237 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-es\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 326, + "endColumn": 105, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8242, + "endColumn": 95, + "endOffset": 8333 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-es\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 95, + "endOffset": 321 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8338, + "endColumn": 100, + "endOffset": 8434 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-es\\values-es.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2196, + "endColumn": 100, + "endOffset": 2292 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8439, + "endColumn": 107, + "endOffset": 8542 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-es\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 107, + "endOffset": 333 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-et-rEE.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-et-rEE.json new file mode 100644 index 0000000..7a79334 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-et-rEE.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-et-rEE\\values-et-rEE.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 116, + "endOffset": 217 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 116, + "endOffset": 345 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 222, + "endColumn": 107, + "endOffset": 325 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 350, + "endColumn": 107, + "endOffset": 453 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 330, + "endColumn": 122, + "endOffset": 448 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 458, + "endColumn": 122, + "endOffset": 576 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 453, + "endColumn": 106, + "endOffset": 555 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 581, + "endColumn": 106, + "endOffset": 683 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 560, + "endColumn": 110, + "endOffset": 666 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 110, + "endOffset": 794 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 671, + "endColumn": 85, + "endOffset": 752 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 799, + "endColumn": 85, + "endOffset": 880 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 757, + "endColumn": 101, + "endOffset": 854 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 885, + "endColumn": 101, + "endOffset": 982 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 859, + "endColumn": 116, + "endOffset": 971 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 987, + "endColumn": 116, + "endOffset": 1099 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 976, + "endColumn": 79, + "endOffset": 1051 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 79, + "endOffset": 1179 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1056, + "endColumn": 77, + "endOffset": 1129 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1184, + "endColumn": 77, + "endOffset": 1257 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1134, + "endColumn": 82, + "endOffset": 1212 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1262, + "endColumn": 82, + "endOffset": 1340 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1217, + "endColumn": 110, + "endOffset": 1323 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1345, + "endColumn": 110, + "endOffset": 1451 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 104, + "endOffset": 1428 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1456, + "endColumn": 104, + "endOffset": 1556 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1433, + "endColumn": 98, + "endOffset": 1527 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1561, + "endColumn": 98, + "endOffset": 1655 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1532, + "endColumn": 109, + "endOffset": 1637 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1660, + "endColumn": 109, + "endOffset": 1765 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1642, + "endColumn": 100, + "endOffset": 1738 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1770, + "endColumn": 100, + "endOffset": 1866 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1743, + "endColumn": 102, + "endOffset": 1841 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1871, + "endColumn": 102, + "endOffset": 1969 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1846, + "endColumn": 127, + "endOffset": 1969 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1974, + "endColumn": 127, + "endOffset": 2097 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1974, + "endColumn": 101, + "endOffset": 2071 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2102, + "endColumn": 101, + "endOffset": 2199 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2076, + "endColumn": 274, + "endOffset": 2346 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3484, + "endColumn": 278, + "endOffset": 3758 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2351, + "endColumn": 125, + "endOffset": 2472 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1336, + "endColumn": 125, + "endOffset": 1457 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2477, + "endColumn": 193, + "endOffset": 2666 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1138, + "endColumn": 197, + "endOffset": 1331 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2671, + "endColumn": 128, + "endOffset": 2795 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1009, + "endColumn": 128, + "endOffset": 1133 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2800, + "endColumn": 127, + "endOffset": 2923 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 881, + "endColumn": 127, + "endOffset": 1004 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2928, + "endColumn": 216, + "endOffset": 3140 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 434, + "endColumn": 220, + "endOffset": 650 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3145, + "endColumn": 221, + "endOffset": 3362 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 655, + "endColumn": 225, + "endOffset": 876 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3367, + "endColumn": 130, + "endOffset": 3493 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 303, + "endColumn": 130, + "endOffset": 429 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3498, + "endColumn": 168, + "endOffset": 3662 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2739, + "endColumn": 168, + "endOffset": 2903 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3667, + "endColumn": 119, + "endOffset": 3782 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2619, + "endColumn": 119, + "endOffset": 2734 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3787, + "endColumn": 175, + "endOffset": 3958 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2443, + "endColumn": 175, + "endOffset": 2614 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3963, + "endColumn": 116, + "endOffset": 4075 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2326, + "endColumn": 116, + "endOffset": 2438 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4080, + "endColumn": 132, + "endOffset": 4208 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 132, + "endOffset": 298 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4213, + "endColumn": 163, + "endOffset": 4372 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4191, + "endColumn": 163, + "endOffset": 4350 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4377, + "endColumn": 127, + "endOffset": 4500 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4063, + "endColumn": 127, + "endOffset": 4186 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4505, + "endColumn": 166, + "endOffset": 4667 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3896, + "endColumn": 166, + "endOffset": 4058 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4672, + "endColumn": 132, + "endOffset": 4800 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3763, + "endColumn": 132, + "endOffset": 3891 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4805, + "endColumn": 242, + "endOffset": 5043 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-et-rEE\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 246, + "endOffset": 412 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5048, + "endColumn": 245, + "endOffset": 5289 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3032, + "endColumn": 249, + "endOffset": 3277 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5294, + "endColumn": 123, + "endOffset": 5413 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2908, + "endColumn": 123, + "endOffset": 3027 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5418, + "endColumn": 109, + "endOffset": 5523 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3282, + "endColumn": 109, + "endOffset": 3387 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5528, + "endColumn": 194, + "endOffset": 5718 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1596, + "endColumn": 198, + "endOffset": 1790 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5723, + "endColumn": 133, + "endOffset": 5852 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1462, + "endColumn": 133, + "endOffset": 1591 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5857, + "endColumn": 213, + "endOffset": 6066 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2108, + "endColumn": 217, + "endOffset": 2321 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6071, + "endColumn": 137, + "endOffset": 6204 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1970, + "endColumn": 137, + "endOffset": 2103 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6209, + "endColumn": 174, + "endOffset": 6379 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1795, + "endColumn": 174, + "endOffset": 1965 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6384, + "endColumn": 91, + "endOffset": 6471 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3392, + "endColumn": 91, + "endOffset": 3479 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6476, + "endColumn": 94, + "endOffset": 6566 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4355, + "endColumn": 94, + "endOffset": 4445 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6571, + "endColumn": 117, + "endOffset": 6684 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-et-rEE\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4450, + "endColumn": 117, + "endOffset": 4563 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6689, + "endColumn": 111, + "endOffset": 6796 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 111, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6801, + "endColumn": 110, + "endOffset": 6907 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 110, + "endOffset": 500 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6912, + "endColumn": 106, + "endOffset": 7014 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 505, + "endColumn": 106, + "endOffset": 607 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7019, + "endColumn": 110, + "endOffset": 7125 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 110, + "endOffset": 718 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7130, + "endColumn": 121, + "endOffset": 7247 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 723, + "endColumn": 121, + "endOffset": 840 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7252, + "endColumn": 99, + "endOffset": 7347 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 845, + "endColumn": 99, + "endOffset": 940 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7352, + "endColumn": 98, + "endOffset": 7446 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 98, + "endOffset": 1039 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7451, + "endColumn": 120, + "endOffset": 7567 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1044, + "endColumn": 120, + "endOffset": 1160 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7572, + "endColumn": 104, + "endOffset": 7672 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1165, + "endColumn": 104, + "endOffset": 1265 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7677, + "endColumn": 86, + "endOffset": 7759 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1270, + "endColumn": 86, + "endOffset": 1352 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7764, + "endColumn": 93, + "endOffset": 7853 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1357, + "endColumn": 93, + "endOffset": 1446 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7858, + "endColumn": 109, + "endOffset": 7963 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-et-rEE\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 326, + "endColumn": 109, + "endOffset": 431 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7968, + "endColumn": 95, + "endOffset": 8059 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-et-rEE\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 95, + "endOffset": 321 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8064, + "endColumn": 100, + "endOffset": 8160 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-et-rEE\\values-et-rEE.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2204, + "endColumn": 100, + "endOffset": 2300 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-eu-rES.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-eu-rES.json new file mode 100644 index 0000000..93eff28 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-eu-rES.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-eu-rES\\values-eu-rES.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 108, + "endOffset": 209 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 108, + "endOffset": 337 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 214, + "endColumn": 107, + "endOffset": 317 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 342, + "endColumn": 107, + "endOffset": 445 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 322, + "endColumn": 122, + "endOffset": 440 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 450, + "endColumn": 122, + "endOffset": 568 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 445, + "endColumn": 97, + "endOffset": 538 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 573, + "endColumn": 97, + "endOffset": 666 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 543, + "endColumn": 109, + "endOffset": 648 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 671, + "endColumn": 109, + "endOffset": 776 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 653, + "endColumn": 85, + "endOffset": 734 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 781, + "endColumn": 85, + "endOffset": 862 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 739, + "endColumn": 105, + "endOffset": 840 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 867, + "endColumn": 105, + "endOffset": 968 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 845, + "endColumn": 123, + "endOffset": 964 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 973, + "endColumn": 123, + "endOffset": 1092 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 969, + "endColumn": 86, + "endOffset": 1051 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1097, + "endColumn": 86, + "endOffset": 1179 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1056, + "endColumn": 83, + "endOffset": 1135 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1184, + "endColumn": 83, + "endOffset": 1263 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1140, + "endColumn": 81, + "endOffset": 1217 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1268, + "endColumn": 81, + "endOffset": 1345 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1222, + "endColumn": 108, + "endOffset": 1326 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1350, + "endColumn": 108, + "endOffset": 1454 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1331, + "endColumn": 109, + "endOffset": 1436 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1459, + "endColumn": 109, + "endOffset": 1564 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1441, + "endColumn": 98, + "endOffset": 1535 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1569, + "endColumn": 98, + "endOffset": 1663 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1540, + "endColumn": 108, + "endOffset": 1644 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1668, + "endColumn": 108, + "endOffset": 1772 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1649, + "endColumn": 112, + "endOffset": 1757 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1777, + "endColumn": 112, + "endOffset": 1885 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1762, + "endColumn": 110, + "endOffset": 1868 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1890, + "endColumn": 110, + "endOffset": 1996 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1873, + "endColumn": 136, + "endOffset": 2005 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2001, + "endColumn": 136, + "endOffset": 2133 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2010, + "endColumn": 98, + "endOffset": 2104 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2138, + "endColumn": 98, + "endOffset": 2232 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2109, + "endColumn": 292, + "endOffset": 2397 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3556, + "endColumn": 296, + "endOffset": 3848 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2402, + "endColumn": 128, + "endOffset": 2526 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1343, + "endColumn": 128, + "endOffset": 1467 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2531, + "endColumn": 207, + "endOffset": 2734 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1131, + "endColumn": 211, + "endOffset": 1338 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2739, + "endColumn": 127, + "endOffset": 2862 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1003, + "endColumn": 127, + "endOffset": 1126 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2867, + "endColumn": 129, + "endOffset": 2992 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 873, + "endColumn": 129, + "endOffset": 998 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2997, + "endColumn": 214, + "endOffset": 3207 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 436, + "endColumn": 218, + "endOffset": 650 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3212, + "endColumn": 213, + "endOffset": 3421 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 655, + "endColumn": 217, + "endOffset": 868 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3426, + "endColumn": 128, + "endOffset": 3550 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 307, + "endColumn": 128, + "endOffset": 431 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3555, + "endColumn": 168, + "endOffset": 3719 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2776, + "endColumn": 168, + "endOffset": 2940 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3724, + "endColumn": 124, + "endOffset": 3844 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2651, + "endColumn": 124, + "endOffset": 2771 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3849, + "endColumn": 167, + "endOffset": 4012 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2483, + "endColumn": 167, + "endOffset": 2646 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4017, + "endColumn": 120, + "endOffset": 4133 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2362, + "endColumn": 120, + "endOffset": 2478 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4138, + "endColumn": 136, + "endOffset": 4270 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 136, + "endOffset": 302 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4275, + "endColumn": 165, + "endOffset": 4436 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4299, + "endColumn": 165, + "endOffset": 4460 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4441, + "endColumn": 127, + "endOffset": 4564 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4171, + "endColumn": 127, + "endOffset": 4294 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4569, + "endColumn": 186, + "endOffset": 4751 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3984, + "endColumn": 186, + "endOffset": 4166 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4756, + "endColumn": 130, + "endOffset": 4882 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3853, + "endColumn": 130, + "endOffset": 3979 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4887, + "endColumn": 259, + "endOffset": 5142 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-eu-rES\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 263, + "endOffset": 429 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5147, + "endColumn": 275, + "endOffset": 5418 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3071, + "endColumn": 279, + "endOffset": 3346 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5423, + "endColumn": 125, + "endOffset": 5544 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2945, + "endColumn": 125, + "endOffset": 3066 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5549, + "endColumn": 109, + "endOffset": 5654 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3351, + "endColumn": 109, + "endOffset": 3456 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5659, + "endColumn": 197, + "endOffset": 5852 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1604, + "endColumn": 201, + "endOffset": 1801 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5857, + "endColumn": 131, + "endOffset": 5984 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1472, + "endColumn": 131, + "endOffset": 1599 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5989, + "endColumn": 226, + "endOffset": 6211 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2131, + "endColumn": 230, + "endOffset": 2357 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6216, + "endColumn": 135, + "endOffset": 6347 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1995, + "endColumn": 135, + "endOffset": 2126 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6352, + "endColumn": 188, + "endOffset": 6536 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1806, + "endColumn": 188, + "endOffset": 1990 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6541, + "endColumn": 94, + "endOffset": 6631 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3461, + "endColumn": 94, + "endOffset": 3551 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6636, + "endColumn": 94, + "endOffset": 6726 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4465, + "endColumn": 94, + "endOffset": 4555 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6731, + "endColumn": 108, + "endOffset": 6835 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-eu-rES\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4560, + "endColumn": 108, + "endOffset": 4664 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6840, + "endColumn": 106, + "endOffset": 6942 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 106, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6947, + "endColumn": 108, + "endOffset": 7051 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 108, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7056, + "endColumn": 104, + "endOffset": 7156 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 104, + "endOffset": 598 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7161, + "endColumn": 106, + "endOffset": 7263 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 603, + "endColumn": 106, + "endOffset": 705 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7268, + "endColumn": 123, + "endOffset": 7387 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 710, + "endColumn": 123, + "endOffset": 829 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7392, + "endColumn": 97, + "endOffset": 7485 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 834, + "endColumn": 97, + "endOffset": 927 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7490, + "endColumn": 102, + "endOffset": 7588 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 932, + "endColumn": 102, + "endOffset": 1030 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7593, + "endColumn": 126, + "endOffset": 7715 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1035, + "endColumn": 126, + "endOffset": 1157 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7720, + "endColumn": 104, + "endOffset": 7820 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1162, + "endColumn": 104, + "endOffset": 1262 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7825, + "endColumn": 86, + "endOffset": 7907 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1267, + "endColumn": 86, + "endOffset": 1349 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7912, + "endColumn": 93, + "endOffset": 8001 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1354, + "endColumn": 93, + "endOffset": 1443 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8006, + "endColumn": 106, + "endOffset": 8108 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-eu-rES\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 328, + "endColumn": 106, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8113, + "endColumn": 97, + "endOffset": 8206 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-eu-rES\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 97, + "endOffset": 323 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8211, + "endColumn": 100, + "endOffset": 8307 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-eu-rES\\values-eu-rES.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2237, + "endColumn": 100, + "endOffset": 2333 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-fa.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-fa.json new file mode 100644 index 0000000..199724e --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-fa.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-fa\\values-fa.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 109, + "endOffset": 210 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 109, + "endOffset": 334 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 215, + "endColumn": 109, + "endOffset": 320 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 339, + "endColumn": 109, + "endOffset": 444 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 325, + "endColumn": 125, + "endOffset": 446 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 449, + "endColumn": 125, + "endOffset": 570 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 451, + "endColumn": 102, + "endOffset": 549 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 575, + "endColumn": 102, + "endOffset": 673 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 554, + "endColumn": 110, + "endOffset": 660 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 678, + "endColumn": 110, + "endOffset": 784 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 665, + "endColumn": 83, + "endOffset": 744 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 789, + "endColumn": 83, + "endOffset": 868 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 749, + "endColumn": 102, + "endOffset": 847 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 873, + "endColumn": 102, + "endOffset": 971 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 852, + "endColumn": 114, + "endOffset": 962 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 976, + "endColumn": 114, + "endOffset": 1086 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 967, + "endColumn": 78, + "endOffset": 1041 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1091, + "endColumn": 78, + "endOffset": 1165 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 77, + "endOffset": 1119 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1170, + "endColumn": 77, + "endOffset": 1243 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1124, + "endColumn": 80, + "endOffset": 1200 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1248, + "endColumn": 80, + "endOffset": 1324 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1205, + "endColumn": 111, + "endOffset": 1312 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1329, + "endColumn": 111, + "endOffset": 1436 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1317, + "endColumn": 102, + "endOffset": 1415 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1441, + "endColumn": 102, + "endOffset": 1539 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1420, + "endColumn": 97, + "endOffset": 1513 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1544, + "endColumn": 97, + "endOffset": 1637 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1518, + "endColumn": 109, + "endOffset": 1623 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1642, + "endColumn": 109, + "endOffset": 1747 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1628, + "endColumn": 102, + "endOffset": 1726 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1752, + "endColumn": 102, + "endOffset": 1850 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1731, + "endColumn": 108, + "endOffset": 1835 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1855, + "endColumn": 108, + "endOffset": 1959 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1840, + "endColumn": 124, + "endOffset": 1960 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1964, + "endColumn": 124, + "endOffset": 2084 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1965, + "endColumn": 100, + "endOffset": 2061 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2089, + "endColumn": 100, + "endOffset": 2185 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2066, + "endColumn": 263, + "endOffset": 2325 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3517, + "endColumn": 267, + "endOffset": 3780 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2330, + "endColumn": 133, + "endOffset": 2459 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1323, + "endColumn": 133, + "endOffset": 1452 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2464, + "endColumn": 190, + "endOffset": 2650 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1128, + "endColumn": 194, + "endOffset": 1318 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2655, + "endColumn": 132, + "endOffset": 2783 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 995, + "endColumn": 132, + "endOffset": 1123 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2788, + "endColumn": 130, + "endOffset": 2914 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 864, + "endColumn": 130, + "endOffset": 990 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2919, + "endColumn": 207, + "endOffset": 3122 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 432, + "endColumn": 211, + "endOffset": 639 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3127, + "endColumn": 215, + "endOffset": 3338 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 644, + "endColumn": 219, + "endOffset": 859 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3343, + "endColumn": 129, + "endOffset": 3468 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 302, + "endColumn": 129, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3473, + "endColumn": 186, + "endOffset": 3655 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2746, + "endColumn": 186, + "endOffset": 2928 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3660, + "endColumn": 121, + "endOffset": 3777 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2624, + "endColumn": 121, + "endOffset": 2741 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3782, + "endColumn": 163, + "endOffset": 3941 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2460, + "endColumn": 163, + "endOffset": 2619 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3946, + "endColumn": 115, + "endOffset": 4057 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2344, + "endColumn": 115, + "endOffset": 2455 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4062, + "endColumn": 131, + "endOffset": 4189 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 131, + "endOffset": 297 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4194, + "endColumn": 167, + "endOffset": 4357 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4222, + "endColumn": 167, + "endOffset": 4385 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4362, + "endColumn": 125, + "endOffset": 4483 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4096, + "endColumn": 125, + "endOffset": 4217 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4488, + "endColumn": 188, + "endOffset": 4672 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3907, + "endColumn": 188, + "endOffset": 4091 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4677, + "endColumn": 121, + "endOffset": 4794 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3785, + "endColumn": 121, + "endOffset": 3902 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4799, + "endColumn": 257, + "endOffset": 5052 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-fa\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 261, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5057, + "endColumn": 246, + "endOffset": 5299 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3059, + "endColumn": 250, + "endOffset": 3305 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5304, + "endColumn": 125, + "endOffset": 5425 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2933, + "endColumn": 125, + "endOffset": 3054 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5430, + "endColumn": 111, + "endOffset": 5537 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3310, + "endColumn": 111, + "endOffset": 3417 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5542, + "endColumn": 198, + "endOffset": 5736 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1592, + "endColumn": 202, + "endOffset": 1790 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5741, + "endColumn": 134, + "endOffset": 5871 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1457, + "endColumn": 134, + "endOffset": 1587 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5876, + "endColumn": 213, + "endOffset": 6085 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2126, + "endColumn": 217, + "endOffset": 2339 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6090, + "endColumn": 142, + "endOffset": 6228 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1983, + "endColumn": 142, + "endOffset": 2121 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6233, + "endColumn": 187, + "endOffset": 6416 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1795, + "endColumn": 187, + "endOffset": 1978 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6421, + "endColumn": 94, + "endOffset": 6511 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3422, + "endColumn": 94, + "endOffset": 3512 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6516, + "endColumn": 97, + "endOffset": 6609 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4390, + "endColumn": 97, + "endOffset": 4483 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6614, + "endColumn": 114, + "endOffset": 6724 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fa\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4488, + "endColumn": 114, + "endOffset": 4598 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6729, + "endColumn": 107, + "endOffset": 6832 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 107, + "endOffset": 381 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6837, + "endColumn": 121, + "endOffset": 6954 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 386, + "endColumn": 121, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6959, + "endColumn": 111, + "endOffset": 7066 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 111, + "endOffset": 615 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7071, + "endColumn": 104, + "endOffset": 7171 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 104, + "endOffset": 720 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7176, + "endColumn": 122, + "endOffset": 7294 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 725, + "endColumn": 122, + "endOffset": 843 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7299, + "endColumn": 99, + "endOffset": 7394 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 848, + "endColumn": 99, + "endOffset": 943 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7399, + "endColumn": 92, + "endOffset": 7487 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 948, + "endColumn": 92, + "endOffset": 1036 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7492, + "endColumn": 116, + "endOffset": 7604 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1041, + "endColumn": 116, + "endOffset": 1153 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7609, + "endColumn": 101, + "endOffset": 7706 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1158, + "endColumn": 101, + "endOffset": 1255 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7711, + "endColumn": 84, + "endOffset": 7791 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 84, + "endOffset": 1340 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7796, + "endColumn": 95, + "endOffset": 7887 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1345, + "endColumn": 95, + "endOffset": 1436 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7892, + "endColumn": 104, + "endOffset": 7992 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-fa\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 104, + "endOffset": 425 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7997, + "endColumn": 94, + "endOffset": 8087 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-fa\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8092, + "endColumn": 100, + "endOffset": 8188 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fa\\values-fa.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2190, + "endColumn": 100, + "endOffset": 2286 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8193, + "endColumn": 103, + "endOffset": 8292 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-fa\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 103, + "endOffset": 329 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-fi.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-fi.json new file mode 100644 index 0000000..4955d99 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-fi.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-fi\\values-fi.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 107, + "endOffset": 208 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 107, + "endOffset": 332 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 213, + "endColumn": 107, + "endOffset": 316 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 337, + "endColumn": 107, + "endOffset": 440 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 321, + "endColumn": 122, + "endOffset": 439 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 445, + "endColumn": 122, + "endOffset": 563 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 444, + "endColumn": 99, + "endOffset": 539 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 568, + "endColumn": 99, + "endOffset": 663 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 544, + "endColumn": 100, + "endOffset": 640 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 668, + "endColumn": 100, + "endOffset": 764 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 645, + "endColumn": 85, + "endOffset": 726 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 769, + "endColumn": 85, + "endOffset": 850 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 731, + "endColumn": 104, + "endOffset": 831 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 855, + "endColumn": 104, + "endOffset": 955 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 836, + "endColumn": 117, + "endOffset": 949 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 960, + "endColumn": 117, + "endOffset": 1073 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 954, + "endColumn": 86, + "endOffset": 1036 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1078, + "endColumn": 86, + "endOffset": 1160 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1041, + "endColumn": 81, + "endOffset": 1118 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1165, + "endColumn": 81, + "endOffset": 1242 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1123, + "endColumn": 79, + "endOffset": 1198 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1247, + "endColumn": 79, + "endOffset": 1322 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1203, + "endColumn": 106, + "endOffset": 1305 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1327, + "endColumn": 106, + "endOffset": 1429 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1310, + "endColumn": 102, + "endOffset": 1408 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1434, + "endColumn": 102, + "endOffset": 1532 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1413, + "endColumn": 96, + "endOffset": 1505 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1537, + "endColumn": 96, + "endOffset": 1629 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1510, + "endColumn": 105, + "endOffset": 1611 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1634, + "endColumn": 105, + "endOffset": 1735 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1616, + "endColumn": 98, + "endOffset": 1710 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1740, + "endColumn": 98, + "endOffset": 1834 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1715, + "endColumn": 103, + "endOffset": 1814 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1839, + "endColumn": 103, + "endOffset": 1938 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1819, + "endColumn": 118, + "endOffset": 1933 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1943, + "endColumn": 118, + "endOffset": 2057 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1938, + "endColumn": 98, + "endOffset": 2032 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2062, + "endColumn": 98, + "endOffset": 2156 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2037, + "endColumn": 262, + "endOffset": 2295 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3410, + "endColumn": 266, + "endOffset": 3672 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2300, + "endColumn": 133, + "endOffset": 2429 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1311, + "endColumn": 133, + "endOffset": 1440 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2434, + "endColumn": 184, + "endOffset": 2614 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 188, + "endOffset": 1306 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2619, + "endColumn": 132, + "endOffset": 2747 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 989, + "endColumn": 132, + "endOffset": 1117 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2752, + "endColumn": 128, + "endOffset": 2876 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 860, + "endColumn": 128, + "endOffset": 984 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2881, + "endColumn": 208, + "endOffset": 3085 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 434, + "endColumn": 212, + "endOffset": 642 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3090, + "endColumn": 208, + "endOffset": 3294 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 647, + "endColumn": 212, + "endOffset": 855 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3299, + "endColumn": 127, + "endOffset": 3422 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 306, + "endColumn": 127, + "endOffset": 429 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3427, + "endColumn": 170, + "endOffset": 3593 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2679, + "endColumn": 170, + "endOffset": 2845 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3598, + "endColumn": 125, + "endOffset": 3719 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2553, + "endColumn": 125, + "endOffset": 2674 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3724, + "endColumn": 161, + "endOffset": 3881 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2391, + "endColumn": 161, + "endOffset": 2548 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3886, + "endColumn": 117, + "endOffset": 3999 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2273, + "endColumn": 117, + "endOffset": 2386 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4004, + "endColumn": 135, + "endOffset": 4135 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 135, + "endOffset": 301 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4140, + "endColumn": 159, + "endOffset": 4295 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4120, + "endColumn": 159, + "endOffset": 4275 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4300, + "endColumn": 130, + "endOffset": 4426 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3989, + "endColumn": 130, + "endOffset": 4115 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4431, + "endColumn": 177, + "endOffset": 4604 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3811, + "endColumn": 177, + "endOffset": 3984 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4609, + "endColumn": 133, + "endOffset": 4738 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3677, + "endColumn": 133, + "endOffset": 3806 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4743, + "endColumn": 252, + "endOffset": 4991 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-fi\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 256, + "endOffset": 422 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4996, + "endColumn": 228, + "endOffset": 5220 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2974, + "endColumn": 232, + "endOffset": 3202 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5225, + "endColumn": 123, + "endOffset": 5344 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2850, + "endColumn": 123, + "endOffset": 2969 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5349, + "endColumn": 107, + "endOffset": 5452 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3207, + "endColumn": 107, + "endOffset": 3310 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5457, + "endColumn": 179, + "endOffset": 5632 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1573, + "endColumn": 183, + "endOffset": 1752 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5637, + "endColumn": 127, + "endOffset": 5760 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1445, + "endColumn": 127, + "endOffset": 1568 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5765, + "endColumn": 206, + "endOffset": 5967 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2062, + "endColumn": 210, + "endOffset": 2268 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5972, + "endColumn": 135, + "endOffset": 6103 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1926, + "endColumn": 135, + "endOffset": 2057 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6108, + "endColumn": 168, + "endOffset": 6272 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1757, + "endColumn": 168, + "endOffset": 1921 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6277, + "endColumn": 94, + "endOffset": 6367 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3315, + "endColumn": 94, + "endOffset": 3405 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6372, + "endColumn": 99, + "endOffset": 6467 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4280, + "endColumn": 99, + "endOffset": 4375 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6472, + "endColumn": 112, + "endOffset": 6580 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fi\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4380, + "endColumn": 112, + "endOffset": 4488 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6585, + "endColumn": 106, + "endOffset": 6687 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 106, + "endOffset": 380 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6692, + "endColumn": 110, + "endOffset": 6798 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 385, + "endColumn": 110, + "endOffset": 491 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6803, + "endColumn": 106, + "endOffset": 6905 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 496, + "endColumn": 106, + "endOffset": 598 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6910, + "endColumn": 109, + "endOffset": 7015 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 603, + "endColumn": 109, + "endOffset": 708 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7020, + "endColumn": 127, + "endOffset": 7143 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 713, + "endColumn": 127, + "endOffset": 836 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7148, + "endColumn": 98, + "endOffset": 7242 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 841, + "endColumn": 98, + "endOffset": 935 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7247, + "endColumn": 95, + "endOffset": 7338 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 940, + "endColumn": 95, + "endOffset": 1031 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7343, + "endColumn": 120, + "endOffset": 7459 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1036, + "endColumn": 120, + "endOffset": 1152 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7464, + "endColumn": 107, + "endOffset": 7567 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1157, + "endColumn": 107, + "endOffset": 1260 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7572, + "endColumn": 90, + "endOffset": 7658 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1265, + "endColumn": 90, + "endOffset": 1351 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7663, + "endColumn": 94, + "endOffset": 7753 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 94, + "endOffset": 1446 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7758, + "endColumn": 104, + "endOffset": 7858 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-fi\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 324, + "endColumn": 104, + "endOffset": 424 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7863, + "endColumn": 93, + "endOffset": 7952 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-fi\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 93, + "endOffset": 319 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 7957, + "endColumn": 100, + "endOffset": 8053 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fi\\values-fi.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2161, + "endColumn": 100, + "endOffset": 2257 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8058, + "endColumn": 109, + "endOffset": 8163 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-fi\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 109, + "endOffset": 335 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-fr-rCA.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-fr-rCA.json new file mode 100644 index 0000000..1531951 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-fr-rCA.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-fr-rCA\\values-fr-rCA.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 110, + "endOffset": 211 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 110, + "endOffset": 339 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 216, + "endColumn": 107, + "endOffset": 319 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 344, + "endColumn": 107, + "endOffset": 447 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 324, + "endColumn": 122, + "endOffset": 442 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 452, + "endColumn": 122, + "endOffset": 570 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 447, + "endColumn": 114, + "endOffset": 557 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 575, + "endColumn": 114, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 562, + "endColumn": 110, + "endOffset": 668 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 110, + "endOffset": 796 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 673, + "endColumn": 86, + "endOffset": 755 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 86, + "endOffset": 883 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 760, + "endColumn": 115, + "endOffset": 871 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 888, + "endColumn": 115, + "endOffset": 999 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 876, + "endColumn": 129, + "endOffset": 1001 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1004, + "endColumn": 129, + "endOffset": 1129 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1006, + "endColumn": 82, + "endOffset": 1084 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1134, + "endColumn": 82, + "endOffset": 1212 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1089, + "endColumn": 79, + "endOffset": 1164 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1217, + "endColumn": 79, + "endOffset": 1292 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1169, + "endColumn": 95, + "endOffset": 1260 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1297, + "endColumn": 95, + "endOffset": 1388 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1265, + "endColumn": 109, + "endOffset": 1370 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1393, + "endColumn": 109, + "endOffset": 1498 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1375, + "endColumn": 111, + "endOffset": 1482 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1503, + "endColumn": 111, + "endOffset": 1610 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1487, + "endColumn": 102, + "endOffset": 1585 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1615, + "endColumn": 102, + "endOffset": 1713 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1590, + "endColumn": 110, + "endOffset": 1696 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1718, + "endColumn": 110, + "endOffset": 1824 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1701, + "endColumn": 106, + "endOffset": 1803 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1829, + "endColumn": 106, + "endOffset": 1931 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1808, + "endColumn": 101, + "endOffset": 1905 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1936, + "endColumn": 101, + "endOffset": 2033 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1910, + "endColumn": 121, + "endOffset": 2027 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2038, + "endColumn": 121, + "endOffset": 2155 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2032, + "endColumn": 98, + "endOffset": 2126 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2160, + "endColumn": 98, + "endOffset": 2254 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2131, + "endColumn": 295, + "endOffset": 2422 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3734, + "endColumn": 299, + "endOffset": 4029 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2427, + "endColumn": 132, + "endOffset": 2555 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1414, + "endColumn": 132, + "endOffset": 1542 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2560, + "endColumn": 211, + "endOffset": 2767 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1198, + "endColumn": 215, + "endOffset": 1409 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2772, + "endColumn": 131, + "endOffset": 2899 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1066, + "endColumn": 131, + "endOffset": 1193 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2904, + "endColumn": 135, + "endOffset": 3035 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 930, + "endColumn": 135, + "endOffset": 1061 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3040, + "endColumn": 236, + "endOffset": 3272 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 448, + "endColumn": 240, + "endOffset": 684 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3277, + "endColumn": 236, + "endOffset": 3509 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 689, + "endColumn": 240, + "endOffset": 925 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3514, + "endColumn": 134, + "endOffset": 3644 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 313, + "endColumn": 134, + "endOffset": 443 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3649, + "endColumn": 195, + "endOffset": 3840 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2911, + "endColumn": 195, + "endOffset": 3102 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3845, + "endColumn": 122, + "endOffset": 3963 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2788, + "endColumn": 122, + "endOffset": 2906 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3968, + "endColumn": 192, + "endOffset": 4156 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2595, + "endColumn": 192, + "endOffset": 2783 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4161, + "endColumn": 119, + "endOffset": 4276 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2475, + "endColumn": 119, + "endOffset": 2590 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4281, + "endColumn": 142, + "endOffset": 4419 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 142, + "endOffset": 308 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4424, + "endColumn": 180, + "endOffset": 4600 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4471, + "endColumn": 180, + "endOffset": 4647 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4605, + "endColumn": 124, + "endOffset": 4725 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4346, + "endColumn": 124, + "endOffset": 4466 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4730, + "endColumn": 185, + "endOffset": 4911 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4160, + "endColumn": 185, + "endOffset": 4341 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4916, + "endColumn": 125, + "endOffset": 5037 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 4034, + "endColumn": 125, + "endOffset": 4155 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 5042, + "endColumn": 290, + "endOffset": 5328 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-fr-rCA\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 294, + "endOffset": 460 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5333, + "endColumn": 282, + "endOffset": 5611 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3231, + "endColumn": 286, + "endOffset": 3513 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5616, + "endColumn": 123, + "endOffset": 5735 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 3107, + "endColumn": 123, + "endOffset": 3226 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5740, + "endColumn": 113, + "endOffset": 5849 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3518, + "endColumn": 113, + "endOffset": 3627 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5854, + "endColumn": 215, + "endOffset": 6065 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1685, + "endColumn": 219, + "endOffset": 1900 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 6070, + "endColumn": 137, + "endOffset": 6203 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1547, + "endColumn": 137, + "endOffset": 1680 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6208, + "endColumn": 218, + "endOffset": 6422 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2252, + "endColumn": 222, + "endOffset": 2470 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6427, + "endColumn": 137, + "endOffset": 6560 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2114, + "endColumn": 137, + "endOffset": 2247 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6565, + "endColumn": 208, + "endOffset": 6769 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1905, + "endColumn": 208, + "endOffset": 2109 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6774, + "endColumn": 101, + "endOffset": 6871 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3632, + "endColumn": 101, + "endOffset": 3729 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6876, + "endColumn": 93, + "endOffset": 6965 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4652, + "endColumn": 93, + "endOffset": 4741 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6970, + "endColumn": 113, + "endOffset": 7079 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr-rCA\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4746, + "endColumn": 113, + "endOffset": 4855 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 7084, + "endColumn": 108, + "endOffset": 7188 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 108, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 7193, + "endColumn": 123, + "endOffset": 7312 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 123, + "endOffset": 510 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7317, + "endColumn": 112, + "endOffset": 7425 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 515, + "endColumn": 112, + "endOffset": 623 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7430, + "endColumn": 105, + "endOffset": 7531 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 628, + "endColumn": 105, + "endOffset": 729 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7536, + "endColumn": 131, + "endOffset": 7663 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 734, + "endColumn": 131, + "endOffset": 861 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7668, + "endColumn": 99, + "endOffset": 7763 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 866, + "endColumn": 99, + "endOffset": 961 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7768, + "endColumn": 96, + "endOffset": 7860 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 966, + "endColumn": 96, + "endOffset": 1058 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7865, + "endColumn": 131, + "endOffset": 7992 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1063, + "endColumn": 131, + "endOffset": 1190 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7997, + "endColumn": 109, + "endOffset": 8102 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1195, + "endColumn": 109, + "endOffset": 1300 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 8107, + "endColumn": 86, + "endOffset": 8189 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1305, + "endColumn": 86, + "endOffset": 1387 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 8194, + "endColumn": 95, + "endOffset": 8285 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1392, + "endColumn": 95, + "endOffset": 1483 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8290, + "endColumn": 110, + "endOffset": 8396 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-fr-rCA\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 330, + "endColumn": 110, + "endOffset": 436 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8401, + "endColumn": 99, + "endOffset": 8496 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-fr-rCA\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 99, + "endOffset": 325 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8501, + "endColumn": 100, + "endOffset": 8597 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2259, + "endColumn": 100, + "endOffset": 2355 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-fr.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-fr.json new file mode 100644 index 0000000..87ba66d --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-fr.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-fr\\values-fr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 110, + "endOffset": 211 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 110, + "endOffset": 335 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 216, + "endColumn": 107, + "endOffset": 319 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 340, + "endColumn": 107, + "endOffset": 443 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 324, + "endColumn": 122, + "endOffset": 442 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 448, + "endColumn": 122, + "endOffset": 566 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 447, + "endColumn": 114, + "endOffset": 557 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 571, + "endColumn": 114, + "endOffset": 681 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 562, + "endColumn": 110, + "endOffset": 668 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 110, + "endOffset": 792 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 673, + "endColumn": 81, + "endOffset": 750 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 81, + "endOffset": 874 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 755, + "endColumn": 105, + "endOffset": 856 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 879, + "endColumn": 105, + "endOffset": 980 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 861, + "endColumn": 129, + "endOffset": 986 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 985, + "endColumn": 129, + "endOffset": 1110 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 991, + "endColumn": 82, + "endOffset": 1069 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1115, + "endColumn": 82, + "endOffset": 1193 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1074, + "endColumn": 79, + "endOffset": 1149 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1198, + "endColumn": 79, + "endOffset": 1273 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1154, + "endColumn": 85, + "endOffset": 1235 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 85, + "endOffset": 1359 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1240, + "endColumn": 109, + "endOffset": 1345 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 109, + "endOffset": 1469 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1350, + "endColumn": 111, + "endOffset": 1457 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1474, + "endColumn": 111, + "endOffset": 1581 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1462, + "endColumn": 102, + "endOffset": 1560 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1586, + "endColumn": 102, + "endOffset": 1684 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1565, + "endColumn": 110, + "endOffset": 1671 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1689, + "endColumn": 110, + "endOffset": 1795 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1676, + "endColumn": 106, + "endOffset": 1778 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1800, + "endColumn": 106, + "endOffset": 1902 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1783, + "endColumn": 106, + "endOffset": 1885 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1907, + "endColumn": 106, + "endOffset": 2009 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1890, + "endColumn": 121, + "endOffset": 2007 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2014, + "endColumn": 121, + "endOffset": 2131 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2012, + "endColumn": 98, + "endOffset": 2106 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2136, + "endColumn": 98, + "endOffset": 2230 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2111, + "endColumn": 288, + "endOffset": 2395 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3727, + "endColumn": 292, + "endOffset": 4015 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2400, + "endColumn": 132, + "endOffset": 2528 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1414, + "endColumn": 132, + "endOffset": 1542 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2533, + "endColumn": 211, + "endOffset": 2740 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1198, + "endColumn": 215, + "endOffset": 1409 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2745, + "endColumn": 131, + "endOffset": 2872 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1066, + "endColumn": 131, + "endOffset": 1193 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2877, + "endColumn": 135, + "endOffset": 3008 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 930, + "endColumn": 135, + "endOffset": 1061 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3013, + "endColumn": 236, + "endOffset": 3245 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 448, + "endColumn": 240, + "endOffset": 684 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3250, + "endColumn": 236, + "endOffset": 3482 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 689, + "endColumn": 240, + "endOffset": 925 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3487, + "endColumn": 134, + "endOffset": 3617 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 313, + "endColumn": 134, + "endOffset": 443 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3622, + "endColumn": 195, + "endOffset": 3813 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2911, + "endColumn": 195, + "endOffset": 3102 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3818, + "endColumn": 122, + "endOffset": 3936 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2788, + "endColumn": 122, + "endOffset": 2906 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3941, + "endColumn": 192, + "endOffset": 4129 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2595, + "endColumn": 192, + "endOffset": 2783 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4134, + "endColumn": 119, + "endOffset": 4249 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2475, + "endColumn": 119, + "endOffset": 2590 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4254, + "endColumn": 142, + "endOffset": 4392 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 142, + "endOffset": 308 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4397, + "endColumn": 180, + "endOffset": 4573 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4460, + "endColumn": 180, + "endOffset": 4636 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4578, + "endColumn": 124, + "endOffset": 4698 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4335, + "endColumn": 124, + "endOffset": 4455 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4703, + "endColumn": 185, + "endOffset": 4884 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4149, + "endColumn": 185, + "endOffset": 4330 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4889, + "endColumn": 128, + "endOffset": 5013 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 4020, + "endColumn": 128, + "endOffset": 4144 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 5018, + "endColumn": 287, + "endOffset": 5301 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-fr\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 291, + "endOffset": 457 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5306, + "endColumn": 275, + "endOffset": 5577 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3231, + "endColumn": 279, + "endOffset": 3506 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5582, + "endColumn": 123, + "endOffset": 5701 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 3107, + "endColumn": 123, + "endOffset": 3226 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5706, + "endColumn": 113, + "endOffset": 5815 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3511, + "endColumn": 113, + "endOffset": 3620 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5820, + "endColumn": 215, + "endOffset": 6031 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1685, + "endColumn": 219, + "endOffset": 1900 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 6036, + "endColumn": 137, + "endOffset": 6169 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1547, + "endColumn": 137, + "endOffset": 1680 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6174, + "endColumn": 218, + "endOffset": 6388 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2252, + "endColumn": 222, + "endOffset": 2470 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6393, + "endColumn": 137, + "endOffset": 6526 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2114, + "endColumn": 137, + "endOffset": 2247 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6531, + "endColumn": 208, + "endOffset": 6735 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1905, + "endColumn": 208, + "endOffset": 2109 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6740, + "endColumn": 101, + "endOffset": 6837 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3625, + "endColumn": 101, + "endOffset": 3722 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6842, + "endColumn": 96, + "endOffset": 6934 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4641, + "endColumn": 96, + "endOffset": 4733 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6939, + "endColumn": 113, + "endOffset": 7048 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-fr\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4738, + "endColumn": 113, + "endOffset": 4847 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 7053, + "endColumn": 106, + "endOffset": 7155 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 106, + "endOffset": 380 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 7160, + "endColumn": 123, + "endOffset": 7279 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 385, + "endColumn": 123, + "endOffset": 504 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7284, + "endColumn": 110, + "endOffset": 7390 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 509, + "endColumn": 110, + "endOffset": 615 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7395, + "endColumn": 105, + "endOffset": 7496 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 105, + "endOffset": 721 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7501, + "endColumn": 131, + "endOffset": 7628 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 726, + "endColumn": 131, + "endOffset": 853 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7633, + "endColumn": 95, + "endOffset": 7724 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 858, + "endColumn": 95, + "endOffset": 949 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7729, + "endColumn": 96, + "endOffset": 7821 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 954, + "endColumn": 96, + "endOffset": 1046 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7826, + "endColumn": 131, + "endOffset": 7953 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1051, + "endColumn": 131, + "endOffset": 1178 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7958, + "endColumn": 109, + "endOffset": 8063 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1183, + "endColumn": 109, + "endOffset": 1288 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 8068, + "endColumn": 86, + "endOffset": 8150 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1293, + "endColumn": 86, + "endOffset": 1375 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 8155, + "endColumn": 95, + "endOffset": 8246 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1380, + "endColumn": 95, + "endOffset": 1471 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8251, + "endColumn": 110, + "endOffset": 8357 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-fr\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 330, + "endColumn": 110, + "endOffset": 436 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8362, + "endColumn": 99, + "endOffset": 8457 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-fr\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 99, + "endOffset": 325 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8462, + "endColumn": 100, + "endOffset": 8558 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-fr\\values-fr.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2235, + "endColumn": 100, + "endOffset": 2331 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8563, + "endColumn": 108, + "endOffset": 8667 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-fr\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 108, + "endOffset": 334 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-gl-rES.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-gl-rES.json new file mode 100644 index 0000000..5efd1eb --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-gl-rES.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-gl-rES\\values-gl-rES.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 111, + "endOffset": 212 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 111, + "endOffset": 340 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 217, + "endColumn": 107, + "endOffset": 320 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 345, + "endColumn": 107, + "endOffset": 448 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 325, + "endColumn": 122, + "endOffset": 443 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 453, + "endColumn": 122, + "endOffset": 571 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 448, + "endColumn": 111, + "endOffset": 555 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 576, + "endColumn": 111, + "endOffset": 683 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 560, + "endColumn": 107, + "endOffset": 663 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 107, + "endOffset": 791 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 668, + "endColumn": 84, + "endOffset": 748 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 796, + "endColumn": 84, + "endOffset": 876 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 753, + "endColumn": 101, + "endOffset": 850 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 881, + "endColumn": 101, + "endOffset": 978 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 855, + "endColumn": 125, + "endOffset": 976 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 983, + "endColumn": 125, + "endOffset": 1104 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 981, + "endColumn": 83, + "endOffset": 1060 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1109, + "endColumn": 83, + "endOffset": 1188 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1065, + "endColumn": 80, + "endOffset": 1141 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1193, + "endColumn": 80, + "endOffset": 1269 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1146, + "endColumn": 81, + "endOffset": 1223 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1274, + "endColumn": 81, + "endOffset": 1351 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1228, + "endColumn": 106, + "endOffset": 1330 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 106, + "endOffset": 1458 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1335, + "endColumn": 108, + "endOffset": 1439 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1463, + "endColumn": 108, + "endOffset": 1567 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1444, + "endColumn": 98, + "endOffset": 1538 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1572, + "endColumn": 98, + "endOffset": 1666 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1543, + "endColumn": 107, + "endOffset": 1646 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1671, + "endColumn": 107, + "endOffset": 1774 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1651, + "endColumn": 102, + "endOffset": 1749 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1779, + "endColumn": 102, + "endOffset": 1877 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1754, + "endColumn": 106, + "endOffset": 1856 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1882, + "endColumn": 106, + "endOffset": 1984 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1861, + "endColumn": 121, + "endOffset": 1978 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1989, + "endColumn": 121, + "endOffset": 2106 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1983, + "endColumn": 99, + "endOffset": 2078 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2111, + "endColumn": 99, + "endOffset": 2206 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2083, + "endColumn": 275, + "endOffset": 2354 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3618, + "endColumn": 279, + "endOffset": 3893 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2359, + "endColumn": 131, + "endOffset": 2486 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1357, + "endColumn": 131, + "endOffset": 1484 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2491, + "endColumn": 194, + "endOffset": 2681 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1158, + "endColumn": 198, + "endOffset": 1352 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2686, + "endColumn": 130, + "endOffset": 2812 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1027, + "endColumn": 130, + "endOffset": 1153 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2817, + "endColumn": 134, + "endOffset": 2947 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 892, + "endColumn": 134, + "endOffset": 1022 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2952, + "endColumn": 220, + "endOffset": 3168 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 443, + "endColumn": 224, + "endOffset": 663 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3173, + "endColumn": 219, + "endOffset": 3388 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 668, + "endColumn": 223, + "endOffset": 887 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3393, + "endColumn": 133, + "endOffset": 3522 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 309, + "endColumn": 133, + "endOffset": 438 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3527, + "endColumn": 181, + "endOffset": 3704 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2831, + "endColumn": 181, + "endOffset": 3008 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3709, + "endColumn": 121, + "endOffset": 3826 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2709, + "endColumn": 121, + "endOffset": 2826 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3831, + "endColumn": 194, + "endOffset": 4021 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2514, + "endColumn": 194, + "endOffset": 2704 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4026, + "endColumn": 132, + "endOffset": 4154 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2381, + "endColumn": 132, + "endOffset": 2509 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4159, + "endColumn": 138, + "endOffset": 4293 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 138, + "endOffset": 304 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4298, + "endColumn": 171, + "endOffset": 4465 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4368, + "endColumn": 171, + "endOffset": 4535 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4470, + "endColumn": 129, + "endOffset": 4595 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4238, + "endColumn": 129, + "endOffset": 4363 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4600, + "endColumn": 193, + "endOffset": 4789 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4044, + "endColumn": 193, + "endOffset": 4233 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4794, + "endColumn": 145, + "endOffset": 4935 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3898, + "endColumn": 145, + "endOffset": 4039 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4940, + "endColumn": 251, + "endOffset": 5187 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-gl-rES\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 255, + "endOffset": 421 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5192, + "endColumn": 266, + "endOffset": 5454 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3140, + "endColumn": 270, + "endOffset": 3406 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5459, + "endColumn": 126, + "endOffset": 5581 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 3013, + "endColumn": 126, + "endOffset": 3135 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5586, + "endColumn": 110, + "endOffset": 5692 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3411, + "endColumn": 110, + "endOffset": 3517 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5697, + "endColumn": 199, + "endOffset": 5892 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1626, + "endColumn": 203, + "endOffset": 1825 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5897, + "endColumn": 136, + "endOffset": 6029 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1489, + "endColumn": 136, + "endOffset": 1621 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6034, + "endColumn": 223, + "endOffset": 6253 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2153, + "endColumn": 227, + "endOffset": 2376 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6258, + "endColumn": 140, + "endOffset": 6394 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2012, + "endColumn": 140, + "endOffset": 2148 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6399, + "endColumn": 181, + "endOffset": 6576 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1830, + "endColumn": 181, + "endOffset": 2007 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6581, + "endColumn": 95, + "endOffset": 6672 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3522, + "endColumn": 95, + "endOffset": 3613 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6677, + "endColumn": 98, + "endOffset": 6771 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4540, + "endColumn": 98, + "endOffset": 4634 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6776, + "endColumn": 114, + "endOffset": 6886 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gl-rES\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4639, + "endColumn": 114, + "endOffset": 4749 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6891, + "endColumn": 106, + "endOffset": 6993 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 106, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6998, + "endColumn": 113, + "endOffset": 7107 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 113, + "endOffset": 498 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7112, + "endColumn": 110, + "endOffset": 7218 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 110, + "endOffset": 609 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7223, + "endColumn": 105, + "endOffset": 7324 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 614, + "endColumn": 105, + "endOffset": 715 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7329, + "endColumn": 132, + "endOffset": 7457 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 720, + "endColumn": 132, + "endOffset": 848 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7462, + "endColumn": 95, + "endOffset": 7553 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 853, + "endColumn": 95, + "endOffset": 944 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7558, + "endColumn": 98, + "endOffset": 7652 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 949, + "endColumn": 98, + "endOffset": 1043 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7657, + "endColumn": 125, + "endOffset": 7778 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1048, + "endColumn": 125, + "endOffset": 1169 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7783, + "endColumn": 104, + "endOffset": 7883 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1174, + "endColumn": 104, + "endOffset": 1274 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7888, + "endColumn": 86, + "endOffset": 7970 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1279, + "endColumn": 86, + "endOffset": 1361 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7975, + "endColumn": 98, + "endOffset": 8069 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1366, + "endColumn": 98, + "endOffset": 1460 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8074, + "endColumn": 103, + "endOffset": 8173 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-gl-rES\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 326, + "endColumn": 103, + "endOffset": 425 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8178, + "endColumn": 95, + "endOffset": 8269 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-gl-rES\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 95, + "endOffset": 321 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8274, + "endColumn": 100, + "endOffset": 8370 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gl-rES\\values-gl-rES.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2211, + "endColumn": 100, + "endOffset": 2307 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-gu-rIN.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-gu-rIN.json new file mode 100644 index 0000000..5f9a3e9 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-gu-rIN.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-gu-rIN\\values-gu-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 108, + "endOffset": 209 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 108, + "endOffset": 337 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 214, + "endColumn": 107, + "endOffset": 317 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 342, + "endColumn": 107, + "endOffset": 445 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 322, + "endColumn": 122, + "endOffset": 440 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 450, + "endColumn": 122, + "endOffset": 568 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 445, + "endColumn": 103, + "endOffset": 544 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 573, + "endColumn": 103, + "endOffset": 672 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 549, + "endColumn": 106, + "endOffset": 651 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 677, + "endColumn": 106, + "endOffset": 779 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 656, + "endColumn": 86, + "endOffset": 738 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 784, + "endColumn": 86, + "endOffset": 866 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 743, + "endColumn": 100, + "endOffset": 839 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 871, + "endColumn": 100, + "endOffset": 967 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 844, + "endColumn": 122, + "endOffset": 962 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 972, + "endColumn": 122, + "endOffset": 1090 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 967, + "endColumn": 76, + "endOffset": 1039 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1095, + "endColumn": 76, + "endOffset": 1167 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1044, + "endColumn": 77, + "endOffset": 1117 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1172, + "endColumn": 77, + "endOffset": 1245 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 79, + "endOffset": 1197 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1250, + "endColumn": 79, + "endOffset": 1325 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1202, + "endColumn": 105, + "endOffset": 1303 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1330, + "endColumn": 105, + "endOffset": 1431 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1308, + "endColumn": 101, + "endOffset": 1405 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1436, + "endColumn": 101, + "endOffset": 1533 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1410, + "endColumn": 96, + "endOffset": 1502 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1538, + "endColumn": 96, + "endOffset": 1630 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1507, + "endColumn": 108, + "endOffset": 1611 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1635, + "endColumn": 108, + "endOffset": 1739 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1616, + "endColumn": 98, + "endOffset": 1710 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1744, + "endColumn": 98, + "endOffset": 1838 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1715, + "endColumn": 109, + "endOffset": 1820 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1843, + "endColumn": 109, + "endOffset": 1948 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1825, + "endColumn": 120, + "endOffset": 1941 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1953, + "endColumn": 120, + "endOffset": 2069 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1946, + "endColumn": 102, + "endOffset": 2044 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2074, + "endColumn": 102, + "endOffset": 2172 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2049, + "endColumn": 254, + "endOffset": 2299 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3426, + "endColumn": 258, + "endOffset": 3680 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2304, + "endColumn": 127, + "endOffset": 2427 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1293, + "endColumn": 127, + "endOffset": 1416 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2432, + "endColumn": 197, + "endOffset": 2625 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1091, + "endColumn": 201, + "endOffset": 1288 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2630, + "endColumn": 126, + "endOffset": 2752 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 964, + "endColumn": 126, + "endOffset": 1086 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2757, + "endColumn": 124, + "endOffset": 2877 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 839, + "endColumn": 124, + "endOffset": 959 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2882, + "endColumn": 200, + "endOffset": 3078 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 424, + "endColumn": 204, + "endOffset": 624 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3083, + "endColumn": 205, + "endOffset": 3284 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 629, + "endColumn": 209, + "endOffset": 834 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3289, + "endColumn": 123, + "endOffset": 3408 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 300, + "endColumn": 123, + "endOffset": 419 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3413, + "endColumn": 187, + "endOffset": 3596 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2671, + "endColumn": 187, + "endOffset": 2854 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3601, + "endColumn": 119, + "endOffset": 3716 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2551, + "endColumn": 119, + "endOffset": 2666 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3721, + "endColumn": 164, + "endOffset": 3881 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2386, + "endColumn": 164, + "endOffset": 2546 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3886, + "endColumn": 117, + "endOffset": 3999 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2268, + "endColumn": 117, + "endOffset": 2381 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4004, + "endColumn": 129, + "endOffset": 4129 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 129, + "endOffset": 295 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4134, + "endColumn": 171, + "endOffset": 4301 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4124, + "endColumn": 171, + "endOffset": 4291 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4306, + "endColumn": 130, + "endOffset": 4432 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3993, + "endColumn": 130, + "endOffset": 4119 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4437, + "endColumn": 180, + "endOffset": 4613 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3812, + "endColumn": 180, + "endOffset": 3988 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4618, + "endColumn": 126, + "endOffset": 4740 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3685, + "endColumn": 126, + "endOffset": 3807 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4745, + "endColumn": 252, + "endOffset": 4993 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-gu-rIN\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 256, + "endOffset": 422 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4998, + "endColumn": 241, + "endOffset": 5235 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2980, + "endColumn": 245, + "endOffset": 3221 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5240, + "endColumn": 120, + "endOffset": 5356 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2859, + "endColumn": 120, + "endOffset": 2975 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5361, + "endColumn": 109, + "endOffset": 5466 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3226, + "endColumn": 109, + "endOffset": 3331 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5471, + "endColumn": 194, + "endOffset": 5661 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1548, + "endColumn": 198, + "endOffset": 1742 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5666, + "endColumn": 126, + "endOffset": 5788 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1421, + "endColumn": 126, + "endOffset": 1543 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5793, + "endColumn": 201, + "endOffset": 5990 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2062, + "endColumn": 205, + "endOffset": 2263 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5995, + "endColumn": 134, + "endOffset": 6125 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1927, + "endColumn": 134, + "endOffset": 2057 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6130, + "endColumn": 179, + "endOffset": 6305 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1747, + "endColumn": 179, + "endOffset": 1922 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6310, + "endColumn": 89, + "endOffset": 6395 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3336, + "endColumn": 89, + "endOffset": 3421 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6400, + "endColumn": 95, + "endOffset": 6491 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4296, + "endColumn": 95, + "endOffset": 4387 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6496, + "endColumn": 111, + "endOffset": 6603 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-gu-rIN\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4392, + "endColumn": 111, + "endOffset": 4499 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6608, + "endColumn": 109, + "endOffset": 6713 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 109, + "endOffset": 387 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6718, + "endColumn": 118, + "endOffset": 6832 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 118, + "endOffset": 506 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6837, + "endColumn": 108, + "endOffset": 6941 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 511, + "endColumn": 108, + "endOffset": 615 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6946, + "endColumn": 108, + "endOffset": 7050 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 108, + "endOffset": 724 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7055, + "endColumn": 123, + "endOffset": 7174 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 729, + "endColumn": 123, + "endOffset": 848 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7179, + "endColumn": 94, + "endOffset": 7269 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 853, + "endColumn": 94, + "endOffset": 943 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7274, + "endColumn": 94, + "endOffset": 7364 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 948, + "endColumn": 94, + "endOffset": 1038 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7369, + "endColumn": 116, + "endOffset": 7481 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1043, + "endColumn": 116, + "endOffset": 1155 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7486, + "endColumn": 107, + "endOffset": 7589 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1160, + "endColumn": 107, + "endOffset": 1263 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7594, + "endColumn": 85, + "endOffset": 7675 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1268, + "endColumn": 85, + "endOffset": 1349 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7680, + "endColumn": 92, + "endOffset": 7768 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1354, + "endColumn": 92, + "endOffset": 1442 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7773, + "endColumn": 101, + "endOffset": 7870 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-gu-rIN\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 324, + "endColumn": 101, + "endOffset": 421 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7875, + "endColumn": 93, + "endOffset": 7964 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-gu-rIN\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 93, + "endOffset": 319 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 7969, + "endColumn": 100, + "endOffset": 8065 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-gu-rIN\\values-gu-rIN.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2177, + "endColumn": 100, + "endOffset": 2273 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-h320dp-v13.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-h320dp-v13.json new file mode 100644 index 0000000..e0093a6 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-h320dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-h320dp-v13\\values-h320dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 57, + "endOffset": 108 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-h320dp\\values-h320dp.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 231, + "endColumn": 57, + "endOffset": 284 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json new file mode 100644 index 0000000..d120465 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-h720dp-v13\\values-h720dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 66, + "endOffset": 117 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-h720dp\\values-h720dp.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 232, + "endColumn": 66, + "endOffset": 294 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json new file mode 100644 index 0000000..2f6700e --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json @@ -0,0 +1,28 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-hdpi-v4\\values-hdpi-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 6, + "endColumn": 13, + "endOffset": 327 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hdpi\\values-hdpi.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 235, + "endLine": 8, + "endColumn": 13, + "endOffset": 507 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-hi.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-hi.json new file mode 100644 index 0000000..c8a03af --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-hi.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-hi\\values-hi.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 116, + "endOffset": 217 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 116, + "endOffset": 341 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 222, + "endColumn": 107, + "endOffset": 325 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 346, + "endColumn": 107, + "endOffset": 449 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 330, + "endColumn": 122, + "endOffset": 448 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 454, + "endColumn": 122, + "endOffset": 572 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 453, + "endColumn": 104, + "endOffset": 553 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 577, + "endColumn": 104, + "endOffset": 677 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 558, + "endColumn": 106, + "endOffset": 660 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 682, + "endColumn": 106, + "endOffset": 784 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 665, + "endColumn": 84, + "endOffset": 745 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 789, + "endColumn": 84, + "endOffset": 869 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 750, + "endColumn": 101, + "endOffset": 847 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 874, + "endColumn": 101, + "endOffset": 971 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 852, + "endColumn": 121, + "endOffset": 969 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 976, + "endColumn": 121, + "endOffset": 1093 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 974, + "endColumn": 76, + "endOffset": 1046 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1098, + "endColumn": 76, + "endOffset": 1170 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1051, + "endColumn": 77, + "endOffset": 1124 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1175, + "endColumn": 77, + "endOffset": 1248 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1129, + "endColumn": 89, + "endOffset": 1214 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1253, + "endColumn": 89, + "endOffset": 1338 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1219, + "endColumn": 108, + "endOffset": 1323 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1343, + "endColumn": 108, + "endOffset": 1447 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 101, + "endOffset": 1425 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1452, + "endColumn": 101, + "endOffset": 1549 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1430, + "endColumn": 97, + "endOffset": 1523 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1554, + "endColumn": 97, + "endOffset": 1647 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1528, + "endColumn": 109, + "endOffset": 1633 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1652, + "endColumn": 109, + "endOffset": 1757 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1638, + "endColumn": 99, + "endOffset": 1733 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1762, + "endColumn": 99, + "endOffset": 1857 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1738, + "endColumn": 114, + "endOffset": 1848 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1862, + "endColumn": 114, + "endOffset": 1972 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1853, + "endColumn": 124, + "endOffset": 1973 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1977, + "endColumn": 124, + "endOffset": 2097 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1978, + "endColumn": 105, + "endOffset": 2079 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2102, + "endColumn": 105, + "endOffset": 2203 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2084, + "endColumn": 267, + "endOffset": 2347 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3509, + "endColumn": 271, + "endOffset": 3776 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2352, + "endColumn": 129, + "endOffset": 2477 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1342, + "endColumn": 129, + "endOffset": 1467 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2482, + "endColumn": 202, + "endOffset": 2680 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1135, + "endColumn": 206, + "endOffset": 1337 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2685, + "endColumn": 128, + "endOffset": 2809 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1006, + "endColumn": 128, + "endOffset": 1130 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2814, + "endColumn": 132, + "endOffset": 2942 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 873, + "endColumn": 132, + "endOffset": 1001 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2947, + "endColumn": 213, + "endOffset": 3156 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 434, + "endColumn": 217, + "endOffset": 647 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3161, + "endColumn": 216, + "endOffset": 3373 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 652, + "endColumn": 220, + "endOffset": 868 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3378, + "endColumn": 131, + "endOffset": 3505 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 302, + "endColumn": 131, + "endOffset": 429 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3510, + "endColumn": 177, + "endOffset": 3683 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2751, + "endColumn": 177, + "endOffset": 2924 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3688, + "endColumn": 116, + "endOffset": 3800 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2634, + "endColumn": 116, + "endOffset": 2746 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3805, + "endColumn": 174, + "endOffset": 3975 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2459, + "endColumn": 174, + "endOffset": 2629 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3980, + "endColumn": 120, + "endOffset": 4096 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2338, + "endColumn": 120, + "endOffset": 2454 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4101, + "endColumn": 131, + "endOffset": 4228 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 131, + "endOffset": 297 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4233, + "endColumn": 181, + "endOffset": 4410 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4218, + "endColumn": 181, + "endOffset": 4395 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4415, + "endColumn": 131, + "endOffset": 4542 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4086, + "endColumn": 131, + "endOffset": 4213 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4547, + "endColumn": 176, + "endOffset": 4719 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3909, + "endColumn": 176, + "endOffset": 4081 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4724, + "endColumn": 127, + "endOffset": 4847 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3781, + "endColumn": 127, + "endOffset": 3904 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4852, + "endColumn": 243, + "endOffset": 5091 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-hi\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 247, + "endOffset": 413 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5096, + "endColumn": 250, + "endOffset": 5342 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3051, + "endColumn": 254, + "endOffset": 3301 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5347, + "endColumn": 121, + "endOffset": 5464 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2929, + "endColumn": 121, + "endOffset": 3046 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5469, + "endColumn": 110, + "endOffset": 5575 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3306, + "endColumn": 110, + "endOffset": 3412 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5580, + "endColumn": 196, + "endOffset": 5772 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1604, + "endColumn": 200, + "endOffset": 1800 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5777, + "endColumn": 131, + "endOffset": 5904 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1472, + "endColumn": 131, + "endOffset": 1599 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5909, + "endColumn": 207, + "endOffset": 6112 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2126, + "endColumn": 211, + "endOffset": 2333 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6117, + "endColumn": 136, + "endOffset": 6249 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1989, + "endColumn": 136, + "endOffset": 2121 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6254, + "endColumn": 183, + "endOffset": 6433 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1805, + "endColumn": 183, + "endOffset": 1984 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6438, + "endColumn": 91, + "endOffset": 6525 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3417, + "endColumn": 91, + "endOffset": 3504 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6530, + "endColumn": 95, + "endOffset": 6621 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4400, + "endColumn": 95, + "endOffset": 4491 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6626, + "endColumn": 114, + "endOffset": 6736 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hi\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4496, + "endColumn": 114, + "endOffset": 4606 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6741, + "endColumn": 110, + "endOffset": 6847 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 110, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6852, + "endColumn": 115, + "endOffset": 6963 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 115, + "endOffset": 500 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6968, + "endColumn": 108, + "endOffset": 7072 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 505, + "endColumn": 108, + "endOffset": 609 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7077, + "endColumn": 109, + "endOffset": 7182 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 614, + "endColumn": 109, + "endOffset": 719 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7187, + "endColumn": 126, + "endOffset": 7309 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 724, + "endColumn": 126, + "endOffset": 846 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7314, + "endColumn": 95, + "endOffset": 7405 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 851, + "endColumn": 95, + "endOffset": 942 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7410, + "endColumn": 94, + "endOffset": 7500 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 947, + "endColumn": 94, + "endOffset": 1037 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7505, + "endColumn": 116, + "endOffset": 7617 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1042, + "endColumn": 116, + "endOffset": 1154 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7622, + "endColumn": 108, + "endOffset": 7726 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1159, + "endColumn": 108, + "endOffset": 1263 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7731, + "endColumn": 85, + "endOffset": 7812 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1268, + "endColumn": 85, + "endOffset": 1349 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7817, + "endColumn": 92, + "endOffset": 7905 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1354, + "endColumn": 92, + "endOffset": 1442 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7910, + "endColumn": 103, + "endOffset": 8009 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-hi\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 103, + "endOffset": 424 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8014, + "endColumn": 94, + "endOffset": 8104 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-hi\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8109, + "endColumn": 100, + "endOffset": 8205 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hi\\values-hi.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2208, + "endColumn": 100, + "endOffset": 2304 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8210, + "endColumn": 105, + "endOffset": 8311 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-hi\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 105, + "endOffset": 331 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-hr.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-hr.json new file mode 100644 index 0000000..188e889 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-hr.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-hr\\values-hr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 104, + "endOffset": 205 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 104, + "endOffset": 329 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 210, + "endColumn": 107, + "endOffset": 313 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 334, + "endColumn": 107, + "endOffset": 437 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 318, + "endColumn": 122, + "endOffset": 436 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 442, + "endColumn": 122, + "endOffset": 560 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 441, + "endColumn": 96, + "endOffset": 533 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 565, + "endColumn": 96, + "endOffset": 657 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 538, + "endColumn": 109, + "endOffset": 643 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 662, + "endColumn": 109, + "endOffset": 767 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 648, + "endColumn": 85, + "endOffset": 729 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 772, + "endColumn": 85, + "endOffset": 853 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 734, + "endColumn": 103, + "endOffset": 833 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 858, + "endColumn": 103, + "endOffset": 957 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 838, + "endColumn": 118, + "endOffset": 952 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 962, + "endColumn": 118, + "endOffset": 1076 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 957, + "endColumn": 83, + "endOffset": 1036 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1081, + "endColumn": 83, + "endOffset": 1160 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1041, + "endColumn": 82, + "endOffset": 1119 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1165, + "endColumn": 82, + "endOffset": 1243 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1124, + "endColumn": 85, + "endOffset": 1205 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1248, + "endColumn": 85, + "endOffset": 1329 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1210, + "endColumn": 103, + "endOffset": 1309 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1334, + "endColumn": 103, + "endOffset": 1433 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1314, + "endColumn": 112, + "endOffset": 1422 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 112, + "endOffset": 1546 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1427, + "endColumn": 105, + "endOffset": 1528 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1551, + "endColumn": 105, + "endOffset": 1652 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1533, + "endColumn": 104, + "endOffset": 1633 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1657, + "endColumn": 104, + "endOffset": 1757 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1638, + "endColumn": 112, + "endOffset": 1746 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1762, + "endColumn": 112, + "endOffset": 1870 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1751, + "endColumn": 106, + "endOffset": 1853 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1875, + "endColumn": 106, + "endOffset": 1977 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1858, + "endColumn": 122, + "endOffset": 1976 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1982, + "endColumn": 122, + "endOffset": 2100 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1981, + "endColumn": 96, + "endOffset": 2073 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2105, + "endColumn": 96, + "endOffset": 2197 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2078, + "endColumn": 259, + "endOffset": 2333 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3482, + "endColumn": 263, + "endOffset": 3741 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2338, + "endColumn": 127, + "endOffset": 2461 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1345, + "endColumn": 127, + "endOffset": 1468 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2466, + "endColumn": 188, + "endOffset": 2650 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1152, + "endColumn": 192, + "endOffset": 1340 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2655, + "endColumn": 131, + "endOffset": 2782 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1020, + "endColumn": 131, + "endOffset": 1147 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2787, + "endColumn": 128, + "endOffset": 2911 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 891, + "endColumn": 128, + "endOffset": 1015 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2916, + "endColumn": 222, + "endOffset": 3134 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 437, + "endColumn": 226, + "endOffset": 659 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3139, + "endColumn": 222, + "endOffset": 3357 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 664, + "endColumn": 226, + "endOffset": 886 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3362, + "endColumn": 131, + "endOffset": 3489 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 305, + "endColumn": 131, + "endOffset": 432 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3494, + "endColumn": 177, + "endOffset": 3667 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2735, + "endColumn": 177, + "endOffset": 2908 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3672, + "endColumn": 119, + "endOffset": 3787 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2615, + "endColumn": 119, + "endOffset": 2730 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3792, + "endColumn": 172, + "endOffset": 3960 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2442, + "endColumn": 172, + "endOffset": 2610 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3965, + "endColumn": 121, + "endOffset": 4082 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2320, + "endColumn": 121, + "endOffset": 2437 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4087, + "endColumn": 134, + "endOffset": 4217 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 134, + "endOffset": 300 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4222, + "endColumn": 169, + "endOffset": 4387 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4180, + "endColumn": 169, + "endOffset": 4345 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4392, + "endColumn": 128, + "endOffset": 4516 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4051, + "endColumn": 128, + "endOffset": 4175 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4521, + "endColumn": 176, + "endOffset": 4693 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3874, + "endColumn": 176, + "endOffset": 4046 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4698, + "endColumn": 127, + "endOffset": 4821 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3746, + "endColumn": 127, + "endOffset": 3869 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4826, + "endColumn": 234, + "endOffset": 5056 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-hr\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 238, + "endOffset": 404 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5061, + "endColumn": 235, + "endOffset": 5292 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3036, + "endColumn": 239, + "endOffset": 3271 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5297, + "endColumn": 122, + "endOffset": 5415 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2913, + "endColumn": 122, + "endOffset": 3031 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5420, + "endColumn": 108, + "endOffset": 5524 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3276, + "endColumn": 108, + "endOffset": 3380 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5529, + "endColumn": 188, + "endOffset": 5713 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1603, + "endColumn": 192, + "endOffset": 1791 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5718, + "endColumn": 129, + "endOffset": 5843 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1473, + "endColumn": 129, + "endOffset": 1598 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5848, + "endColumn": 205, + "endOffset": 6049 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2110, + "endColumn": 209, + "endOffset": 2315 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6054, + "endColumn": 140, + "endOffset": 6190 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 140, + "endOffset": 2105 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6195, + "endColumn": 172, + "endOffset": 6363 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1796, + "endColumn": 172, + "endOffset": 1964 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6368, + "endColumn": 96, + "endOffset": 6460 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3385, + "endColumn": 96, + "endOffset": 3477 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6465, + "endColumn": 91, + "endOffset": 6552 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4350, + "endColumn": 91, + "endOffset": 4437 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6557, + "endColumn": 110, + "endOffset": 6663 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hr\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4442, + "endColumn": 110, + "endOffset": 4548 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6668, + "endColumn": 110, + "endOffset": 6774 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 110, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6779, + "endColumn": 108, + "endOffset": 6883 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 108, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6888, + "endColumn": 109, + "endOffset": 6993 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 109, + "endOffset": 603 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6998, + "endColumn": 106, + "endOffset": 7100 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 608, + "endColumn": 106, + "endOffset": 710 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7105, + "endColumn": 127, + "endOffset": 7228 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 715, + "endColumn": 127, + "endOffset": 838 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7233, + "endColumn": 98, + "endOffset": 7327 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 843, + "endColumn": 98, + "endOffset": 937 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7332, + "endColumn": 101, + "endOffset": 7429 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 942, + "endColumn": 101, + "endOffset": 1039 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7434, + "endColumn": 117, + "endOffset": 7547 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1044, + "endColumn": 117, + "endOffset": 1157 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7552, + "endColumn": 108, + "endOffset": 7656 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1162, + "endColumn": 108, + "endOffset": 1266 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7661, + "endColumn": 85, + "endOffset": 7742 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1271, + "endColumn": 85, + "endOffset": 1352 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7747, + "endColumn": 93, + "endOffset": 7836 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1357, + "endColumn": 93, + "endOffset": 1446 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7841, + "endColumn": 111, + "endOffset": 7948 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-hr\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 330, + "endColumn": 111, + "endOffset": 437 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7953, + "endColumn": 99, + "endOffset": 8048 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-hr\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 99, + "endOffset": 325 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8053, + "endColumn": 100, + "endOffset": 8149 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hr\\values-hr.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2202, + "endColumn": 100, + "endOffset": 2298 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8154, + "endColumn": 107, + "endOffset": 8257 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-hr\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 107, + "endOffset": 333 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-hu.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-hu.json new file mode 100644 index 0000000..284957d --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-hu.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-hu\\values-hu.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 107, + "endOffset": 208 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 107, + "endOffset": 332 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 213, + "endColumn": 107, + "endOffset": 316 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 337, + "endColumn": 107, + "endOffset": 440 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 321, + "endColumn": 122, + "endOffset": 439 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 445, + "endColumn": 122, + "endOffset": 563 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 444, + "endColumn": 104, + "endOffset": 544 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 568, + "endColumn": 104, + "endOffset": 668 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 549, + "endColumn": 114, + "endOffset": 659 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 673, + "endColumn": 114, + "endOffset": 783 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 664, + "endColumn": 83, + "endOffset": 743 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 83, + "endOffset": 867 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 748, + "endColumn": 111, + "endOffset": 855 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 872, + "endColumn": 111, + "endOffset": 979 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 860, + "endColumn": 129, + "endOffset": 985 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 984, + "endColumn": 129, + "endOffset": 1109 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 990, + "endColumn": 75, + "endOffset": 1061 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1114, + "endColumn": 75, + "endOffset": 1185 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1066, + "endColumn": 75, + "endOffset": 1137 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1190, + "endColumn": 75, + "endOffset": 1261 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1142, + "endColumn": 82, + "endOffset": 1220 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 82, + "endOffset": 1344 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1225, + "endColumn": 109, + "endOffset": 1330 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1349, + "endColumn": 109, + "endOffset": 1454 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1335, + "endColumn": 110, + "endOffset": 1441 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1459, + "endColumn": 110, + "endOffset": 1565 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1446, + "endColumn": 99, + "endOffset": 1541 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1570, + "endColumn": 99, + "endOffset": 1665 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1546, + "endColumn": 110, + "endOffset": 1652 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1670, + "endColumn": 110, + "endOffset": 1776 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1657, + "endColumn": 107, + "endOffset": 1760 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1781, + "endColumn": 107, + "endOffset": 1884 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1765, + "endColumn": 118, + "endOffset": 1879 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1889, + "endColumn": 118, + "endOffset": 2003 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1884, + "endColumn": 133, + "endOffset": 2013 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2008, + "endColumn": 133, + "endOffset": 2137 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2018, + "endColumn": 102, + "endOffset": 2116 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2142, + "endColumn": 102, + "endOffset": 2240 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2121, + "endColumn": 309, + "endOffset": 2426 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3748, + "endColumn": 313, + "endOffset": 4057 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2431, + "endColumn": 140, + "endOffset": 2567 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1427, + "endColumn": 140, + "endOffset": 1563 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2572, + "endColumn": 215, + "endOffset": 2783 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1207, + "endColumn": 219, + "endOffset": 1422 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2788, + "endColumn": 139, + "endOffset": 2923 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1067, + "endColumn": 139, + "endOffset": 1202 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2928, + "endColumn": 140, + "endOffset": 3064 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 926, + "endColumn": 140, + "endOffset": 1062 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3069, + "endColumn": 232, + "endOffset": 3297 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 450, + "endColumn": 236, + "endOffset": 682 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3302, + "endColumn": 234, + "endOffset": 3532 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 687, + "endColumn": 238, + "endOffset": 921 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3537, + "endColumn": 139, + "endOffset": 3672 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 310, + "endColumn": 139, + "endOffset": 445 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3677, + "endColumn": 176, + "endOffset": 3849 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2932, + "endColumn": 176, + "endOffset": 3104 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3854, + "endColumn": 121, + "endOffset": 3971 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2810, + "endColumn": 121, + "endOffset": 2927 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3976, + "endColumn": 184, + "endOffset": 4156 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2625, + "endColumn": 184, + "endOffset": 2805 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4161, + "endColumn": 119, + "endOffset": 4276 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2505, + "endColumn": 119, + "endOffset": 2620 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4281, + "endColumn": 139, + "endOffset": 4416 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 139, + "endOffset": 305 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4421, + "endColumn": 180, + "endOffset": 4597 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4526, + "endColumn": 180, + "endOffset": 4702 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4602, + "endColumn": 149, + "endOffset": 4747 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4376, + "endColumn": 149, + "endOffset": 4521 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4752, + "endColumn": 181, + "endOffset": 4929 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4194, + "endColumn": 181, + "endOffset": 4371 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4934, + "endColumn": 131, + "endOffset": 5061 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 4062, + "endColumn": 131, + "endOffset": 4189 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 5066, + "endColumn": 294, + "endOffset": 5356 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-hu\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 298, + "endOffset": 464 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5361, + "endColumn": 294, + "endOffset": 5651 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3239, + "endColumn": 298, + "endOffset": 3533 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5656, + "endColumn": 129, + "endOffset": 5781 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 3109, + "endColumn": 129, + "endOffset": 3234 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5786, + "endColumn": 109, + "endOffset": 5891 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3538, + "endColumn": 109, + "endOffset": 3643 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5896, + "endColumn": 215, + "endOffset": 6107 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1707, + "endColumn": 219, + "endOffset": 1922 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 6112, + "endColumn": 138, + "endOffset": 6246 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1568, + "endColumn": 138, + "endOffset": 1702 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6251, + "endColumn": 230, + "endOffset": 6477 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2270, + "endColumn": 234, + "endOffset": 2500 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6482, + "endColumn": 140, + "endOffset": 6618 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2129, + "endColumn": 140, + "endOffset": 2265 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6623, + "endColumn": 201, + "endOffset": 6820 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1927, + "endColumn": 201, + "endOffset": 2124 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6825, + "endColumn": 99, + "endOffset": 6920 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3648, + "endColumn": 99, + "endOffset": 3743 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6925, + "endColumn": 97, + "endOffset": 7018 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4707, + "endColumn": 97, + "endOffset": 4800 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 7023, + "endColumn": 117, + "endOffset": 7136 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hu\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4805, + "endColumn": 117, + "endOffset": 4918 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 7141, + "endColumn": 116, + "endOffset": 7253 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 116, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 7258, + "endColumn": 105, + "endOffset": 7359 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 105, + "endOffset": 496 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7364, + "endColumn": 114, + "endOffset": 7474 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 501, + "endColumn": 114, + "endOffset": 611 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7479, + "endColumn": 105, + "endOffset": 7580 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 616, + "endColumn": 105, + "endOffset": 717 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7585, + "endColumn": 118, + "endOffset": 7699 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 722, + "endColumn": 118, + "endOffset": 836 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7704, + "endColumn": 103, + "endOffset": 7803 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 841, + "endColumn": 103, + "endOffset": 940 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7808, + "endColumn": 96, + "endOffset": 7900 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 96, + "endOffset": 1037 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7905, + "endColumn": 123, + "endOffset": 8024 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1042, + "endColumn": 123, + "endOffset": 1161 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 8029, + "endColumn": 108, + "endOffset": 8133 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1166, + "endColumn": 108, + "endOffset": 1270 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 8138, + "endColumn": 87, + "endOffset": 8221 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1275, + "endColumn": 87, + "endOffset": 1358 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 8226, + "endColumn": 94, + "endOffset": 8316 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1363, + "endColumn": 94, + "endOffset": 1453 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8321, + "endColumn": 105, + "endOffset": 8422 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-hu\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 327, + "endColumn": 105, + "endOffset": 428 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8427, + "endColumn": 96, + "endOffset": 8519 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-hu\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 96, + "endOffset": 322 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8524, + "endColumn": 100, + "endOffset": 8620 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hu\\values-hu.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2245, + "endColumn": 100, + "endOffset": 2341 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8625, + "endColumn": 110, + "endOffset": 8731 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-hu\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 110, + "endOffset": 336 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-hy-rAM.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-hy-rAM.json new file mode 100644 index 0000000..085d3b6 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-hy-rAM.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-hy-rAM\\values-hy-rAM.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 102, + "endOffset": 203 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 102, + "endOffset": 331 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 208, + "endColumn": 107, + "endOffset": 311 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 336, + "endColumn": 107, + "endOffset": 439 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 316, + "endColumn": 122, + "endOffset": 434 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 444, + "endColumn": 122, + "endOffset": 562 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 439, + "endColumn": 100, + "endOffset": 535 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 567, + "endColumn": 100, + "endOffset": 663 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 540, + "endColumn": 109, + "endOffset": 645 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 668, + "endColumn": 109, + "endOffset": 773 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 650, + "endColumn": 89, + "endOffset": 735 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 778, + "endColumn": 89, + "endOffset": 863 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 740, + "endColumn": 105, + "endOffset": 841 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 868, + "endColumn": 105, + "endOffset": 969 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 846, + "endColumn": 114, + "endOffset": 956 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 974, + "endColumn": 114, + "endOffset": 1084 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 961, + "endColumn": 81, + "endOffset": 1038 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1089, + "endColumn": 81, + "endOffset": 1166 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1043, + "endColumn": 80, + "endOffset": 1119 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1171, + "endColumn": 80, + "endOffset": 1247 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1124, + "endColumn": 84, + "endOffset": 1204 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1252, + "endColumn": 84, + "endOffset": 1332 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1209, + "endColumn": 106, + "endOffset": 1311 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1337, + "endColumn": 106, + "endOffset": 1439 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1316, + "endColumn": 106, + "endOffset": 1418 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1444, + "endColumn": 106, + "endOffset": 1546 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1423, + "endColumn": 98, + "endOffset": 1517 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1551, + "endColumn": 98, + "endOffset": 1645 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1522, + "endColumn": 109, + "endOffset": 1627 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1650, + "endColumn": 109, + "endOffset": 1755 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1632, + "endColumn": 106, + "endOffset": 1734 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1760, + "endColumn": 106, + "endOffset": 1862 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1739, + "endColumn": 100, + "endOffset": 1835 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1867, + "endColumn": 100, + "endOffset": 1963 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1840, + "endColumn": 119, + "endOffset": 1955 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1968, + "endColumn": 119, + "endOffset": 2083 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1960, + "endColumn": 98, + "endOffset": 2054 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2088, + "endColumn": 98, + "endOffset": 2182 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2059, + "endColumn": 290, + "endOffset": 2345 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3618, + "endColumn": 294, + "endOffset": 3908 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2350, + "endColumn": 136, + "endOffset": 2482 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1380, + "endColumn": 136, + "endOffset": 1512 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2487, + "endColumn": 196, + "endOffset": 2679 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1179, + "endColumn": 200, + "endOffset": 1375 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2684, + "endColumn": 135, + "endOffset": 2815 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1043, + "endColumn": 135, + "endOffset": 1174 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2820, + "endColumn": 138, + "endOffset": 2954 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 904, + "endColumn": 138, + "endOffset": 1038 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2959, + "endColumn": 221, + "endOffset": 3176 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 451, + "endColumn": 225, + "endOffset": 672 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3181, + "endColumn": 222, + "endOffset": 3399 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 677, + "endColumn": 226, + "endOffset": 899 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3404, + "endColumn": 137, + "endOffset": 3537 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 313, + "endColumn": 137, + "endOffset": 446 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3542, + "endColumn": 167, + "endOffset": 3705 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2840, + "endColumn": 167, + "endOffset": 3003 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3710, + "endColumn": 121, + "endOffset": 3827 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2718, + "endColumn": 121, + "endOffset": 2835 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3832, + "endColumn": 178, + "endOffset": 4006 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2539, + "endColumn": 178, + "endOffset": 2713 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4011, + "endColumn": 119, + "endOffset": 4126 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2419, + "endColumn": 119, + "endOffset": 2534 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4131, + "endColumn": 142, + "endOffset": 4269 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 142, + "endOffset": 308 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4274, + "endColumn": 167, + "endOffset": 4437 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4338, + "endColumn": 167, + "endOffset": 4501 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4442, + "endColumn": 131, + "endOffset": 4569 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4206, + "endColumn": 131, + "endOffset": 4333 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4574, + "endColumn": 169, + "endOffset": 4739 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4036, + "endColumn": 169, + "endOffset": 4201 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4744, + "endColumn": 122, + "endOffset": 4862 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3913, + "endColumn": 122, + "endOffset": 4031 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4867, + "endColumn": 258, + "endOffset": 5121 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-hy-rAM\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 262, + "endOffset": 428 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5126, + "endColumn": 270, + "endOffset": 5392 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3139, + "endColumn": 274, + "endOffset": 3409 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5397, + "endColumn": 130, + "endOffset": 5523 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 3008, + "endColumn": 130, + "endOffset": 3134 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5528, + "endColumn": 109, + "endOffset": 5633 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3414, + "endColumn": 109, + "endOffset": 3519 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5638, + "endColumn": 198, + "endOffset": 5832 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1655, + "endColumn": 202, + "endOffset": 1853 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5837, + "endColumn": 137, + "endOffset": 5970 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1517, + "endColumn": 137, + "endOffset": 1650 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5975, + "endColumn": 220, + "endOffset": 6191 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2194, + "endColumn": 224, + "endOffset": 2414 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6196, + "endColumn": 139, + "endOffset": 6331 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2054, + "endColumn": 139, + "endOffset": 2189 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6336, + "endColumn": 195, + "endOffset": 6527 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1858, + "endColumn": 195, + "endOffset": 2049 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6532, + "endColumn": 93, + "endOffset": 6621 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3524, + "endColumn": 93, + "endOffset": 3613 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6626, + "endColumn": 96, + "endOffset": 6718 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4506, + "endColumn": 96, + "endOffset": 4598 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6723, + "endColumn": 111, + "endOffset": 6830 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-hy-rAM\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4603, + "endColumn": 111, + "endOffset": 4710 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6835, + "endColumn": 111, + "endOffset": 6942 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 111, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6947, + "endColumn": 112, + "endOffset": 7055 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 112, + "endOffset": 502 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7060, + "endColumn": 100, + "endOffset": 7156 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 507, + "endColumn": 100, + "endOffset": 603 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7161, + "endColumn": 101, + "endOffset": 7258 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 608, + "endColumn": 101, + "endOffset": 705 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7263, + "endColumn": 131, + "endOffset": 7390 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 710, + "endColumn": 131, + "endOffset": 837 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7395, + "endColumn": 95, + "endOffset": 7486 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 842, + "endColumn": 95, + "endOffset": 933 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7491, + "endColumn": 98, + "endOffset": 7585 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 938, + "endColumn": 98, + "endOffset": 1032 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7590, + "endColumn": 136, + "endOffset": 7722 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1037, + "endColumn": 136, + "endOffset": 1169 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7727, + "endColumn": 112, + "endOffset": 7835 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1174, + "endColumn": 112, + "endOffset": 1282 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7840, + "endColumn": 87, + "endOffset": 7923 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1287, + "endColumn": 87, + "endOffset": 1370 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7928, + "endColumn": 92, + "endOffset": 8016 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1375, + "endColumn": 92, + "endOffset": 1463 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8021, + "endColumn": 110, + "endOffset": 8127 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-hy-rAM\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 327, + "endColumn": 110, + "endOffset": 433 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8132, + "endColumn": 96, + "endOffset": 8224 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-hy-rAM\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 96, + "endOffset": 322 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8229, + "endColumn": 100, + "endOffset": 8325 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-hy-rAM\\values-hy-rAM.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2187, + "endColumn": 100, + "endOffset": 2283 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-in.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-in.json new file mode 100644 index 0000000..735997b --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-in.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-in\\values-in.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 109, + "endOffset": 210 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 109, + "endOffset": 334 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 215, + "endColumn": 107, + "endOffset": 318 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 339, + "endColumn": 107, + "endOffset": 442 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 323, + "endColumn": 122, + "endOffset": 441 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 447, + "endColumn": 122, + "endOffset": 565 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 446, + "endColumn": 101, + "endOffset": 543 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 570, + "endColumn": 101, + "endOffset": 667 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 548, + "endColumn": 104, + "endOffset": 648 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 672, + "endColumn": 104, + "endOffset": 772 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 653, + "endColumn": 86, + "endOffset": 735 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 777, + "endColumn": 86, + "endOffset": 859 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 740, + "endColumn": 103, + "endOffset": 839 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 864, + "endColumn": 103, + "endOffset": 963 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 844, + "endColumn": 115, + "endOffset": 955 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 968, + "endColumn": 115, + "endOffset": 1079 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 960, + "endColumn": 81, + "endOffset": 1037 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1084, + "endColumn": 81, + "endOffset": 1161 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1042, + "endColumn": 78, + "endOffset": 1116 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1166, + "endColumn": 78, + "endOffset": 1240 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1121, + "endColumn": 85, + "endOffset": 1202 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1245, + "endColumn": 85, + "endOffset": 1326 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1207, + "endColumn": 102, + "endOffset": 1305 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1331, + "endColumn": 102, + "endOffset": 1429 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1310, + "endColumn": 108, + "endOffset": 1414 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1434, + "endColumn": 108, + "endOffset": 1538 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1419, + "endColumn": 100, + "endOffset": 1515 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1543, + "endColumn": 100, + "endOffset": 1639 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1520, + "endColumn": 103, + "endOffset": 1619 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1644, + "endColumn": 103, + "endOffset": 1743 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1624, + "endColumn": 107, + "endOffset": 1727 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1748, + "endColumn": 107, + "endOffset": 1851 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1732, + "endColumn": 107, + "endOffset": 1835 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1856, + "endColumn": 107, + "endOffset": 1959 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1840, + "endColumn": 122, + "endOffset": 1958 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1964, + "endColumn": 122, + "endOffset": 2082 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1963, + "endColumn": 98, + "endOffset": 2057 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2087, + "endColumn": 98, + "endOffset": 2181 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2062, + "endColumn": 266, + "endOffset": 2324 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3490, + "endColumn": 270, + "endOffset": 3756 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2329, + "endColumn": 128, + "endOffset": 2453 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1336, + "endColumn": 128, + "endOffset": 1460 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2458, + "endColumn": 195, + "endOffset": 2649 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1136, + "endColumn": 199, + "endOffset": 1331 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2654, + "endColumn": 127, + "endOffset": 2777 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1008, + "endColumn": 127, + "endOffset": 1131 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2782, + "endColumn": 129, + "endOffset": 2907 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 878, + "endColumn": 129, + "endOffset": 1003 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2912, + "endColumn": 216, + "endOffset": 3124 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 435, + "endColumn": 220, + "endOffset": 651 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3129, + "endColumn": 217, + "endOffset": 3342 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 656, + "endColumn": 221, + "endOffset": 873 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3347, + "endColumn": 128, + "endOffset": 3471 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 306, + "endColumn": 128, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3476, + "endColumn": 172, + "endOffset": 3644 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2737, + "endColumn": 172, + "endOffset": 2905 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3649, + "endColumn": 121, + "endOffset": 3766 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2615, + "endColumn": 121, + "endOffset": 2732 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3771, + "endColumn": 166, + "endOffset": 3933 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2448, + "endColumn": 166, + "endOffset": 2610 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3938, + "endColumn": 124, + "endOffset": 4058 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2323, + "endColumn": 124, + "endOffset": 2443 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4063, + "endColumn": 135, + "endOffset": 4194 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 135, + "endOffset": 301 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4199, + "endColumn": 166, + "endOffset": 4361 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4179, + "endColumn": 166, + "endOffset": 4341 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4366, + "endColumn": 126, + "endOffset": 4488 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4052, + "endColumn": 126, + "endOffset": 4174 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4493, + "endColumn": 171, + "endOffset": 4660 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3880, + "endColumn": 171, + "endOffset": 4047 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4665, + "endColumn": 118, + "endOffset": 4779 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3761, + "endColumn": 118, + "endOffset": 3875 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4784, + "endColumn": 247, + "endOffset": 5027 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-in\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 251, + "endOffset": 417 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5032, + "endColumn": 250, + "endOffset": 5278 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3033, + "endColumn": 254, + "endOffset": 3283 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5283, + "endColumn": 122, + "endOffset": 5401 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2910, + "endColumn": 122, + "endOffset": 3028 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5406, + "endColumn": 108, + "endOffset": 5510 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3288, + "endColumn": 108, + "endOffset": 3392 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5515, + "endColumn": 194, + "endOffset": 5705 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1593, + "endColumn": 198, + "endOffset": 1787 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5710, + "endColumn": 127, + "endOffset": 5833 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1465, + "endColumn": 127, + "endOffset": 1588 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5838, + "endColumn": 213, + "endOffset": 6047 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2105, + "endColumn": 217, + "endOffset": 2318 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6052, + "endColumn": 138, + "endOffset": 6186 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1966, + "endColumn": 138, + "endOffset": 2100 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6191, + "endColumn": 173, + "endOffset": 6360 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1792, + "endColumn": 173, + "endOffset": 1961 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6365, + "endColumn": 92, + "endOffset": 6453 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3397, + "endColumn": 92, + "endOffset": 3485 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6458, + "endColumn": 89, + "endOffset": 6543 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4346, + "endColumn": 89, + "endOffset": 4431 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6548, + "endColumn": 108, + "endOffset": 6652 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-in\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4436, + "endColumn": 108, + "endOffset": 4540 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6657, + "endColumn": 109, + "endOffset": 6762 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-in\\values-in.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 109, + "endOffset": 383 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6767, + "endColumn": 112, + "endOffset": 6875 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-in\\values-in.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 388, + "endColumn": 112, + "endOffset": 496 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6880, + "endColumn": 110, + "endOffset": 6986 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-in\\values-in.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 501, + "endColumn": 110, + "endOffset": 607 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6991, + "endColumn": 112, + "endOffset": 7099 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-in\\values-in.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 112, + "endOffset": 720 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7104, + "endColumn": 130, + "endOffset": 7230 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-in\\values-in.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 725, + "endColumn": 130, + "endOffset": 851 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7235, + "endColumn": 94, + "endOffset": 7325 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-in\\values-in.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 856, + "endColumn": 94, + "endOffset": 946 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7330, + "endColumn": 94, + "endOffset": 7420 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-in\\values-in.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 951, + "endColumn": 94, + "endOffset": 1041 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7425, + "endColumn": 116, + "endOffset": 7537 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-in\\values-in.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 116, + "endOffset": 1158 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7542, + "endColumn": 107, + "endOffset": 7645 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-in\\values-in.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 107, + "endOffset": 1266 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7650, + "endColumn": 85, + "endOffset": 7731 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-in\\values-in.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1271, + "endColumn": 85, + "endOffset": 1352 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7736, + "endColumn": 95, + "endOffset": 7827 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-in\\values-in.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1357, + "endColumn": 95, + "endOffset": 1448 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7832, + "endColumn": 107, + "endOffset": 7935 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-in\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 328, + "endColumn": 107, + "endOffset": 431 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7940, + "endColumn": 97, + "endOffset": 8033 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-in\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 97, + "endOffset": 323 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8038, + "endColumn": 100, + "endOffset": 8134 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-in\\values-in.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2186, + "endColumn": 100, + "endOffset": 2282 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8139, + "endColumn": 107, + "endOffset": 8242 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-in\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 107, + "endOffset": 333 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-is-rIS.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-is-rIS.json new file mode 100644 index 0000000..a1f4ab6 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-is-rIS.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-is-rIS\\values-is-rIS.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 99, + "endOffset": 200 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 99, + "endOffset": 328 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 205, + "endColumn": 107, + "endOffset": 308 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 333, + "endColumn": 107, + "endOffset": 436 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 313, + "endColumn": 122, + "endOffset": 431 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 441, + "endColumn": 122, + "endOffset": 559 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 436, + "endColumn": 96, + "endOffset": 528 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 564, + "endColumn": 96, + "endOffset": 656 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 533, + "endColumn": 111, + "endOffset": 640 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 661, + "endColumn": 111, + "endOffset": 768 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 645, + "endColumn": 84, + "endOffset": 725 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 773, + "endColumn": 84, + "endOffset": 853 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 730, + "endColumn": 100, + "endOffset": 826 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 858, + "endColumn": 100, + "endOffset": 954 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 831, + "endColumn": 113, + "endOffset": 940 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 959, + "endColumn": 113, + "endOffset": 1068 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 79, + "endOffset": 1020 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 79, + "endOffset": 1148 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1025, + "endColumn": 79, + "endOffset": 1100 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1153, + "endColumn": 79, + "endOffset": 1228 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1105, + "endColumn": 80, + "endOffset": 1181 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1233, + "endColumn": 80, + "endOffset": 1309 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 109, + "endOffset": 1291 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1314, + "endColumn": 109, + "endOffset": 1419 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1296, + "endColumn": 107, + "endOffset": 1399 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1424, + "endColumn": 107, + "endOffset": 1527 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1404, + "endColumn": 97, + "endOffset": 1497 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1532, + "endColumn": 97, + "endOffset": 1625 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1502, + "endColumn": 108, + "endOffset": 1606 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1630, + "endColumn": 108, + "endOffset": 1734 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1611, + "endColumn": 98, + "endOffset": 1705 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1739, + "endColumn": 98, + "endOffset": 1833 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1710, + "endColumn": 102, + "endOffset": 1808 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1838, + "endColumn": 102, + "endOffset": 1936 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1813, + "endColumn": 117, + "endOffset": 1926 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1941, + "endColumn": 117, + "endOffset": 2054 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1931, + "endColumn": 97, + "endOffset": 2024 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2059, + "endColumn": 97, + "endOffset": 2152 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2029, + "endColumn": 262, + "endOffset": 2287 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3464, + "endColumn": 266, + "endOffset": 3726 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2292, + "endColumn": 127, + "endOffset": 2415 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1307, + "endColumn": 127, + "endOffset": 1430 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2420, + "endColumn": 185, + "endOffset": 2601 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 189, + "endOffset": 1302 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2606, + "endColumn": 126, + "endOffset": 2728 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 990, + "endColumn": 126, + "endOffset": 1112 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2733, + "endColumn": 127, + "endOffset": 2856 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 862, + "endColumn": 127, + "endOffset": 985 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2861, + "endColumn": 206, + "endOffset": 3063 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 432, + "endColumn": 210, + "endOffset": 638 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3068, + "endColumn": 214, + "endOffset": 3278 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 643, + "endColumn": 218, + "endOffset": 857 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3283, + "endColumn": 126, + "endOffset": 3405 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 305, + "endColumn": 126, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3410, + "endColumn": 184, + "endOffset": 3590 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2694, + "endColumn": 184, + "endOffset": 2874 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3595, + "endColumn": 123, + "endOffset": 3714 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2570, + "endColumn": 123, + "endOffset": 2689 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3719, + "endColumn": 168, + "endOffset": 3883 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2401, + "endColumn": 168, + "endOffset": 2565 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3888, + "endColumn": 114, + "endOffset": 3998 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2286, + "endColumn": 114, + "endOffset": 2396 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4003, + "endColumn": 134, + "endOffset": 4133 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 134, + "endOffset": 300 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4138, + "endColumn": 174, + "endOffset": 4308 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4155, + "endColumn": 174, + "endOffset": 4325 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4313, + "endColumn": 125, + "endOffset": 4434 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4029, + "endColumn": 125, + "endOffset": 4150 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4439, + "endColumn": 169, + "endOffset": 4604 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3859, + "endColumn": 169, + "endOffset": 4024 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4609, + "endColumn": 127, + "endOffset": 4732 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3731, + "endColumn": 127, + "endOffset": 3854 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4737, + "endColumn": 257, + "endOffset": 4990 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-is-rIS\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 261, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4995, + "endColumn": 255, + "endOffset": 5246 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3003, + "endColumn": 259, + "endOffset": 3258 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5251, + "endColumn": 123, + "endOffset": 5370 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2879, + "endColumn": 123, + "endOffset": 2998 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5375, + "endColumn": 107, + "endOffset": 5478 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3263, + "endColumn": 107, + "endOffset": 3366 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5483, + "endColumn": 187, + "endOffset": 5666 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1563, + "endColumn": 191, + "endOffset": 1750 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5671, + "endColumn": 127, + "endOffset": 5794 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1435, + "endColumn": 127, + "endOffset": 1558 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5799, + "endColumn": 200, + "endOffset": 5995 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2081, + "endColumn": 204, + "endOffset": 2281 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6000, + "endColumn": 141, + "endOffset": 6137 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1939, + "endColumn": 141, + "endOffset": 2076 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6142, + "endColumn": 183, + "endOffset": 6321 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1755, + "endColumn": 183, + "endOffset": 1934 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6326, + "endColumn": 92, + "endOffset": 6414 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3371, + "endColumn": 92, + "endOffset": 3459 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6419, + "endColumn": 92, + "endOffset": 6507 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4330, + "endColumn": 92, + "endOffset": 4418 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6512, + "endColumn": 108, + "endOffset": 6616 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-is-rIS\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4423, + "endColumn": 108, + "endOffset": 4527 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6621, + "endColumn": 108, + "endOffset": 6725 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 108, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6730, + "endColumn": 108, + "endOffset": 6834 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 108, + "endOffset": 495 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6839, + "endColumn": 100, + "endOffset": 6935 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 500, + "endColumn": 100, + "endOffset": 596 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6940, + "endColumn": 102, + "endOffset": 7038 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 601, + "endColumn": 102, + "endOffset": 699 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7043, + "endColumn": 126, + "endOffset": 7165 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 704, + "endColumn": 126, + "endOffset": 826 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7170, + "endColumn": 93, + "endOffset": 7259 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 831, + "endColumn": 93, + "endOffset": 920 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7264, + "endColumn": 94, + "endOffset": 7354 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 925, + "endColumn": 94, + "endOffset": 1015 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7359, + "endColumn": 120, + "endOffset": 7475 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1020, + "endColumn": 120, + "endOffset": 1136 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7480, + "endColumn": 106, + "endOffset": 7582 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1141, + "endColumn": 106, + "endOffset": 1243 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7587, + "endColumn": 84, + "endOffset": 7667 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1248, + "endColumn": 84, + "endOffset": 1328 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7672, + "endColumn": 90, + "endOffset": 7758 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1333, + "endColumn": 90, + "endOffset": 1419 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7763, + "endColumn": 102, + "endOffset": 7861 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-is-rIS\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 102, + "endOffset": 423 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7866, + "endColumn": 94, + "endOffset": 7956 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-is-rIS\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 7961, + "endColumn": 100, + "endOffset": 8057 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-is-rIS\\values-is-rIS.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2157, + "endColumn": 100, + "endOffset": 2253 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-it.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-it.json new file mode 100644 index 0000000..5e8b933 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-it.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-it\\values-it.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 108, + "endOffset": 209 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 108, + "endOffset": 333 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 214, + "endColumn": 107, + "endOffset": 317 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 338, + "endColumn": 107, + "endOffset": 441 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 322, + "endColumn": 122, + "endOffset": 440 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 446, + "endColumn": 122, + "endOffset": 564 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 445, + "endColumn": 99, + "endOffset": 540 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 569, + "endColumn": 99, + "endOffset": 664 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 545, + "endColumn": 108, + "endOffset": 649 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 669, + "endColumn": 108, + "endOffset": 773 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 654, + "endColumn": 83, + "endOffset": 733 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 778, + "endColumn": 83, + "endOffset": 857 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 738, + "endColumn": 108, + "endOffset": 842 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 862, + "endColumn": 108, + "endOffset": 966 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 847, + "endColumn": 124, + "endOffset": 967 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 971, + "endColumn": 124, + "endOffset": 1091 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 972, + "endColumn": 76, + "endOffset": 1044 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1096, + "endColumn": 76, + "endOffset": 1168 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1049, + "endColumn": 75, + "endOffset": 1120 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1173, + "endColumn": 75, + "endOffset": 1244 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1125, + "endColumn": 80, + "endOffset": 1201 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1249, + "endColumn": 80, + "endOffset": 1325 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1206, + "endColumn": 105, + "endOffset": 1307 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1330, + "endColumn": 105, + "endOffset": 1431 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1312, + "endColumn": 107, + "endOffset": 1415 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1436, + "endColumn": 107, + "endOffset": 1539 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1420, + "endColumn": 97, + "endOffset": 1513 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1544, + "endColumn": 97, + "endOffset": 1637 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1518, + "endColumn": 103, + "endOffset": 1617 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1642, + "endColumn": 103, + "endOffset": 1741 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1622, + "endColumn": 104, + "endOffset": 1722 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1746, + "endColumn": 104, + "endOffset": 1846 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1727, + "endColumn": 106, + "endOffset": 1829 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1851, + "endColumn": 106, + "endOffset": 1953 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1834, + "endColumn": 121, + "endOffset": 1951 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1958, + "endColumn": 121, + "endOffset": 2075 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1956, + "endColumn": 99, + "endOffset": 2051 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2080, + "endColumn": 99, + "endOffset": 2175 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2056, + "endColumn": 270, + "endOffset": 2322 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3533, + "endColumn": 274, + "endOffset": 3803 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2327, + "endColumn": 127, + "endOffset": 2450 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1312, + "endColumn": 127, + "endOffset": 1435 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2455, + "endColumn": 182, + "endOffset": 2633 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1125, + "endColumn": 186, + "endOffset": 1307 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2638, + "endColumn": 126, + "endOffset": 2760 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 998, + "endColumn": 126, + "endOffset": 1120 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2765, + "endColumn": 130, + "endOffset": 2891 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 867, + "endColumn": 130, + "endOffset": 993 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2896, + "endColumn": 212, + "endOffset": 3104 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 434, + "endColumn": 216, + "endOffset": 646 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3109, + "endColumn": 211, + "endOffset": 3316 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 651, + "endColumn": 215, + "endOffset": 862 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3321, + "endColumn": 129, + "endOffset": 3446 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 304, + "endColumn": 129, + "endOffset": 429 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3451, + "endColumn": 188, + "endOffset": 3635 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2751, + "endColumn": 188, + "endOffset": 2935 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3640, + "endColumn": 123, + "endOffset": 3759 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2627, + "endColumn": 123, + "endOffset": 2746 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3764, + "endColumn": 178, + "endOffset": 3938 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2448, + "endColumn": 178, + "endOffset": 2622 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3943, + "endColumn": 120, + "endOffset": 4059 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2327, + "endColumn": 120, + "endOffset": 2443 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4064, + "endColumn": 133, + "endOffset": 4193 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 133, + "endOffset": 299 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4198, + "endColumn": 181, + "endOffset": 4375 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4252, + "endColumn": 181, + "endOffset": 4429 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4380, + "endColumn": 134, + "endOffset": 4510 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4117, + "endColumn": 134, + "endOffset": 4247 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4515, + "endColumn": 180, + "endOffset": 4691 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3936, + "endColumn": 180, + "endOffset": 4112 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4696, + "endColumn": 127, + "endOffset": 4819 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3808, + "endColumn": 127, + "endOffset": 3931 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4824, + "endColumn": 260, + "endOffset": 5080 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-it\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 264, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5085, + "endColumn": 259, + "endOffset": 5340 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3064, + "endColumn": 263, + "endOffset": 3323 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5345, + "endColumn": 123, + "endOffset": 5464 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2940, + "endColumn": 123, + "endOffset": 3059 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5469, + "endColumn": 108, + "endOffset": 5573 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3328, + "endColumn": 108, + "endOffset": 3432 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5578, + "endColumn": 184, + "endOffset": 5758 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1569, + "endColumn": 188, + "endOffset": 1753 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5763, + "endColumn": 128, + "endOffset": 5887 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1440, + "endColumn": 128, + "endOffset": 1564 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5892, + "endColumn": 214, + "endOffset": 6102 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2108, + "endColumn": 218, + "endOffset": 2322 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6107, + "endColumn": 138, + "endOffset": 6241 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 138, + "endOffset": 2103 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6246, + "endColumn": 210, + "endOffset": 6452 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1758, + "endColumn": 210, + "endOffset": 1964 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6457, + "endColumn": 95, + "endOffset": 6548 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3437, + "endColumn": 95, + "endOffset": 3528 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6553, + "endColumn": 90, + "endOffset": 6639 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4434, + "endColumn": 90, + "endOffset": 4520 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6644, + "endColumn": 106, + "endOffset": 6746 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-it\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4525, + "endColumn": 106, + "endOffset": 4627 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6751, + "endColumn": 109, + "endOffset": 6856 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-it\\values-it.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 109, + "endOffset": 383 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6861, + "endColumn": 114, + "endOffset": 6971 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-it\\values-it.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 388, + "endColumn": 114, + "endOffset": 498 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6976, + "endColumn": 110, + "endOffset": 7082 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-it\\values-it.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 110, + "endOffset": 609 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7087, + "endColumn": 105, + "endOffset": 7188 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-it\\values-it.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 614, + "endColumn": 105, + "endOffset": 715 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7193, + "endColumn": 134, + "endOffset": 7323 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-it\\values-it.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 720, + "endColumn": 134, + "endOffset": 850 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7328, + "endColumn": 95, + "endOffset": 7419 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-it\\values-it.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 855, + "endColumn": 95, + "endOffset": 946 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7424, + "endColumn": 98, + "endOffset": 7518 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-it\\values-it.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 951, + "endColumn": 98, + "endOffset": 1045 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7523, + "endColumn": 125, + "endOffset": 7644 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-it\\values-it.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 125, + "endOffset": 1171 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7649, + "endColumn": 112, + "endOffset": 7757 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-it\\values-it.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1176, + "endColumn": 112, + "endOffset": 1284 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7762, + "endColumn": 86, + "endOffset": 7844 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-it\\values-it.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1289, + "endColumn": 86, + "endOffset": 1371 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7849, + "endColumn": 97, + "endOffset": 7942 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-it\\values-it.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1376, + "endColumn": 97, + "endOffset": 1469 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7947, + "endColumn": 106, + "endOffset": 8049 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-it\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 106, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8054, + "endColumn": 94, + "endOffset": 8144 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-it\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8149, + "endColumn": 100, + "endOffset": 8245 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-it\\values-it.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2180, + "endColumn": 100, + "endOffset": 2276 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8250, + "endColumn": 108, + "endOffset": 8354 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-it\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 108, + "endOffset": 334 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-iw.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-iw.json new file mode 100644 index 0000000..68d086f --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-iw.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-iw\\values-iw.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 103, + "endOffset": 204 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 103, + "endOffset": 328 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 209, + "endColumn": 109, + "endOffset": 314 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 333, + "endColumn": 109, + "endOffset": 438 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 319, + "endColumn": 125, + "endOffset": 440 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 443, + "endColumn": 125, + "endOffset": 564 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 445, + "endColumn": 98, + "endOffset": 539 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 569, + "endColumn": 98, + "endOffset": 663 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 544, + "endColumn": 107, + "endOffset": 647 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 668, + "endColumn": 107, + "endOffset": 771 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 652, + "endColumn": 83, + "endOffset": 731 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 776, + "endColumn": 83, + "endOffset": 855 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 736, + "endColumn": 99, + "endOffset": 831 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 860, + "endColumn": 99, + "endOffset": 955 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 836, + "endColumn": 113, + "endOffset": 945 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 960, + "endColumn": 113, + "endOffset": 1069 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 950, + "endColumn": 77, + "endOffset": 1023 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1074, + "endColumn": 77, + "endOffset": 1147 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1028, + "endColumn": 77, + "endOffset": 1101 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1152, + "endColumn": 77, + "endOffset": 1225 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1106, + "endColumn": 78, + "endOffset": 1180 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1230, + "endColumn": 78, + "endOffset": 1304 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1185, + "endColumn": 101, + "endOffset": 1282 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1309, + "endColumn": 101, + "endOffset": 1406 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1287, + "endColumn": 103, + "endOffset": 1386 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1411, + "endColumn": 103, + "endOffset": 1510 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1391, + "endColumn": 95, + "endOffset": 1482 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1515, + "endColumn": 95, + "endOffset": 1606 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1487, + "endColumn": 102, + "endOffset": 1585 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1611, + "endColumn": 102, + "endOffset": 1709 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1590, + "endColumn": 100, + "endOffset": 1686 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1714, + "endColumn": 100, + "endOffset": 1810 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1691, + "endColumn": 99, + "endOffset": 1786 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1815, + "endColumn": 99, + "endOffset": 1910 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1791, + "endColumn": 115, + "endOffset": 1902 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1915, + "endColumn": 115, + "endOffset": 2026 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1907, + "endColumn": 95, + "endOffset": 1998 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2031, + "endColumn": 95, + "endOffset": 2122 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2003, + "endColumn": 237, + "endOffset": 2236 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3340, + "endColumn": 241, + "endOffset": 3577 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2241, + "endColumn": 127, + "endOffset": 2364 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1300, + "endColumn": 127, + "endOffset": 1423 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2369, + "endColumn": 185, + "endOffset": 2550 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1110, + "endColumn": 189, + "endOffset": 1295 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2555, + "endColumn": 126, + "endOffset": 2677 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 983, + "endColumn": 126, + "endOffset": 1105 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2682, + "endColumn": 127, + "endOffset": 2805 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 855, + "endColumn": 127, + "endOffset": 978 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2810, + "endColumn": 207, + "endOffset": 3013 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 430, + "endColumn": 211, + "endOffset": 637 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3018, + "endColumn": 208, + "endOffset": 3222 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 642, + "endColumn": 212, + "endOffset": 850 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3227, + "endColumn": 126, + "endOffset": 3349 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 303, + "endColumn": 126, + "endOffset": 425 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3354, + "endColumn": 153, + "endOffset": 3503 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2636, + "endColumn": 153, + "endOffset": 2785 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3508, + "endColumn": 118, + "endOffset": 3622 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2517, + "endColumn": 118, + "endOffset": 2631 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3627, + "endColumn": 155, + "endOffset": 3778 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2361, + "endColumn": 155, + "endOffset": 2512 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3783, + "endColumn": 115, + "endOffset": 3894 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2245, + "endColumn": 115, + "endOffset": 2356 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 3899, + "endColumn": 132, + "endOffset": 4027 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 132, + "endOffset": 298 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4032, + "endColumn": 150, + "endOffset": 4178 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3985, + "endColumn": 150, + "endOffset": 4131 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4183, + "endColumn": 123, + "endOffset": 4302 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3861, + "endColumn": 123, + "endOffset": 3980 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4307, + "endColumn": 158, + "endOffset": 4461 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3702, + "endColumn": 158, + "endOffset": 3856 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4466, + "endColumn": 119, + "endOffset": 4581 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3582, + "endColumn": 119, + "endOffset": 3697 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4586, + "endColumn": 216, + "endOffset": 4798 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-iw\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 220, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4803, + "endColumn": 228, + "endOffset": 5027 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2913, + "endColumn": 232, + "endOffset": 3141 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5032, + "endColumn": 122, + "endOffset": 5150 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2790, + "endColumn": 122, + "endOffset": 2908 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5155, + "endColumn": 104, + "endOffset": 5255 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3146, + "endColumn": 104, + "endOffset": 3246 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5260, + "endColumn": 185, + "endOffset": 5441 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1553, + "endColumn": 189, + "endOffset": 1738 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5446, + "endColumn": 124, + "endOffset": 5566 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1428, + "endColumn": 124, + "endOffset": 1548 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5571, + "endColumn": 192, + "endOffset": 5759 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2048, + "endColumn": 196, + "endOffset": 2240 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5764, + "endColumn": 129, + "endOffset": 5889 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1918, + "endColumn": 129, + "endOffset": 2043 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 5894, + "endColumn": 174, + "endOffset": 6064 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1743, + "endColumn": 174, + "endOffset": 1913 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6069, + "endColumn": 88, + "endOffset": 6153 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3251, + "endColumn": 88, + "endOffset": 3335 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6158, + "endColumn": 89, + "endOffset": 6243 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4136, + "endColumn": 89, + "endOffset": 4221 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6248, + "endColumn": 110, + "endOffset": 6354 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-iw\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4226, + "endColumn": 110, + "endOffset": 4332 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6359, + "endColumn": 104, + "endOffset": 6459 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 104, + "endOffset": 378 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6464, + "endColumn": 104, + "endOffset": 6564 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 383, + "endColumn": 104, + "endOffset": 483 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6569, + "endColumn": 99, + "endOffset": 6664 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 488, + "endColumn": 99, + "endOffset": 583 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6669, + "endColumn": 99, + "endOffset": 6764 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 588, + "endColumn": 99, + "endOffset": 683 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 6769, + "endColumn": 115, + "endOffset": 6880 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 115, + "endOffset": 799 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 6885, + "endColumn": 94, + "endOffset": 6975 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 804, + "endColumn": 94, + "endOffset": 894 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 6980, + "endColumn": 93, + "endOffset": 7069 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 899, + "endColumn": 93, + "endOffset": 988 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7074, + "endColumn": 115, + "endOffset": 7185 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 993, + "endColumn": 115, + "endOffset": 1104 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7190, + "endColumn": 99, + "endOffset": 7285 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1109, + "endColumn": 99, + "endOffset": 1204 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7290, + "endColumn": 84, + "endOffset": 7370 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1209, + "endColumn": 84, + "endOffset": 1289 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7375, + "endColumn": 93, + "endOffset": 7464 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1294, + "endColumn": 93, + "endOffset": 1383 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7469, + "endColumn": 103, + "endOffset": 7568 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-iw\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 103, + "endOffset": 424 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7573, + "endColumn": 94, + "endOffset": 7663 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-iw\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 7668, + "endColumn": 102, + "endOffset": 7766 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-iw\\values-iw.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2127, + "endColumn": 102, + "endOffset": 2225 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 7771, + "endColumn": 105, + "endOffset": 7872 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-iw\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 105, + "endOffset": 331 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-ja.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-ja.json new file mode 100644 index 0000000..106effc --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-ja.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-ja\\values-ja.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 96, + "endOffset": 197 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 96, + "endOffset": 321 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 202, + "endColumn": 106, + "endOffset": 304 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 326, + "endColumn": 106, + "endOffset": 428 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 309, + "endColumn": 120, + "endOffset": 425 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 433, + "endColumn": 120, + "endOffset": 549 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 430, + "endColumn": 92, + "endOffset": 518 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 554, + "endColumn": 92, + "endOffset": 642 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 523, + "endColumn": 104, + "endOffset": 623 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 647, + "endColumn": 104, + "endOffset": 747 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 628, + "endColumn": 81, + "endOffset": 705 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 752, + "endColumn": 81, + "endOffset": 829 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 710, + "endColumn": 97, + "endOffset": 803 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 834, + "endColumn": 97, + "endOffset": 927 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 808, + "endColumn": 107, + "endOffset": 911 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 932, + "endColumn": 107, + "endOffset": 1035 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 916, + "endColumn": 76, + "endOffset": 988 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1040, + "endColumn": 76, + "endOffset": 1112 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 993, + "endColumn": 75, + "endOffset": 1064 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 75, + "endOffset": 1188 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1069, + "endColumn": 77, + "endOffset": 1142 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1193, + "endColumn": 77, + "endOffset": 1266 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 101, + "endOffset": 1244 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1271, + "endColumn": 101, + "endOffset": 1368 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1249, + "endColumn": 98, + "endOffset": 1343 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1373, + "endColumn": 98, + "endOffset": 1467 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1348, + "endColumn": 94, + "endOffset": 1438 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1472, + "endColumn": 94, + "endOffset": 1562 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1443, + "endColumn": 102, + "endOffset": 1541 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1567, + "endColumn": 102, + "endOffset": 1665 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1546, + "endColumn": 94, + "endOffset": 1636 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1670, + "endColumn": 94, + "endOffset": 1760 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1641, + "endColumn": 95, + "endOffset": 1732 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1765, + "endColumn": 95, + "endOffset": 1856 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1737, + "endColumn": 110, + "endOffset": 1843 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1861, + "endColumn": 110, + "endOffset": 1967 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1848, + "endColumn": 96, + "endOffset": 1940 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1972, + "endColumn": 96, + "endOffset": 2064 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1945, + "endColumn": 198, + "endOffset": 2139 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3146, + "endColumn": 202, + "endOffset": 3344 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2144, + "endColumn": 122, + "endOffset": 2262 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 122, + "endOffset": 1353 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2267, + "endColumn": 165, + "endOffset": 2428 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1065, + "endColumn": 169, + "endOffset": 1230 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2433, + "endColumn": 121, + "endOffset": 2550 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 943, + "endColumn": 121, + "endOffset": 1060 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2555, + "endColumn": 122, + "endOffset": 2673 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 820, + "endColumn": 122, + "endOffset": 938 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2678, + "endColumn": 195, + "endOffset": 2869 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 421, + "endColumn": 199, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2874, + "endColumn": 194, + "endOffset": 3064 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 621, + "endColumn": 198, + "endOffset": 815 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3069, + "endColumn": 121, + "endOffset": 3186 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 299, + "endColumn": 121, + "endOffset": 416 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3191, + "endColumn": 147, + "endOffset": 3334 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2477, + "endColumn": 147, + "endOffset": 2620 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3339, + "endColumn": 113, + "endOffset": 3448 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2363, + "endColumn": 113, + "endOffset": 2472 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3453, + "endColumn": 142, + "endOffset": 3591 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2220, + "endColumn": 142, + "endOffset": 2358 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3596, + "endColumn": 115, + "endOffset": 3707 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2104, + "endColumn": 115, + "endOffset": 2215 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 3712, + "endColumn": 128, + "endOffset": 3836 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 128, + "endOffset": 294 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 3841, + "endColumn": 147, + "endOffset": 3984 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3742, + "endColumn": 147, + "endOffset": 3885 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 3989, + "endColumn": 121, + "endOffset": 4106 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3620, + "endColumn": 121, + "endOffset": 3737 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4111, + "endColumn": 150, + "endOffset": 4257 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3469, + "endColumn": 150, + "endOffset": 3615 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4262, + "endColumn": 119, + "endOffset": 4377 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3349, + "endColumn": 119, + "endOffset": 3464 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4382, + "endColumn": 196, + "endOffset": 4574 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-ja\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 200, + "endOffset": 366 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4579, + "endColumn": 202, + "endOffset": 4777 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2747, + "endColumn": 206, + "endOffset": 2949 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 4782, + "endColumn": 121, + "endOffset": 4899 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2625, + "endColumn": 121, + "endOffset": 2742 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 4904, + "endColumn": 102, + "endOffset": 5002 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2954, + "endColumn": 102, + "endOffset": 3052 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5007, + "endColumn": 163, + "endOffset": 5166 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1479, + "endColumn": 167, + "endOffset": 1642 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5171, + "endColumn": 120, + "endOffset": 5287 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1358, + "endColumn": 120, + "endOffset": 1474 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5292, + "endColumn": 178, + "endOffset": 5466 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1921, + "endColumn": 182, + "endOffset": 2099 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5471, + "endColumn": 123, + "endOffset": 5590 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1797, + "endColumn": 123, + "endOffset": 1916 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 5595, + "endColumn": 149, + "endOffset": 5740 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1647, + "endColumn": 149, + "endOffset": 1792 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 5745, + "endColumn": 88, + "endOffset": 5829 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3057, + "endColumn": 88, + "endOffset": 3141 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 5834, + "endColumn": 88, + "endOffset": 5918 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3890, + "endColumn": 88, + "endOffset": 3974 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 5923, + "endColumn": 100, + "endOffset": 6019 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ja\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3979, + "endColumn": 100, + "endOffset": 4075 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6024, + "endColumn": 104, + "endOffset": 6124 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 104, + "endOffset": 378 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6129, + "endColumn": 102, + "endOffset": 6227 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 383, + "endColumn": 102, + "endOffset": 481 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6232, + "endColumn": 92, + "endOffset": 6320 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 486, + "endColumn": 92, + "endOffset": 574 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6325, + "endColumn": 99, + "endOffset": 6420 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 579, + "endColumn": 99, + "endOffset": 674 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 6425, + "endColumn": 110, + "endOffset": 6531 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 679, + "endColumn": 110, + "endOffset": 785 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 6536, + "endColumn": 94, + "endOffset": 6626 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 790, + "endColumn": 94, + "endOffset": 880 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 6631, + "endColumn": 91, + "endOffset": 6718 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 885, + "endColumn": 91, + "endOffset": 972 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 6723, + "endColumn": 112, + "endOffset": 6831 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 977, + "endColumn": 112, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 6836, + "endColumn": 96, + "endOffset": 6928 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 96, + "endOffset": 1182 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 6933, + "endColumn": 83, + "endOffset": 7012 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1187, + "endColumn": 83, + "endOffset": 1266 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7017, + "endColumn": 88, + "endOffset": 7101 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1271, + "endColumn": 88, + "endOffset": 1355 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7106, + "endColumn": 96, + "endOffset": 7198 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ja\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 322, + "endColumn": 96, + "endOffset": 414 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7203, + "endColumn": 91, + "endOffset": 7290 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ja\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 91, + "endOffset": 317 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 7295, + "endColumn": 100, + "endOffset": 7391 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ja\\values-ja.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2069, + "endColumn": 100, + "endOffset": 2165 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 7396, + "endColumn": 98, + "endOffset": 7490 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-ja\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 98, + "endOffset": 324 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-ka-rGE.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-ka-rGE.json new file mode 100644 index 0000000..70f2231 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-ka-rGE.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-ka-rGE\\values-ka-rGE.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 108, + "endOffset": 209 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 108, + "endOffset": 337 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 214, + "endColumn": 107, + "endOffset": 317 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 342, + "endColumn": 107, + "endOffset": 445 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 322, + "endColumn": 122, + "endOffset": 440 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 450, + "endColumn": 122, + "endOffset": 568 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 445, + "endColumn": 103, + "endOffset": 544 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 573, + "endColumn": 103, + "endOffset": 672 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 549, + "endColumn": 110, + "endOffset": 655 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 677, + "endColumn": 110, + "endOffset": 783 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 660, + "endColumn": 87, + "endOffset": 743 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 87, + "endOffset": 871 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 748, + "endColumn": 104, + "endOffset": 848 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 876, + "endColumn": 104, + "endOffset": 976 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 853, + "endColumn": 112, + "endOffset": 961 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 981, + "endColumn": 112, + "endOffset": 1089 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 966, + "endColumn": 83, + "endOffset": 1045 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1094, + "endColumn": 83, + "endOffset": 1173 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 81, + "endOffset": 1127 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1178, + "endColumn": 81, + "endOffset": 1255 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 82, + "endOffset": 1210 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 82, + "endOffset": 1338 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1215, + "endColumn": 112, + "endOffset": 1323 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1343, + "endColumn": 112, + "endOffset": 1451 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 106, + "endOffset": 1430 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1456, + "endColumn": 106, + "endOffset": 1558 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1435, + "endColumn": 97, + "endOffset": 1528 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1563, + "endColumn": 97, + "endOffset": 1656 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1533, + "endColumn": 112, + "endOffset": 1641 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1661, + "endColumn": 112, + "endOffset": 1769 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1646, + "endColumn": 103, + "endOffset": 1745 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1774, + "endColumn": 103, + "endOffset": 1873 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 103, + "endOffset": 1849 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1878, + "endColumn": 103, + "endOffset": 1977 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1854, + "endColumn": 121, + "endOffset": 1971 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1982, + "endColumn": 121, + "endOffset": 2099 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1976, + "endColumn": 97, + "endOffset": 2069 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2104, + "endColumn": 97, + "endOffset": 2197 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2074, + "endColumn": 273, + "endOffset": 2343 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3534, + "endColumn": 277, + "endOffset": 3807 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2348, + "endColumn": 130, + "endOffset": 2474 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1334, + "endColumn": 130, + "endOffset": 1460 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2479, + "endColumn": 180, + "endOffset": 2655 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1149, + "endColumn": 184, + "endOffset": 1329 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2660, + "endColumn": 129, + "endOffset": 2785 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1019, + "endColumn": 129, + "endOffset": 1144 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2790, + "endColumn": 136, + "endOffset": 2922 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 882, + "endColumn": 136, + "endOffset": 1014 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2927, + "endColumn": 214, + "endOffset": 3137 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 444, + "endColumn": 218, + "endOffset": 658 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3142, + "endColumn": 214, + "endOffset": 3352 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 663, + "endColumn": 218, + "endOffset": 877 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3357, + "endColumn": 135, + "endOffset": 3488 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 308, + "endColumn": 135, + "endOffset": 439 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3493, + "endColumn": 187, + "endOffset": 3676 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2733, + "endColumn": 187, + "endOffset": 2916 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3681, + "endColumn": 123, + "endOffset": 3800 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2609, + "endColumn": 123, + "endOffset": 2728 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3805, + "endColumn": 172, + "endOffset": 3973 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2436, + "endColumn": 172, + "endOffset": 2604 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3978, + "endColumn": 120, + "endOffset": 4094 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2315, + "endColumn": 120, + "endOffset": 2431 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4099, + "endColumn": 137, + "endOffset": 4232 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 137, + "endOffset": 303 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4237, + "endColumn": 171, + "endOffset": 4404 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4242, + "endColumn": 171, + "endOffset": 4409 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4409, + "endColumn": 128, + "endOffset": 4533 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4113, + "endColumn": 128, + "endOffset": 4237 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4538, + "endColumn": 173, + "endOffset": 4707 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3939, + "endColumn": 173, + "endOffset": 4108 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4712, + "endColumn": 126, + "endOffset": 4834 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3812, + "endColumn": 126, + "endOffset": 3934 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4839, + "endColumn": 249, + "endOffset": 5084 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-ka-rGE\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 253, + "endOffset": 419 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5089, + "endColumn": 279, + "endOffset": 5364 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3045, + "endColumn": 283, + "endOffset": 3324 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5369, + "endColumn": 123, + "endOffset": 5488 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2921, + "endColumn": 123, + "endOffset": 3040 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5493, + "endColumn": 109, + "endOffset": 5598 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3329, + "endColumn": 109, + "endOffset": 3434 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5603, + "endColumn": 186, + "endOffset": 5785 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1595, + "endColumn": 190, + "endOffset": 1781 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5790, + "endColumn": 129, + "endOffset": 5915 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1465, + "endColumn": 129, + "endOffset": 1590 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5920, + "endColumn": 219, + "endOffset": 6135 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2091, + "endColumn": 223, + "endOffset": 2310 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6140, + "endColumn": 135, + "endOffset": 6271 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1955, + "endColumn": 135, + "endOffset": 2086 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6276, + "endColumn": 168, + "endOffset": 6440 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1786, + "endColumn": 168, + "endOffset": 1950 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6445, + "endColumn": 94, + "endOffset": 6535 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3439, + "endColumn": 94, + "endOffset": 3529 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6540, + "endColumn": 90, + "endOffset": 6626 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4414, + "endColumn": 90, + "endOffset": 4500 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6631, + "endColumn": 105, + "endOffset": 6732 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ka-rGE\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4505, + "endColumn": 105, + "endOffset": 4606 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6737, + "endColumn": 110, + "endOffset": 6843 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 110, + "endOffset": 388 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6848, + "endColumn": 112, + "endOffset": 6956 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 112, + "endOffset": 501 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6961, + "endColumn": 114, + "endOffset": 7071 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 506, + "endColumn": 114, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7076, + "endColumn": 111, + "endOffset": 7183 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 111, + "endOffset": 728 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7188, + "endColumn": 134, + "endOffset": 7318 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 733, + "endColumn": 134, + "endOffset": 863 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7323, + "endColumn": 95, + "endOffset": 7414 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 868, + "endColumn": 95, + "endOffset": 959 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7419, + "endColumn": 95, + "endOffset": 7510 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 964, + "endColumn": 95, + "endOffset": 1055 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7515, + "endColumn": 125, + "endOffset": 7636 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1060, + "endColumn": 125, + "endOffset": 1181 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7641, + "endColumn": 109, + "endOffset": 7746 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 109, + "endOffset": 1291 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7751, + "endColumn": 86, + "endOffset": 7833 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1296, + "endColumn": 86, + "endOffset": 1378 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7838, + "endColumn": 99, + "endOffset": 7933 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1383, + "endColumn": 99, + "endOffset": 1478 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7938, + "endColumn": 108, + "endOffset": 8042 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ka-rGE\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 108, + "endOffset": 429 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8047, + "endColumn": 94, + "endOffset": 8137 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ka-rGE\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8142, + "endColumn": 100, + "endOffset": 8238 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ka-rGE\\values-ka-rGE.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2202, + "endColumn": 100, + "endOffset": 2298 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json new file mode 100644 index 0000000..fe8a0ba --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-kk-rKZ\\values-kk-rKZ.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 111, + "endOffset": 212 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 111, + "endOffset": 340 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 217, + "endColumn": 107, + "endOffset": 320 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 345, + "endColumn": 107, + "endOffset": 448 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 325, + "endColumn": 122, + "endOffset": 443 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 453, + "endColumn": 122, + "endOffset": 571 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 448, + "endColumn": 102, + "endOffset": 546 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 576, + "endColumn": 102, + "endOffset": 674 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 551, + "endColumn": 109, + "endOffset": 656 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 679, + "endColumn": 109, + "endOffset": 784 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 661, + "endColumn": 84, + "endOffset": 741 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 789, + "endColumn": 84, + "endOffset": 869 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 746, + "endColumn": 105, + "endOffset": 847 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 874, + "endColumn": 105, + "endOffset": 975 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 852, + "endColumn": 118, + "endOffset": 966 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 980, + "endColumn": 118, + "endOffset": 1094 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 971, + "endColumn": 80, + "endOffset": 1047 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1099, + "endColumn": 80, + "endOffset": 1175 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1052, + "endColumn": 79, + "endOffset": 1127 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1180, + "endColumn": 79, + "endOffset": 1255 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 80, + "endOffset": 1208 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 80, + "endOffset": 1336 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1213, + "endColumn": 102, + "endOffset": 1311 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1341, + "endColumn": 102, + "endOffset": 1439 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1316, + "endColumn": 104, + "endOffset": 1416 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1444, + "endColumn": 104, + "endOffset": 1544 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1421, + "endColumn": 97, + "endOffset": 1514 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1549, + "endColumn": 97, + "endOffset": 1642 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1519, + "endColumn": 106, + "endOffset": 1621 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1647, + "endColumn": 106, + "endOffset": 1749 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1626, + "endColumn": 108, + "endOffset": 1730 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1754, + "endColumn": 108, + "endOffset": 1858 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1735, + "endColumn": 99, + "endOffset": 1830 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1863, + "endColumn": 99, + "endOffset": 1958 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1835, + "endColumn": 114, + "endOffset": 1945 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1963, + "endColumn": 114, + "endOffset": 2073 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1950, + "endColumn": 98, + "endOffset": 2044 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2078, + "endColumn": 98, + "endOffset": 2172 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2049, + "endColumn": 264, + "endOffset": 2309 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3468, + "endColumn": 268, + "endOffset": 3732 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2314, + "endColumn": 128, + "endOffset": 2438 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1302, + "endColumn": 128, + "endOffset": 1426 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2443, + "endColumn": 184, + "endOffset": 2623 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1113, + "endColumn": 188, + "endOffset": 1297 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2628, + "endColumn": 127, + "endOffset": 2751 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 985, + "endColumn": 127, + "endOffset": 1108 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2756, + "endColumn": 128, + "endOffset": 2880 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 856, + "endColumn": 128, + "endOffset": 980 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2885, + "endColumn": 204, + "endOffset": 3085 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 437, + "endColumn": 208, + "endOffset": 641 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3090, + "endColumn": 205, + "endOffset": 3291 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 646, + "endColumn": 209, + "endOffset": 851 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3296, + "endColumn": 127, + "endOffset": 3419 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 309, + "endColumn": 127, + "endOffset": 432 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3424, + "endColumn": 183, + "endOffset": 3603 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2708, + "endColumn": 183, + "endOffset": 2887 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3608, + "endColumn": 127, + "endOffset": 3731 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2580, + "endColumn": 127, + "endOffset": 2703 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3736, + "endColumn": 168, + "endOffset": 3900 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2411, + "endColumn": 168, + "endOffset": 2575 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3905, + "endColumn": 117, + "endOffset": 4018 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2293, + "endColumn": 117, + "endOffset": 2406 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4023, + "endColumn": 138, + "endOffset": 4157 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 138, + "endOffset": 304 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4162, + "endColumn": 167, + "endOffset": 4325 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4179, + "endColumn": 167, + "endOffset": 4342 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4330, + "endColumn": 128, + "endOffset": 4454 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4050, + "endColumn": 128, + "endOffset": 4174 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4459, + "endColumn": 184, + "endOffset": 4639 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3865, + "endColumn": 184, + "endOffset": 4045 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4644, + "endColumn": 127, + "endOffset": 4767 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3737, + "endColumn": 127, + "endOffset": 3860 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4772, + "endColumn": 243, + "endOffset": 5011 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-kk-rKZ\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 247, + "endOffset": 413 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5016, + "endColumn": 245, + "endOffset": 5257 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3018, + "endColumn": 249, + "endOffset": 3263 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5262, + "endColumn": 125, + "endOffset": 5383 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2892, + "endColumn": 125, + "endOffset": 3013 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5388, + "endColumn": 107, + "endOffset": 5491 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3268, + "endColumn": 107, + "endOffset": 3371 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5496, + "endColumn": 187, + "endOffset": 5679 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1562, + "endColumn": 191, + "endOffset": 1749 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5684, + "endColumn": 130, + "endOffset": 5810 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1431, + "endColumn": 130, + "endOffset": 1557 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5815, + "endColumn": 211, + "endOffset": 6022 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2077, + "endColumn": 215, + "endOffset": 2288 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6027, + "endColumn": 135, + "endOffset": 6158 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1941, + "endColumn": 135, + "endOffset": 2072 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6163, + "endColumn": 186, + "endOffset": 6345 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1754, + "endColumn": 186, + "endOffset": 1936 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6350, + "endColumn": 91, + "endOffset": 6437 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3376, + "endColumn": 91, + "endOffset": 3463 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6442, + "endColumn": 88, + "endOffset": 6526 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4347, + "endColumn": 88, + "endOffset": 4431 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6531, + "endColumn": 107, + "endOffset": 6634 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kk-rKZ\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4436, + "endColumn": 107, + "endOffset": 4539 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6639, + "endColumn": 113, + "endOffset": 6748 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 113, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6753, + "endColumn": 112, + "endOffset": 6861 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 112, + "endOffset": 504 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6866, + "endColumn": 103, + "endOffset": 6965 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 509, + "endColumn": 103, + "endOffset": 608 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6970, + "endColumn": 101, + "endOffset": 7067 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 613, + "endColumn": 101, + "endOffset": 710 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7072, + "endColumn": 124, + "endOffset": 7192 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 715, + "endColumn": 124, + "endOffset": 835 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7197, + "endColumn": 97, + "endOffset": 7290 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 840, + "endColumn": 97, + "endOffset": 933 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7295, + "endColumn": 95, + "endOffset": 7386 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 938, + "endColumn": 95, + "endOffset": 1029 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7391, + "endColumn": 120, + "endOffset": 7507 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1034, + "endColumn": 120, + "endOffset": 1150 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7512, + "endColumn": 112, + "endOffset": 7620 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1155, + "endColumn": 112, + "endOffset": 1263 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7625, + "endColumn": 83, + "endOffset": 7704 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1268, + "endColumn": 83, + "endOffset": 1347 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7709, + "endColumn": 96, + "endOffset": 7801 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1352, + "endColumn": 96, + "endOffset": 1444 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7806, + "endColumn": 105, + "endOffset": 7907 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-kk-rKZ\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 105, + "endOffset": 426 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7912, + "endColumn": 94, + "endOffset": 8002 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-kk-rKZ\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8007, + "endColumn": 100, + "endOffset": 8103 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2177, + "endColumn": 100, + "endOffset": 2273 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-km-rKH.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-km-rKH.json new file mode 100644 index 0000000..c2a0de6 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-km-rKH.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-km-rKH\\values-km-rKH.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 102, + "endOffset": 203 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 102, + "endOffset": 331 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 208, + "endColumn": 107, + "endOffset": 311 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 336, + "endColumn": 107, + "endOffset": 439 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 316, + "endColumn": 122, + "endOffset": 434 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 444, + "endColumn": 122, + "endOffset": 562 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 439, + "endColumn": 99, + "endOffset": 534 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 567, + "endColumn": 99, + "endOffset": 662 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 539, + "endColumn": 111, + "endOffset": 646 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 667, + "endColumn": 111, + "endOffset": 774 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 651, + "endColumn": 86, + "endOffset": 733 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 779, + "endColumn": 86, + "endOffset": 861 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 738, + "endColumn": 103, + "endOffset": 837 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 866, + "endColumn": 103, + "endOffset": 965 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 842, + "endColumn": 117, + "endOffset": 955 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 970, + "endColumn": 117, + "endOffset": 1083 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 960, + "endColumn": 76, + "endOffset": 1032 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1088, + "endColumn": 76, + "endOffset": 1160 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1037, + "endColumn": 76, + "endOffset": 1109 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1165, + "endColumn": 76, + "endOffset": 1237 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1114, + "endColumn": 82, + "endOffset": 1192 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1242, + "endColumn": 82, + "endOffset": 1320 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1197, + "endColumn": 103, + "endOffset": 1296 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1325, + "endColumn": 103, + "endOffset": 1424 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1301, + "endColumn": 104, + "endOffset": 1401 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1429, + "endColumn": 104, + "endOffset": 1529 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1406, + "endColumn": 99, + "endOffset": 1501 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1534, + "endColumn": 99, + "endOffset": 1629 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1506, + "endColumn": 109, + "endOffset": 1611 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1634, + "endColumn": 109, + "endOffset": 1739 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1616, + "endColumn": 106, + "endOffset": 1718 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1744, + "endColumn": 106, + "endOffset": 1846 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1723, + "endColumn": 107, + "endOffset": 1826 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1851, + "endColumn": 107, + "endOffset": 1954 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1831, + "endColumn": 122, + "endOffset": 1949 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1959, + "endColumn": 122, + "endOffset": 2077 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1954, + "endColumn": 97, + "endOffset": 2047 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2082, + "endColumn": 97, + "endOffset": 2175 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2052, + "endColumn": 264, + "endOffset": 2312 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3424, + "endColumn": 268, + "endOffset": 3688 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2317, + "endColumn": 123, + "endOffset": 2436 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1281, + "endColumn": 123, + "endOffset": 1400 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2441, + "endColumn": 186, + "endOffset": 2623 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 190, + "endOffset": 1276 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2628, + "endColumn": 122, + "endOffset": 2746 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 967, + "endColumn": 122, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2751, + "endColumn": 126, + "endOffset": 2873 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 840, + "endColumn": 126, + "endOffset": 962 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2878, + "endColumn": 201, + "endOffset": 3075 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 428, + "endColumn": 205, + "endOffset": 629 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3080, + "endColumn": 201, + "endOffset": 3277 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 634, + "endColumn": 205, + "endOffset": 835 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3282, + "endColumn": 125, + "endOffset": 3403 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 302, + "endColumn": 125, + "endOffset": 423 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3408, + "endColumn": 179, + "endOffset": 3583 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2668, + "endColumn": 179, + "endOffset": 2843 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3588, + "endColumn": 122, + "endOffset": 3706 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2545, + "endColumn": 122, + "endOffset": 2663 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3711, + "endColumn": 167, + "endOffset": 3874 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2377, + "endColumn": 167, + "endOffset": 2540 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3879, + "endColumn": 118, + "endOffset": 3993 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2258, + "endColumn": 118, + "endOffset": 2372 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 3998, + "endColumn": 131, + "endOffset": 4125 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 131, + "endOffset": 297 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4130, + "endColumn": 178, + "endOffset": 4304 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4122, + "endColumn": 178, + "endOffset": 4296 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4309, + "endColumn": 137, + "endOffset": 4442 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3984, + "endColumn": 137, + "endOffset": 4117 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4447, + "endColumn": 162, + "endOffset": 4605 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3821, + "endColumn": 162, + "endOffset": 3979 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4610, + "endColumn": 127, + "endOffset": 4733 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3693, + "endColumn": 127, + "endOffset": 3816 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4738, + "endColumn": 246, + "endOffset": 4980 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-km-rKH\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 250, + "endOffset": 416 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4985, + "endColumn": 246, + "endOffset": 5227 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2972, + "endColumn": 250, + "endOffset": 3218 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5232, + "endColumn": 123, + "endOffset": 5351 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2848, + "endColumn": 123, + "endOffset": 2967 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5356, + "endColumn": 107, + "endOffset": 5459 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3223, + "endColumn": 107, + "endOffset": 3326 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5464, + "endColumn": 190, + "endOffset": 5650 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1532, + "endColumn": 194, + "endOffset": 1722 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5655, + "endColumn": 126, + "endOffset": 5777 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1405, + "endColumn": 126, + "endOffset": 1527 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5782, + "endColumn": 203, + "endOffset": 5981 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2050, + "endColumn": 207, + "endOffset": 2253 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5986, + "endColumn": 134, + "endOffset": 6116 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1915, + "endColumn": 134, + "endOffset": 2045 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6121, + "endColumn": 187, + "endOffset": 6304 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1727, + "endColumn": 187, + "endOffset": 1910 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6309, + "endColumn": 92, + "endOffset": 6397 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3331, + "endColumn": 92, + "endOffset": 3419 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6402, + "endColumn": 87, + "endOffset": 6485 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4301, + "endColumn": 87, + "endOffset": 4384 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6490, + "endColumn": 106, + "endOffset": 6592 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-km-rKH\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4389, + "endColumn": 106, + "endOffset": 4491 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6597, + "endColumn": 106, + "endOffset": 6699 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 106, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6704, + "endColumn": 114, + "endOffset": 6814 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 114, + "endOffset": 499 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6819, + "endColumn": 100, + "endOffset": 6915 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 100, + "endOffset": 600 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6920, + "endColumn": 100, + "endOffset": 7016 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 605, + "endColumn": 100, + "endOffset": 701 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7021, + "endColumn": 117, + "endOffset": 7134 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 706, + "endColumn": 117, + "endOffset": 819 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7139, + "endColumn": 95, + "endOffset": 7230 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 95, + "endOffset": 915 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7235, + "endColumn": 93, + "endOffset": 7324 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 920, + "endColumn": 93, + "endOffset": 1009 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7329, + "endColumn": 117, + "endOffset": 7442 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 117, + "endOffset": 1127 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7447, + "endColumn": 101, + "endOffset": 7544 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 101, + "endOffset": 1229 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7549, + "endColumn": 87, + "endOffset": 7632 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1234, + "endColumn": 87, + "endOffset": 1317 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7637, + "endColumn": 92, + "endOffset": 7725 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1322, + "endColumn": 92, + "endOffset": 1410 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7730, + "endColumn": 105, + "endOffset": 7831 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-km-rKH\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 327, + "endColumn": 105, + "endOffset": 428 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7836, + "endColumn": 96, + "endOffset": 7928 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-km-rKH\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 96, + "endOffset": 322 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 7933, + "endColumn": 100, + "endOffset": 8029 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-km-rKH\\values-km-rKH.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2180, + "endColumn": 100, + "endOffset": 2276 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-kn-rIN.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-kn-rIN.json new file mode 100644 index 0000000..9c7c565 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-kn-rIN.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-kn-rIN\\values-kn-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 117, + "endOffset": 218 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 117, + "endOffset": 346 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 223, + "endColumn": 107, + "endOffset": 326 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 351, + "endColumn": 107, + "endOffset": 454 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 331, + "endColumn": 122, + "endOffset": 449 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 459, + "endColumn": 122, + "endOffset": 577 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 454, + "endColumn": 111, + "endOffset": 561 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 582, + "endColumn": 111, + "endOffset": 689 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 566, + "endColumn": 112, + "endOffset": 674 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 694, + "endColumn": 112, + "endOffset": 802 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 679, + "endColumn": 87, + "endOffset": 762 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 807, + "endColumn": 87, + "endOffset": 890 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 767, + "endColumn": 106, + "endOffset": 869 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 895, + "endColumn": 106, + "endOffset": 997 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 874, + "endColumn": 126, + "endOffset": 996 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1002, + "endColumn": 126, + "endOffset": 1124 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1001, + "endColumn": 76, + "endOffset": 1073 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1129, + "endColumn": 76, + "endOffset": 1201 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1078, + "endColumn": 76, + "endOffset": 1150 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1206, + "endColumn": 76, + "endOffset": 1278 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1155, + "endColumn": 81, + "endOffset": 1232 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1283, + "endColumn": 81, + "endOffset": 1360 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1237, + "endColumn": 115, + "endOffset": 1348 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1365, + "endColumn": 115, + "endOffset": 1476 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1353, + "endColumn": 110, + "endOffset": 1459 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1481, + "endColumn": 110, + "endOffset": 1587 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1464, + "endColumn": 98, + "endOffset": 1558 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1592, + "endColumn": 98, + "endOffset": 1686 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1563, + "endColumn": 112, + "endOffset": 1671 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1691, + "endColumn": 112, + "endOffset": 1799 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1676, + "endColumn": 103, + "endOffset": 1775 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1804, + "endColumn": 103, + "endOffset": 1903 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1780, + "endColumn": 113, + "endOffset": 1889 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1908, + "endColumn": 113, + "endOffset": 2017 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1894, + "endColumn": 125, + "endOffset": 2015 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2022, + "endColumn": 125, + "endOffset": 2143 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2020, + "endColumn": 99, + "endOffset": 2115 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2148, + "endColumn": 99, + "endOffset": 2243 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2120, + "endColumn": 259, + "endOffset": 2375 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3520, + "endColumn": 263, + "endOffset": 3779 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2380, + "endColumn": 135, + "endOffset": 2511 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1335, + "endColumn": 135, + "endOffset": 1466 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2516, + "endColumn": 201, + "endOffset": 2713 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1129, + "endColumn": 205, + "endOffset": 1330 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2718, + "endColumn": 134, + "endOffset": 2848 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 994, + "endColumn": 134, + "endOffset": 1124 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2853, + "endColumn": 131, + "endOffset": 2980 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 862, + "endColumn": 131, + "endOffset": 989 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2985, + "endColumn": 208, + "endOffset": 3189 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 430, + "endColumn": 212, + "endOffset": 638 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3194, + "endColumn": 214, + "endOffset": 3404 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 643, + "endColumn": 218, + "endOffset": 857 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3409, + "endColumn": 130, + "endOffset": 3535 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 299, + "endColumn": 130, + "endOffset": 425 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3540, + "endColumn": 189, + "endOffset": 3725 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2756, + "endColumn": 189, + "endOffset": 2941 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3730, + "endColumn": 119, + "endOffset": 3845 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2636, + "endColumn": 119, + "endOffset": 2751 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3850, + "endColumn": 164, + "endOffset": 4010 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2471, + "endColumn": 164, + "endOffset": 2631 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4015, + "endColumn": 120, + "endOffset": 4131 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2350, + "endColumn": 120, + "endOffset": 2466 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4136, + "endColumn": 128, + "endOffset": 4260 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 128, + "endOffset": 294 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4265, + "endColumn": 170, + "endOffset": 4431 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4227, + "endColumn": 170, + "endOffset": 4393 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4436, + "endColumn": 129, + "endOffset": 4561 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4097, + "endColumn": 129, + "endOffset": 4222 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4566, + "endColumn": 185, + "endOffset": 4747 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3911, + "endColumn": 185, + "endOffset": 4092 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4752, + "endColumn": 126, + "endOffset": 4874 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3784, + "endColumn": 126, + "endOffset": 3906 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4879, + "endColumn": 250, + "endOffset": 5125 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-kn-rIN\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 254, + "endOffset": 420 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5130, + "endColumn": 233, + "endOffset": 5359 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3069, + "endColumn": 237, + "endOffset": 3302 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5364, + "endColumn": 122, + "endOffset": 5482 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2946, + "endColumn": 122, + "endOffset": 3064 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5487, + "endColumn": 114, + "endOffset": 5597 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3307, + "endColumn": 114, + "endOffset": 3417 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5602, + "endColumn": 195, + "endOffset": 5793 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1608, + "endColumn": 199, + "endOffset": 1803 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5798, + "endColumn": 136, + "endOffset": 5930 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1471, + "endColumn": 136, + "endOffset": 1603 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5935, + "endColumn": 203, + "endOffset": 6134 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2142, + "endColumn": 207, + "endOffset": 2345 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6139, + "endColumn": 146, + "endOffset": 6281 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1995, + "endColumn": 146, + "endOffset": 2137 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6286, + "endColumn": 186, + "endOffset": 6468 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1808, + "endColumn": 186, + "endOffset": 1990 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6473, + "endColumn": 97, + "endOffset": 6566 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3422, + "endColumn": 97, + "endOffset": 3515 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6571, + "endColumn": 92, + "endOffset": 6659 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4398, + "endColumn": 92, + "endOffset": 4486 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6664, + "endColumn": 114, + "endOffset": 6774 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-kn-rIN\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4491, + "endColumn": 114, + "endOffset": 4601 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6779, + "endColumn": 105, + "endOffset": 6880 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 105, + "endOffset": 383 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6885, + "endColumn": 118, + "endOffset": 6999 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 388, + "endColumn": 118, + "endOffset": 502 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7004, + "endColumn": 107, + "endOffset": 7107 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 507, + "endColumn": 107, + "endOffset": 610 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7112, + "endColumn": 111, + "endOffset": 7219 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 111, + "endOffset": 722 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7224, + "endColumn": 125, + "endOffset": 7345 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 727, + "endColumn": 125, + "endOffset": 848 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7350, + "endColumn": 95, + "endOffset": 7441 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 853, + "endColumn": 95, + "endOffset": 944 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7446, + "endColumn": 98, + "endOffset": 7540 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 949, + "endColumn": 98, + "endOffset": 1043 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7545, + "endColumn": 123, + "endOffset": 7664 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1048, + "endColumn": 123, + "endOffset": 1167 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7669, + "endColumn": 111, + "endOffset": 7776 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1172, + "endColumn": 111, + "endOffset": 1279 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7781, + "endColumn": 85, + "endOffset": 7862 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1284, + "endColumn": 85, + "endOffset": 1365 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7867, + "endColumn": 93, + "endOffset": 7956 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 93, + "endOffset": 1459 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7961, + "endColumn": 109, + "endOffset": 8066 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-kn-rIN\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 326, + "endColumn": 109, + "endOffset": 431 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8071, + "endColumn": 95, + "endOffset": 8162 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-kn-rIN\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 95, + "endOffset": 321 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8167, + "endColumn": 100, + "endOffset": 8263 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-kn-rIN\\values-kn-rIN.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2248, + "endColumn": 100, + "endOffset": 2344 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-ko.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-ko.json new file mode 100644 index 0000000..1708517 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-ko.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-ko\\values-ko.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 94, + "endOffset": 195 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 94, + "endOffset": 319 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 200, + "endColumn": 107, + "endOffset": 303 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 324, + "endColumn": 107, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 308, + "endColumn": 122, + "endOffset": 426 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 432, + "endColumn": 122, + "endOffset": 550 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 431, + "endColumn": 93, + "endOffset": 520 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 555, + "endColumn": 93, + "endOffset": 644 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 525, + "endColumn": 101, + "endOffset": 622 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 649, + "endColumn": 101, + "endOffset": 746 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 627, + "endColumn": 81, + "endOffset": 704 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 751, + "endColumn": 81, + "endOffset": 828 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 97, + "endOffset": 802 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 833, + "endColumn": 97, + "endOffset": 926 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 807, + "endColumn": 105, + "endOffset": 908 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 931, + "endColumn": 105, + "endOffset": 1032 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 913, + "endColumn": 78, + "endOffset": 987 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1037, + "endColumn": 78, + "endOffset": 1111 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 992, + "endColumn": 75, + "endOffset": 1063 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1116, + "endColumn": 75, + "endOffset": 1187 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1068, + "endColumn": 79, + "endOffset": 1143 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1192, + "endColumn": 79, + "endOffset": 1267 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1148, + "endColumn": 97, + "endOffset": 1241 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1272, + "endColumn": 97, + "endOffset": 1365 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1246, + "endColumn": 94, + "endOffset": 1336 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 94, + "endOffset": 1460 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1341, + "endColumn": 94, + "endOffset": 1431 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1465, + "endColumn": 94, + "endOffset": 1555 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1436, + "endColumn": 99, + "endOffset": 1531 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1560, + "endColumn": 99, + "endOffset": 1655 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1536, + "endColumn": 95, + "endOffset": 1627 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1660, + "endColumn": 95, + "endOffset": 1751 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1632, + "endColumn": 98, + "endOffset": 1726 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1756, + "endColumn": 98, + "endOffset": 1850 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1731, + "endColumn": 114, + "endOffset": 1841 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1855, + "endColumn": 114, + "endOffset": 1965 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1846, + "endColumn": 93, + "endOffset": 1935 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1970, + "endColumn": 93, + "endOffset": 2059 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1940, + "endColumn": 210, + "endOffset": 2146 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3093, + "endColumn": 214, + "endOffset": 3303 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2151, + "endColumn": 118, + "endOffset": 2265 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1199, + "endColumn": 118, + "endOffset": 1313 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2270, + "endColumn": 170, + "endOffset": 2436 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1024, + "endColumn": 174, + "endOffset": 1194 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2441, + "endColumn": 117, + "endOffset": 2554 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 906, + "endColumn": 117, + "endOffset": 1019 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2559, + "endColumn": 119, + "endOffset": 2674 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 786, + "endColumn": 119, + "endOffset": 901 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2679, + "endColumn": 181, + "endOffset": 2856 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 414, + "endColumn": 185, + "endOffset": 595 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2861, + "endColumn": 181, + "endOffset": 3038 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 600, + "endColumn": 185, + "endOffset": 781 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3043, + "endColumn": 118, + "endOffset": 3157 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 118, + "endOffset": 409 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3162, + "endColumn": 145, + "endOffset": 3303 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2431, + "endColumn": 145, + "endOffset": 2572 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3308, + "endColumn": 110, + "endOffset": 3414 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2320, + "endColumn": 110, + "endOffset": 2426 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3419, + "endColumn": 142, + "endOffset": 3557 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2177, + "endColumn": 142, + "endOffset": 2315 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3562, + "endColumn": 113, + "endOffset": 3671 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2063, + "endColumn": 113, + "endOffset": 2172 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 3676, + "endColumn": 124, + "endOffset": 3796 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 124, + "endOffset": 290 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 3801, + "endColumn": 136, + "endOffset": 3933 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3690, + "endColumn": 136, + "endOffset": 3822 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 3938, + "endColumn": 118, + "endOffset": 4052 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3571, + "endColumn": 118, + "endOffset": 3685 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4057, + "endColumn": 148, + "endOffset": 4201 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3422, + "endColumn": 148, + "endOffset": 3566 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4206, + "endColumn": 113, + "endOffset": 4315 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3308, + "endColumn": 113, + "endOffset": 3417 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4320, + "endColumn": 198, + "endOffset": 4514 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-ko\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 202, + "endOffset": 368 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4519, + "endColumn": 199, + "endOffset": 4714 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2696, + "endColumn": 203, + "endOffset": 2895 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 4719, + "endColumn": 118, + "endOffset": 4833 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2577, + "endColumn": 118, + "endOffset": 2691 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 4838, + "endColumn": 104, + "endOffset": 4938 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2900, + "endColumn": 104, + "endOffset": 3000 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 4943, + "endColumn": 166, + "endOffset": 5105 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 170, + "endOffset": 1604 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5110, + "endColumn": 119, + "endOffset": 5225 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1318, + "endColumn": 119, + "endOffset": 1433 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5230, + "endColumn": 176, + "endOffset": 5402 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1882, + "endColumn": 180, + "endOffset": 2058 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5407, + "endColumn": 123, + "endOffset": 5526 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1758, + "endColumn": 123, + "endOffset": 1877 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 5531, + "endColumn": 148, + "endOffset": 5675 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1609, + "endColumn": 148, + "endOffset": 1753 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 5680, + "endColumn": 87, + "endOffset": 5763 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3005, + "endColumn": 87, + "endOffset": 3088 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 5768, + "endColumn": 87, + "endOffset": 5851 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3827, + "endColumn": 87, + "endOffset": 3910 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 5856, + "endColumn": 104, + "endOffset": 5956 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ko\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3915, + "endColumn": 104, + "endOffset": 4015 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 5961, + "endColumn": 102, + "endOffset": 6059 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 102, + "endOffset": 376 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6064, + "endColumn": 99, + "endOffset": 6159 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 381, + "endColumn": 99, + "endOffset": 476 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6164, + "endColumn": 93, + "endOffset": 6253 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 481, + "endColumn": 93, + "endOffset": 570 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6258, + "endColumn": 99, + "endOffset": 6353 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 575, + "endColumn": 99, + "endOffset": 670 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 6358, + "endColumn": 111, + "endOffset": 6465 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 675, + "endColumn": 111, + "endOffset": 782 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 6470, + "endColumn": 94, + "endOffset": 6560 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 787, + "endColumn": 94, + "endOffset": 877 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 6565, + "endColumn": 91, + "endOffset": 6652 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 882, + "endColumn": 91, + "endOffset": 969 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 6657, + "endColumn": 109, + "endOffset": 6762 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 974, + "endColumn": 109, + "endOffset": 1079 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 6767, + "endColumn": 94, + "endOffset": 6857 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1084, + "endColumn": 94, + "endOffset": 1174 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 6862, + "endColumn": 82, + "endOffset": 6940 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1179, + "endColumn": 82, + "endOffset": 1257 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 6945, + "endColumn": 88, + "endOffset": 7029 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1262, + "endColumn": 88, + "endOffset": 1346 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7034, + "endColumn": 97, + "endOffset": 7127 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ko\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 322, + "endColumn": 97, + "endOffset": 415 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7132, + "endColumn": 91, + "endOffset": 7219 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ko\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 91, + "endOffset": 317 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 7224, + "endColumn": 100, + "endOffset": 7320 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ko\\values-ko.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2064, + "endColumn": 100, + "endOffset": 2160 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 7325, + "endColumn": 99, + "endOffset": 7420 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-ko\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 99, + "endOffset": 325 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-ky-rKG.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-ky-rKG.json new file mode 100644 index 0000000..3afdbc5 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-ky-rKG.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-ky-rKG\\values-ky-rKG.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 103, + "endOffset": 204 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 103, + "endOffset": 332 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 209, + "endColumn": 107, + "endOffset": 312 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 337, + "endColumn": 107, + "endOffset": 440 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 317, + "endColumn": 122, + "endOffset": 435 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 445, + "endColumn": 122, + "endOffset": 563 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 440, + "endColumn": 94, + "endOffset": 530 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 568, + "endColumn": 94, + "endOffset": 658 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 535, + "endColumn": 118, + "endOffset": 649 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 663, + "endColumn": 118, + "endOffset": 777 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 654, + "endColumn": 83, + "endOffset": 733 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 83, + "endOffset": 861 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 738, + "endColumn": 106, + "endOffset": 840 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 866, + "endColumn": 106, + "endOffset": 968 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 845, + "endColumn": 116, + "endOffset": 957 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 973, + "endColumn": 116, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 962, + "endColumn": 77, + "endOffset": 1035 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 77, + "endOffset": 1163 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1040, + "endColumn": 78, + "endOffset": 1114 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1168, + "endColumn": 78, + "endOffset": 1242 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1119, + "endColumn": 80, + "endOffset": 1195 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1247, + "endColumn": 80, + "endOffset": 1323 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1200, + "endColumn": 109, + "endOffset": 1305 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 109, + "endOffset": 1433 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1310, + "endColumn": 106, + "endOffset": 1412 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 106, + "endOffset": 1540 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1417, + "endColumn": 97, + "endOffset": 1510 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1545, + "endColumn": 97, + "endOffset": 1638 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1515, + "endColumn": 105, + "endOffset": 1616 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1643, + "endColumn": 105, + "endOffset": 1744 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1621, + "endColumn": 106, + "endOffset": 1723 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1749, + "endColumn": 106, + "endOffset": 1851 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1728, + "endColumn": 100, + "endOffset": 1824 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1856, + "endColumn": 100, + "endOffset": 1952 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1829, + "endColumn": 123, + "endOffset": 1948 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1957, + "endColumn": 123, + "endOffset": 2076 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1953, + "endColumn": 102, + "endOffset": 2051 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2081, + "endColumn": 102, + "endOffset": 2179 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2056, + "endColumn": 250, + "endOffset": 2302 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3474, + "endColumn": 254, + "endOffset": 3724 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2307, + "endColumn": 131, + "endOffset": 2434 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1315, + "endColumn": 131, + "endOffset": 1442 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2439, + "endColumn": 180, + "endOffset": 2615 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1130, + "endColumn": 184, + "endOffset": 1310 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2620, + "endColumn": 130, + "endOffset": 2746 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 999, + "endColumn": 130, + "endOffset": 1125 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2751, + "endColumn": 129, + "endOffset": 2876 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 869, + "endColumn": 129, + "endOffset": 994 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2881, + "endColumn": 210, + "endOffset": 3087 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 438, + "endColumn": 214, + "endOffset": 648 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3092, + "endColumn": 211, + "endOffset": 3299 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 653, + "endColumn": 215, + "endOffset": 864 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3304, + "endColumn": 128, + "endOffset": 3428 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 309, + "endColumn": 128, + "endOffset": 433 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3433, + "endColumn": 179, + "endOffset": 3608 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2721, + "endColumn": 179, + "endOffset": 2896 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3613, + "endColumn": 126, + "endOffset": 3735 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2594, + "endColumn": 126, + "endOffset": 2716 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3740, + "endColumn": 175, + "endOffset": 3911 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2418, + "endColumn": 175, + "endOffset": 2589 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3916, + "endColumn": 119, + "endOffset": 4031 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2298, + "endColumn": 119, + "endOffset": 2413 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4036, + "endColumn": 138, + "endOffset": 4170 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 138, + "endOffset": 304 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4175, + "endColumn": 172, + "endOffset": 4343 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4167, + "endColumn": 172, + "endOffset": 4335 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4348, + "endColumn": 128, + "endOffset": 4472 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4038, + "endColumn": 128, + "endOffset": 4162 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4477, + "endColumn": 173, + "endOffset": 4646 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3864, + "endColumn": 173, + "endOffset": 4033 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4651, + "endColumn": 134, + "endOffset": 4781 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3729, + "endColumn": 134, + "endOffset": 3859 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4786, + "endColumn": 251, + "endOffset": 5033 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-ky-rKG\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 255, + "endOffset": 421 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5038, + "endColumn": 240, + "endOffset": 5274 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3027, + "endColumn": 244, + "endOffset": 3267 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5279, + "endColumn": 125, + "endOffset": 5400 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2901, + "endColumn": 125, + "endOffset": 3022 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5405, + "endColumn": 108, + "endOffset": 5509 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3272, + "endColumn": 108, + "endOffset": 3376 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5514, + "endColumn": 180, + "endOffset": 5690 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1579, + "endColumn": 184, + "endOffset": 1759 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5695, + "endColumn": 131, + "endOffset": 5822 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1447, + "endColumn": 131, + "endOffset": 1574 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5827, + "endColumn": 195, + "endOffset": 6018 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2098, + "endColumn": 199, + "endOffset": 2293 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6023, + "endColumn": 136, + "endOffset": 6155 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1961, + "endColumn": 136, + "endOffset": 2093 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6160, + "endColumn": 196, + "endOffset": 6352 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1764, + "endColumn": 196, + "endOffset": 1956 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6357, + "endColumn": 92, + "endOffset": 6445 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3381, + "endColumn": 92, + "endOffset": 3469 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6450, + "endColumn": 89, + "endOffset": 6535 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4340, + "endColumn": 89, + "endOffset": 4425 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6540, + "endColumn": 107, + "endOffset": 6643 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ky-rKG\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4430, + "endColumn": 107, + "endOffset": 4533 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6648, + "endColumn": 112, + "endOffset": 6756 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 112, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6761, + "endColumn": 113, + "endOffset": 6870 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 113, + "endOffset": 504 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6875, + "endColumn": 103, + "endOffset": 6974 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 509, + "endColumn": 103, + "endOffset": 608 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6979, + "endColumn": 102, + "endOffset": 7077 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 613, + "endColumn": 102, + "endOffset": 711 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7082, + "endColumn": 117, + "endOffset": 7195 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 716, + "endColumn": 117, + "endOffset": 829 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7200, + "endColumn": 98, + "endOffset": 7294 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 834, + "endColumn": 98, + "endOffset": 928 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7299, + "endColumn": 96, + "endOffset": 7391 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 96, + "endOffset": 1025 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7396, + "endColumn": 120, + "endOffset": 7512 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1030, + "endColumn": 120, + "endOffset": 1146 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7517, + "endColumn": 118, + "endOffset": 7631 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1151, + "endColumn": 118, + "endOffset": 1265 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7636, + "endColumn": 85, + "endOffset": 7717 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1270, + "endColumn": 85, + "endOffset": 1351 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7722, + "endColumn": 95, + "endOffset": 7813 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 95, + "endOffset": 1447 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7818, + "endColumn": 105, + "endOffset": 7919 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ky-rKG\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 105, + "endOffset": 426 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7924, + "endColumn": 94, + "endOffset": 8014 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ky-rKG\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8019, + "endColumn": 100, + "endOffset": 8115 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ky-rKG\\values-ky-rKG.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2184, + "endColumn": 100, + "endOffset": 2280 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-land.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-land.json new file mode 100644 index 0000000..71e2439 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-land.json @@ -0,0 +1,142 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-land\\values-land.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-land\\values-land.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 61, + "endOffset": 286 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-land\\values-land.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 466, + "endColumn": 71, + "endOffset": 533 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 189, + "endColumn": 69, + "endOffset": 254 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-land\\values-land.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 722, + "endColumn": 69, + "endOffset": 787 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 259, + "endColumn": 63, + "endOffset": 318 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-land\\values-land.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 967, + "endColumn": 63, + "endOffset": 1026 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 323, + "endColumn": 70, + "endOffset": 389 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-land\\values-land.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1215, + "endColumn": 70, + "endOffset": 1281 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 394, + "endColumn": 67, + "endOffset": 457 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-land\\values-land.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1286, + "endColumn": 67, + "endOffset": 1349 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 462, + "endLine": 11, + "endColumn": 12, + "endOffset": 639 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values-land\\values-land.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 224, + "endLine": 7, + "endColumn": 12, + "endOffset": 401 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-large-v4.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-large-v4.json new file mode 100644 index 0000000..d3314fa --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-large-v4.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-large-v4\\values-large-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-large\\values-large.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 230, + "endColumn": 61, + "endOffset": 287 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-large\\values-large.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 468, + "endColumn": 71, + "endOffset": 535 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 189, + "endColumn": 58, + "endOffset": 243 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-large\\values-large.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 540, + "endColumn": 58, + "endOffset": 594 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 248, + "endColumn": 70, + "endOffset": 314 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-large\\values-large.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 775, + "endColumn": 70, + "endOffset": 841 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 319, + "endColumn": 70, + "endOffset": 385 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-large\\values-large.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 846, + "endColumn": 70, + "endOffset": 912 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 390, + "endColumn": 69, + "endOffset": 455 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-large\\values-large.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 917, + "endColumn": 69, + "endOffset": 982 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 460, + "endColumn": 69, + "endOffset": 525 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-large\\values-large.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 987, + "endColumn": 69, + "endOffset": 1052 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 530, + "endColumn": 67, + "endOffset": 593 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-large\\values-large.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1057, + "endColumn": 67, + "endOffset": 1120 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 598, + "endColumn": 67, + "endOffset": 661 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-large\\values-large.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1125, + "endColumn": 67, + "endOffset": 1188 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 666, + "endColumn": 63, + "endOffset": 725 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-large\\values-large.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1193, + "endColumn": 63, + "endOffset": 1252 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 730, + "endColumn": 54, + "endOffset": 780 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-large\\values-large.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1257, + "endColumn": 54, + "endOffset": 1307 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 785, + "endColumn": 103, + "endOffset": 884 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-large\\values-large.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1493, + "endColumn": 103, + "endOffset": 1592 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 889, + "endColumn": 115, + "endOffset": 1000 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-large\\values-large.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1597, + "endColumn": 115, + "endOffset": 1708 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-ldltr-v21.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-ldltr-v21.json new file mode 100644 index 0000000..871418c --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-ldltr-v21.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-ldltr-v21\\values-ldltr-v21.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 112, + "endOffset": 163 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ldltr-v21\\values-ldltr-v21.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 240, + "endColumn": 112, + "endOffset": 348 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-ldrtl-v23.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-ldrtl-v23.json new file mode 100644 index 0000000..823d9dd --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-ldrtl-v23.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-ldrtl-v23\\values-ldrtl-v23.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 112, + "endOffset": 163 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ldrtl-v23\\values-ldrtl-v23.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 240, + "endColumn": 112, + "endOffset": 348 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-lo-rLA.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-lo-rLA.json new file mode 100644 index 0000000..dfcd5ae --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-lo-rLA.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-lo-rLA\\values-lo-rLA.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 102, + "endOffset": 203 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 102, + "endOffset": 331 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 208, + "endColumn": 107, + "endOffset": 311 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 336, + "endColumn": 107, + "endOffset": 439 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 316, + "endColumn": 122, + "endOffset": 434 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 444, + "endColumn": 122, + "endOffset": 562 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 439, + "endColumn": 96, + "endOffset": 531 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 567, + "endColumn": 96, + "endOffset": 659 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 536, + "endColumn": 106, + "endOffset": 638 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 664, + "endColumn": 106, + "endOffset": 766 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 643, + "endColumn": 84, + "endOffset": 723 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 771, + "endColumn": 84, + "endOffset": 851 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 728, + "endColumn": 104, + "endOffset": 828 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 856, + "endColumn": 104, + "endOffset": 956 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 833, + "endColumn": 111, + "endOffset": 940 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 961, + "endColumn": 111, + "endOffset": 1068 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 76, + "endOffset": 1017 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 76, + "endOffset": 1145 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1022, + "endColumn": 77, + "endOffset": 1095 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1150, + "endColumn": 77, + "endOffset": 1223 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1100, + "endColumn": 79, + "endOffset": 1175 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1228, + "endColumn": 79, + "endOffset": 1303 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1180, + "endColumn": 106, + "endOffset": 1282 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1308, + "endColumn": 106, + "endOffset": 1410 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1287, + "endColumn": 96, + "endOffset": 1379 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1415, + "endColumn": 96, + "endOffset": 1507 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1384, + "endColumn": 97, + "endOffset": 1477 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1512, + "endColumn": 97, + "endOffset": 1605 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1482, + "endColumn": 104, + "endOffset": 1582 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1610, + "endColumn": 104, + "endOffset": 1710 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1587, + "endColumn": 102, + "endOffset": 1685 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1715, + "endColumn": 102, + "endOffset": 1813 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1690, + "endColumn": 103, + "endOffset": 1789 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1818, + "endColumn": 103, + "endOffset": 1917 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1794, + "endColumn": 121, + "endOffset": 1911 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1922, + "endColumn": 121, + "endOffset": 2039 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1916, + "endColumn": 95, + "endOffset": 2007 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2044, + "endColumn": 95, + "endOffset": 2135 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2012, + "endColumn": 295, + "endOffset": 2303 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3584, + "endColumn": 299, + "endOffset": 3879 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2308, + "endColumn": 130, + "endOffset": 2434 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1379, + "endColumn": 130, + "endOffset": 1505 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2439, + "endColumn": 201, + "endOffset": 2636 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1173, + "endColumn": 205, + "endOffset": 1374 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2641, + "endColumn": 131, + "endOffset": 2768 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1041, + "endColumn": 131, + "endOffset": 1168 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2773, + "endColumn": 133, + "endOffset": 2902 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 907, + "endColumn": 133, + "endOffset": 1036 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2907, + "endColumn": 225, + "endOffset": 3128 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 444, + "endColumn": 229, + "endOffset": 669 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3133, + "endColumn": 228, + "endOffset": 3357 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 674, + "endColumn": 232, + "endOffset": 902 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3362, + "endColumn": 126, + "endOffset": 3484 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 317, + "endColumn": 126, + "endOffset": 439 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3489, + "endColumn": 166, + "endOffset": 3651 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2814, + "endColumn": 166, + "endOffset": 2976 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3656, + "endColumn": 120, + "endOffset": 3772 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2693, + "endColumn": 120, + "endOffset": 2809 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3777, + "endColumn": 162, + "endOffset": 3935 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2530, + "endColumn": 162, + "endOffset": 2688 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3940, + "endColumn": 120, + "endOffset": 4056 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2409, + "endColumn": 120, + "endOffset": 2525 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4061, + "endColumn": 146, + "endOffset": 4203 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 146, + "endOffset": 312 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4208, + "endColumn": 172, + "endOffset": 4376 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4324, + "endColumn": 172, + "endOffset": 4492 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4381, + "endColumn": 129, + "endOffset": 4506 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4194, + "endColumn": 129, + "endOffset": 4319 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4511, + "endColumn": 177, + "endOffset": 4684 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4016, + "endColumn": 177, + "endOffset": 4189 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4689, + "endColumn": 131, + "endOffset": 4816 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3884, + "endColumn": 131, + "endOffset": 4011 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4821, + "endColumn": 263, + "endOffset": 5080 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-lo-rLA\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 267, + "endOffset": 433 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5085, + "endColumn": 268, + "endOffset": 5349 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3107, + "endColumn": 272, + "endOffset": 3375 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5354, + "endColumn": 125, + "endOffset": 5475 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2981, + "endColumn": 125, + "endOffset": 3102 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5480, + "endColumn": 106, + "endOffset": 5582 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3380, + "endColumn": 106, + "endOffset": 3482 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5587, + "endColumn": 196, + "endOffset": 5779 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1641, + "endColumn": 200, + "endOffset": 1837 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5784, + "endColumn": 130, + "endOffset": 5910 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1510, + "endColumn": 130, + "endOffset": 1636 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5915, + "endColumn": 229, + "endOffset": 6140 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2175, + "endColumn": 233, + "endOffset": 2404 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6145, + "endColumn": 141, + "endOffset": 6282 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2033, + "endColumn": 141, + "endOffset": 2170 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6287, + "endColumn": 190, + "endOffset": 6473 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1842, + "endColumn": 190, + "endOffset": 2028 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6478, + "endColumn": 96, + "endOffset": 6570 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3487, + "endColumn": 96, + "endOffset": 3579 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6575, + "endColumn": 98, + "endOffset": 6669 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4497, + "endColumn": 98, + "endOffset": 4591 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6674, + "endColumn": 114, + "endOffset": 6784 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lo-rLA\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4596, + "endColumn": 114, + "endOffset": 4706 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6789, + "endColumn": 112, + "endOffset": 6897 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 112, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6902, + "endColumn": 111, + "endOffset": 7009 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 111, + "endOffset": 502 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7014, + "endColumn": 105, + "endOffset": 7115 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 507, + "endColumn": 105, + "endOffset": 608 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7120, + "endColumn": 109, + "endOffset": 7225 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 613, + "endColumn": 109, + "endOffset": 718 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7230, + "endColumn": 120, + "endOffset": 7346 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 723, + "endColumn": 120, + "endOffset": 839 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7351, + "endColumn": 100, + "endOffset": 7447 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 844, + "endColumn": 100, + "endOffset": 940 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7452, + "endColumn": 94, + "endOffset": 7542 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 94, + "endOffset": 1035 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7547, + "endColumn": 126, + "endOffset": 7669 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1040, + "endColumn": 126, + "endOffset": 1162 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7674, + "endColumn": 105, + "endOffset": 7775 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1167, + "endColumn": 105, + "endOffset": 1268 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7780, + "endColumn": 84, + "endOffset": 7860 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1273, + "endColumn": 84, + "endOffset": 1353 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7865, + "endColumn": 93, + "endOffset": 7954 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1358, + "endColumn": 93, + "endOffset": 1447 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7959, + "endColumn": 104, + "endOffset": 8059 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-lo-rLA\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 326, + "endColumn": 104, + "endOffset": 426 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8064, + "endColumn": 95, + "endOffset": 8155 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-lo-rLA\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 95, + "endOffset": 321 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8160, + "endColumn": 100, + "endOffset": 8256 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lo-rLA\\values-lo-rLA.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2140, + "endColumn": 100, + "endOffset": 2236 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-lt.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-lt.json new file mode 100644 index 0000000..9fc9b6c --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-lt.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-lt\\values-lt.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 115, + "endOffset": 216 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 115, + "endOffset": 340 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 221, + "endColumn": 107, + "endOffset": 324 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 345, + "endColumn": 107, + "endOffset": 448 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 329, + "endColumn": 122, + "endOffset": 447 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 453, + "endColumn": 122, + "endOffset": 571 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 452, + "endColumn": 100, + "endOffset": 548 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 576, + "endColumn": 100, + "endOffset": 672 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 553, + "endColumn": 112, + "endOffset": 661 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 677, + "endColumn": 112, + "endOffset": 785 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 666, + "endColumn": 86, + "endOffset": 748 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 790, + "endColumn": 86, + "endOffset": 872 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 753, + "endColumn": 108, + "endOffset": 857 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 877, + "endColumn": 108, + "endOffset": 981 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 862, + "endColumn": 120, + "endOffset": 978 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 986, + "endColumn": 120, + "endOffset": 1102 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 983, + "endColumn": 81, + "endOffset": 1060 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1107, + "endColumn": 81, + "endOffset": 1184 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1065, + "endColumn": 80, + "endOffset": 1141 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1189, + "endColumn": 80, + "endOffset": 1265 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1146, + "endColumn": 84, + "endOffset": 1226 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1270, + "endColumn": 84, + "endOffset": 1350 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1231, + "endColumn": 108, + "endOffset": 1335 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1355, + "endColumn": 108, + "endOffset": 1459 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1340, + "endColumn": 108, + "endOffset": 1444 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1464, + "endColumn": 108, + "endOffset": 1568 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1449, + "endColumn": 99, + "endOffset": 1544 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1573, + "endColumn": 99, + "endOffset": 1668 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1549, + "endColumn": 109, + "endOffset": 1654 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1673, + "endColumn": 109, + "endOffset": 1778 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1659, + "endColumn": 103, + "endOffset": 1758 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1783, + "endColumn": 103, + "endOffset": 1882 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1763, + "endColumn": 112, + "endOffset": 1871 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1887, + "endColumn": 112, + "endOffset": 1995 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1876, + "endColumn": 129, + "endOffset": 2001 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2000, + "endColumn": 129, + "endOffset": 2125 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2006, + "endColumn": 100, + "endOffset": 2102 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2130, + "endColumn": 100, + "endOffset": 2226 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2107, + "endColumn": 288, + "endOffset": 2391 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3559, + "endColumn": 292, + "endOffset": 3847 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2396, + "endColumn": 132, + "endOffset": 2524 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1332, + "endColumn": 132, + "endOffset": 1460 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2529, + "endColumn": 183, + "endOffset": 2708 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1144, + "endColumn": 187, + "endOffset": 1327 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2713, + "endColumn": 133, + "endOffset": 2842 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 133, + "endOffset": 1139 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2847, + "endColumn": 130, + "endOffset": 2973 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 879, + "endColumn": 130, + "endOffset": 1005 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2978, + "endColumn": 206, + "endOffset": 3180 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 438, + "endColumn": 210, + "endOffset": 644 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3185, + "endColumn": 225, + "endOffset": 3406 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 649, + "endColumn": 229, + "endOffset": 874 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3411, + "endColumn": 131, + "endOffset": 3538 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 306, + "endColumn": 131, + "endOffset": 433 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3543, + "endColumn": 174, + "endOffset": 3713 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2767, + "endColumn": 174, + "endOffset": 2937 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3718, + "endColumn": 122, + "endOffset": 3836 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2644, + "endColumn": 122, + "endOffset": 2762 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3841, + "endColumn": 188, + "endOffset": 4025 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2455, + "endColumn": 188, + "endOffset": 2639 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4030, + "endColumn": 119, + "endOffset": 4145 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2335, + "endColumn": 119, + "endOffset": 2450 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4150, + "endColumn": 135, + "endOffset": 4281 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 135, + "endOffset": 301 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4286, + "endColumn": 168, + "endOffset": 4450 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4284, + "endColumn": 168, + "endOffset": 4448 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4455, + "endColumn": 127, + "endOffset": 4578 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4156, + "endColumn": 127, + "endOffset": 4279 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4583, + "endColumn": 175, + "endOffset": 4754 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3980, + "endColumn": 175, + "endOffset": 4151 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4759, + "endColumn": 127, + "endOffset": 4882 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3852, + "endColumn": 127, + "endOffset": 3975 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4887, + "endColumn": 273, + "endOffset": 5156 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-lt\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 277, + "endOffset": 443 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5161, + "endColumn": 277, + "endOffset": 5434 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3069, + "endColumn": 281, + "endOffset": 3346 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5439, + "endColumn": 126, + "endOffset": 5561 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2942, + "endColumn": 126, + "endOffset": 3064 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5566, + "endColumn": 110, + "endOffset": 5672 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3351, + "endColumn": 110, + "endOffset": 3457 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5677, + "endColumn": 195, + "endOffset": 5868 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1601, + "endColumn": 199, + "endOffset": 1796 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5873, + "endColumn": 135, + "endOffset": 6004 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1465, + "endColumn": 135, + "endOffset": 1596 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6009, + "endColumn": 211, + "endOffset": 6216 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2119, + "endColumn": 215, + "endOffset": 2330 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6221, + "endColumn": 137, + "endOffset": 6354 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1981, + "endColumn": 137, + "endOffset": 2114 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6359, + "endColumn": 179, + "endOffset": 6534 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1801, + "endColumn": 179, + "endOffset": 1976 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6539, + "endColumn": 96, + "endOffset": 6631 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3462, + "endColumn": 96, + "endOffset": 3554 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6636, + "endColumn": 95, + "endOffset": 6727 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4453, + "endColumn": 95, + "endOffset": 4544 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6732, + "endColumn": 119, + "endOffset": 6847 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lt\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4549, + "endColumn": 119, + "endOffset": 4664 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6852, + "endColumn": 108, + "endOffset": 6956 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 108, + "endOffset": 382 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6961, + "endColumn": 109, + "endOffset": 7066 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 387, + "endColumn": 109, + "endOffset": 492 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7071, + "endColumn": 113, + "endOffset": 7180 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 497, + "endColumn": 113, + "endOffset": 606 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7185, + "endColumn": 102, + "endOffset": 7283 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 611, + "endColumn": 102, + "endOffset": 709 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7288, + "endColumn": 126, + "endOffset": 7410 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 714, + "endColumn": 126, + "endOffset": 836 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7415, + "endColumn": 101, + "endOffset": 7512 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 841, + "endColumn": 101, + "endOffset": 938 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7517, + "endColumn": 95, + "endOffset": 7608 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 943, + "endColumn": 95, + "endOffset": 1034 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7613, + "endColumn": 123, + "endOffset": 7732 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1039, + "endColumn": 123, + "endOffset": 1158 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7737, + "endColumn": 109, + "endOffset": 7842 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 109, + "endOffset": 1268 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7847, + "endColumn": 86, + "endOffset": 7929 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1273, + "endColumn": 86, + "endOffset": 1355 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7934, + "endColumn": 96, + "endOffset": 8026 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1360, + "endColumn": 96, + "endOffset": 1452 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8031, + "endColumn": 106, + "endOffset": 8133 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-lt\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 327, + "endColumn": 106, + "endOffset": 429 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8138, + "endColumn": 96, + "endOffset": 8230 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-lt\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 96, + "endOffset": 322 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8235, + "endColumn": 100, + "endOffset": 8331 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lt\\values-lt.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2231, + "endColumn": 100, + "endOffset": 2327 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8336, + "endColumn": 114, + "endOffset": 8446 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-lt\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 114, + "endOffset": 340 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-lv.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-lv.json new file mode 100644 index 0000000..816047f --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-lv.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-lv\\values-lv.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 119, + "endOffset": 220 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 119, + "endOffset": 344 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 225, + "endColumn": 107, + "endOffset": 328 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 349, + "endColumn": 107, + "endOffset": 452 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 333, + "endColumn": 122, + "endOffset": 451 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 457, + "endColumn": 122, + "endOffset": 575 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 456, + "endColumn": 107, + "endOffset": 559 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 580, + "endColumn": 107, + "endOffset": 683 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 564, + "endColumn": 108, + "endOffset": 668 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 108, + "endOffset": 792 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 673, + "endColumn": 85, + "endOffset": 754 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 85, + "endOffset": 878 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 759, + "endColumn": 103, + "endOffset": 858 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 883, + "endColumn": 103, + "endOffset": 982 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 863, + "endColumn": 121, + "endOffset": 980 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 987, + "endColumn": 121, + "endOffset": 1104 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 985, + "endColumn": 81, + "endOffset": 1062 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1109, + "endColumn": 81, + "endOffset": 1186 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1067, + "endColumn": 81, + "endOffset": 1144 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1191, + "endColumn": 81, + "endOffset": 1268 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1149, + "endColumn": 84, + "endOffset": 1229 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1273, + "endColumn": 84, + "endOffset": 1353 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1234, + "endColumn": 108, + "endOffset": 1338 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1358, + "endColumn": 108, + "endOffset": 1462 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1343, + "endColumn": 111, + "endOffset": 1450 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1467, + "endColumn": 111, + "endOffset": 1574 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1455, + "endColumn": 98, + "endOffset": 1549 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1579, + "endColumn": 98, + "endOffset": 1673 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1554, + "endColumn": 110, + "endOffset": 1660 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1678, + "endColumn": 110, + "endOffset": 1784 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1665, + "endColumn": 108, + "endOffset": 1769 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1789, + "endColumn": 108, + "endOffset": 1893 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1774, + "endColumn": 104, + "endOffset": 1874 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1898, + "endColumn": 104, + "endOffset": 1998 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1879, + "endColumn": 118, + "endOffset": 1993 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2003, + "endColumn": 118, + "endOffset": 2117 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1998, + "endColumn": 98, + "endOffset": 2092 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2122, + "endColumn": 98, + "endOffset": 2216 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2097, + "endColumn": 307, + "endOffset": 2400 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3594, + "endColumn": 311, + "endOffset": 3901 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2405, + "endColumn": 133, + "endOffset": 2534 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1334, + "endColumn": 133, + "endOffset": 1463 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2539, + "endColumn": 192, + "endOffset": 2727 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1137, + "endColumn": 196, + "endOffset": 1329 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2732, + "endColumn": 134, + "endOffset": 2862 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1002, + "endColumn": 134, + "endOffset": 1132 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2867, + "endColumn": 131, + "endOffset": 2994 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 870, + "endColumn": 131, + "endOffset": 997 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2999, + "endColumn": 207, + "endOffset": 3202 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 439, + "endColumn": 211, + "endOffset": 646 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3207, + "endColumn": 214, + "endOffset": 3417 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 651, + "endColumn": 218, + "endOffset": 865 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3422, + "endColumn": 132, + "endOffset": 3550 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 306, + "endColumn": 132, + "endOffset": 434 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3555, + "endColumn": 176, + "endOffset": 3727 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2796, + "endColumn": 176, + "endOffset": 2968 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3732, + "endColumn": 119, + "endOffset": 3847 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2676, + "endColumn": 119, + "endOffset": 2791 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3852, + "endColumn": 194, + "endOffset": 4042 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2481, + "endColumn": 194, + "endOffset": 2671 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4047, + "endColumn": 117, + "endOffset": 4160 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2363, + "endColumn": 117, + "endOffset": 2476 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4165, + "endColumn": 135, + "endOffset": 4296 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 135, + "endOffset": 301 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4301, + "endColumn": 167, + "endOffset": 4464 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4347, + "endColumn": 167, + "endOffset": 4510 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4469, + "endColumn": 129, + "endOffset": 4594 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4217, + "endColumn": 129, + "endOffset": 4342 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4599, + "endColumn": 179, + "endOffset": 4774 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4037, + "endColumn": 179, + "endOffset": 4212 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4779, + "endColumn": 130, + "endOffset": 4905 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3906, + "endColumn": 130, + "endOffset": 4032 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4910, + "endColumn": 264, + "endOffset": 5170 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-lv\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 268, + "endOffset": 434 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5175, + "endColumn": 285, + "endOffset": 5456 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3100, + "endColumn": 289, + "endOffset": 3385 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5461, + "endColumn": 126, + "endOffset": 5583 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2973, + "endColumn": 126, + "endOffset": 3095 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5588, + "endColumn": 110, + "endOffset": 5694 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3390, + "endColumn": 110, + "endOffset": 3496 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5699, + "endColumn": 194, + "endOffset": 5889 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1605, + "endColumn": 198, + "endOffset": 1799 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5894, + "endColumn": 136, + "endOffset": 6026 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 136, + "endOffset": 1600 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6031, + "endColumn": 227, + "endOffset": 6254 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2131, + "endColumn": 231, + "endOffset": 2358 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6259, + "endColumn": 141, + "endOffset": 6396 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1989, + "endColumn": 141, + "endOffset": 2126 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6401, + "endColumn": 184, + "endOffset": 6581 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1804, + "endColumn": 184, + "endOffset": 1984 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6586, + "endColumn": 92, + "endOffset": 6674 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3501, + "endColumn": 92, + "endOffset": 3589 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6679, + "endColumn": 97, + "endOffset": 6772 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4515, + "endColumn": 97, + "endOffset": 4608 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6777, + "endColumn": 118, + "endOffset": 6891 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-lv\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4613, + "endColumn": 118, + "endOffset": 4727 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6896, + "endColumn": 108, + "endOffset": 7000 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 108, + "endOffset": 382 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 7005, + "endColumn": 117, + "endOffset": 7118 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 387, + "endColumn": 117, + "endOffset": 500 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7123, + "endColumn": 116, + "endOffset": 7235 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 505, + "endColumn": 116, + "endOffset": 617 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7240, + "endColumn": 102, + "endOffset": 7338 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 622, + "endColumn": 102, + "endOffset": 720 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7343, + "endColumn": 126, + "endOffset": 7465 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 725, + "endColumn": 126, + "endOffset": 847 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7470, + "endColumn": 97, + "endOffset": 7563 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 852, + "endColumn": 97, + "endOffset": 945 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7568, + "endColumn": 97, + "endOffset": 7661 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 950, + "endColumn": 97, + "endOffset": 1043 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7666, + "endColumn": 124, + "endOffset": 7786 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1048, + "endColumn": 124, + "endOffset": 1168 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7791, + "endColumn": 106, + "endOffset": 7893 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1173, + "endColumn": 106, + "endOffset": 1275 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7898, + "endColumn": 86, + "endOffset": 7980 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1280, + "endColumn": 86, + "endOffset": 1362 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7985, + "endColumn": 93, + "endOffset": 8074 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1367, + "endColumn": 93, + "endOffset": 1456 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8079, + "endColumn": 118, + "endOffset": 8193 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-lv\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 326, + "endColumn": 118, + "endOffset": 440 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8198, + "endColumn": 95, + "endOffset": 8289 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-lv\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 95, + "endOffset": 321 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8294, + "endColumn": 100, + "endOffset": 8390 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-lv\\values-lv.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2221, + "endColumn": 100, + "endOffset": 2317 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8395, + "endColumn": 118, + "endOffset": 8509 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-lv\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 118, + "endOffset": 344 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-mk-rMK.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-mk-rMK.json new file mode 100644 index 0000000..6be0134 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-mk-rMK.json @@ -0,0 +1,1147 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-mk-rMK\\values-mk-rMK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 107, + "endOffset": 208 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 107, + "endOffset": 336 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 213, + "endColumn": 122, + "endOffset": 331 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 341, + "endColumn": 122, + "endOffset": 459 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 336, + "endColumn": 103, + "endOffset": 435 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 464, + "endColumn": 103, + "endOffset": 563 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 440, + "endColumn": 107, + "endOffset": 543 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 568, + "endColumn": 107, + "endOffset": 671 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 548, + "endColumn": 85, + "endOffset": 629 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 676, + "endColumn": 85, + "endOffset": 757 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 634, + "endColumn": 104, + "endOffset": 734 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 762, + "endColumn": 104, + "endOffset": 862 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 739, + "endColumn": 118, + "endOffset": 853 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 867, + "endColumn": 118, + "endOffset": 981 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 858, + "endColumn": 82, + "endOffset": 936 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 986, + "endColumn": 82, + "endOffset": 1064 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 941, + "endColumn": 81, + "endOffset": 1018 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1069, + "endColumn": 81, + "endOffset": 1146 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1023, + "endColumn": 86, + "endOffset": 1105 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1151, + "endColumn": 86, + "endOffset": 1233 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1110, + "endColumn": 105, + "endOffset": 1211 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1238, + "endColumn": 105, + "endOffset": 1339 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1216, + "endColumn": 106, + "endOffset": 1318 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1344, + "endColumn": 106, + "endOffset": 1446 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1323, + "endColumn": 100, + "endOffset": 1419 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1451, + "endColumn": 100, + "endOffset": 1547 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1424, + "endColumn": 106, + "endOffset": 1526 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1552, + "endColumn": 106, + "endOffset": 1654 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1531, + "endColumn": 110, + "endOffset": 1637 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1659, + "endColumn": 110, + "endOffset": 1765 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1642, + "endColumn": 103, + "endOffset": 1741 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1770, + "endColumn": 103, + "endOffset": 1869 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1746, + "endColumn": 97, + "endOffset": 1839 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 97, + "endOffset": 1967 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1844, + "endColumn": 254, + "endOffset": 2094 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3542, + "endColumn": 258, + "endOffset": 3796 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2099, + "endColumn": 135, + "endOffset": 2230 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1347, + "endColumn": 135, + "endOffset": 1478 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2235, + "endColumn": 192, + "endOffset": 2423 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1150, + "endColumn": 196, + "endOffset": 1342 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2428, + "endColumn": 134, + "endOffset": 2558 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1015, + "endColumn": 134, + "endOffset": 1145 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2563, + "endColumn": 135, + "endOffset": 2694 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 879, + "endColumn": 135, + "endOffset": 1010 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2699, + "endColumn": 212, + "endOffset": 2907 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 445, + "endColumn": 216, + "endOffset": 657 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2912, + "endColumn": 212, + "endOffset": 3120 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 662, + "endColumn": 216, + "endOffset": 874 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3125, + "endColumn": 134, + "endOffset": 3255 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 310, + "endColumn": 134, + "endOffset": 440 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3260, + "endColumn": 171, + "endOffset": 3427 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2786, + "endColumn": 171, + "endOffset": 2953 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3432, + "endColumn": 121, + "endOffset": 3549 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2664, + "endColumn": 121, + "endOffset": 2781 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3554, + "endColumn": 177, + "endOffset": 3727 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2486, + "endColumn": 177, + "endOffset": 2659 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3732, + "endColumn": 123, + "endOffset": 3851 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2362, + "endColumn": 123, + "endOffset": 2481 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3856, + "endColumn": 139, + "endOffset": 3991 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 139, + "endOffset": 305 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3996, + "endColumn": 170, + "endOffset": 4162 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4230, + "endColumn": 170, + "endOffset": 4396 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4167, + "endColumn": 127, + "endOffset": 4290 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4102, + "endColumn": 127, + "endOffset": 4225 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4295, + "endColumn": 171, + "endOffset": 4462 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3930, + "endColumn": 171, + "endOffset": 4097 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4467, + "endColumn": 128, + "endOffset": 4591 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3801, + "endColumn": 128, + "endOffset": 3925 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4596, + "endColumn": 237, + "endOffset": 4829 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-mk-rMK\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 241, + "endOffset": 407 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4834, + "endColumn": 247, + "endOffset": 5077 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3083, + "endColumn": 251, + "endOffset": 3330 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 5082, + "endColumn": 124, + "endOffset": 5202 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2958, + "endColumn": 124, + "endOffset": 3078 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5207, + "endColumn": 108, + "endOffset": 5311 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3335, + "endColumn": 108, + "endOffset": 3439 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5316, + "endColumn": 196, + "endOffset": 5508 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1618, + "endColumn": 200, + "endOffset": 1814 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5513, + "endColumn": 134, + "endOffset": 5643 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1483, + "endColumn": 134, + "endOffset": 1613 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5648, + "endColumn": 211, + "endOffset": 5855 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2146, + "endColumn": 215, + "endOffset": 2357 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5860, + "endColumn": 137, + "endOffset": 5993 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2008, + "endColumn": 137, + "endOffset": 2141 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5998, + "endColumn": 188, + "endOffset": 6182 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1819, + "endColumn": 188, + "endOffset": 2003 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6187, + "endColumn": 97, + "endOffset": 6280 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3444, + "endColumn": 97, + "endOffset": 3537 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6285, + "endColumn": 93, + "endOffset": 6374 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4401, + "endColumn": 93, + "endOffset": 4490 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6379, + "endColumn": 108, + "endOffset": 6483 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mk-rMK\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4495, + "endColumn": 108, + "endOffset": 4599 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6488, + "endColumn": 108, + "endOffset": 6592 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 108, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6597, + "endColumn": 114, + "endOffset": 6707 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 114, + "endOffset": 501 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6712, + "endColumn": 106, + "endOffset": 6814 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 506, + "endColumn": 106, + "endOffset": 608 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6819, + "endColumn": 104, + "endOffset": 6919 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 613, + "endColumn": 104, + "endOffset": 713 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6924, + "endColumn": 126, + "endOffset": 7046 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 718, + "endColumn": 126, + "endOffset": 840 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7051, + "endColumn": 95, + "endOffset": 7142 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 845, + "endColumn": 95, + "endOffset": 936 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7147, + "endColumn": 101, + "endOffset": 7244 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 941, + "endColumn": 101, + "endOffset": 1038 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7249, + "endColumn": 126, + "endOffset": 7371 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1043, + "endColumn": 126, + "endOffset": 1165 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7376, + "endColumn": 106, + "endOffset": 7478 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1170, + "endColumn": 106, + "endOffset": 1272 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7483, + "endColumn": 85, + "endOffset": 7564 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1277, + "endColumn": 85, + "endOffset": 1358 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7569, + "endColumn": 91, + "endOffset": 7656 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1363, + "endColumn": 91, + "endOffset": 1450 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7661, + "endColumn": 122, + "endOffset": 7779 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-mk-rMK\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 328, + "endColumn": 122, + "endOffset": 446 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7784, + "endColumn": 97, + "endOffset": 7877 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-mk-rMK\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 97, + "endOffset": 323 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7882, + "endColumn": 100, + "endOffset": 7978 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mk-rMK\\values-mk-rMK.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1972, + "endColumn": 100, + "endOffset": 2068 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-ml-rIN.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-ml-rIN.json new file mode 100644 index 0000000..b609671 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-ml-rIN.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-ml-rIN\\values-ml-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 118, + "endOffset": 219 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 118, + "endOffset": 347 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 224, + "endColumn": 107, + "endOffset": 327 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 352, + "endColumn": 107, + "endOffset": 455 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 332, + "endColumn": 122, + "endOffset": 450 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 460, + "endColumn": 122, + "endOffset": 578 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 455, + "endColumn": 117, + "endOffset": 568 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 583, + "endColumn": 117, + "endOffset": 696 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 573, + "endColumn": 115, + "endOffset": 684 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 701, + "endColumn": 115, + "endOffset": 812 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 689, + "endColumn": 92, + "endOffset": 777 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 817, + "endColumn": 92, + "endOffset": 905 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 782, + "endColumn": 104, + "endOffset": 882 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 910, + "endColumn": 104, + "endOffset": 1010 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 887, + "endColumn": 131, + "endOffset": 1014 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1015, + "endColumn": 131, + "endOffset": 1142 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1019, + "endColumn": 76, + "endOffset": 1091 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 76, + "endOffset": 1219 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1096, + "endColumn": 75, + "endOffset": 1167 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1224, + "endColumn": 75, + "endOffset": 1295 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1172, + "endColumn": 81, + "endOffset": 1249 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1300, + "endColumn": 81, + "endOffset": 1377 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1254, + "endColumn": 110, + "endOffset": 1360 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1382, + "endColumn": 110, + "endOffset": 1488 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1365, + "endColumn": 105, + "endOffset": 1466 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1493, + "endColumn": 105, + "endOffset": 1594 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1471, + "endColumn": 97, + "endOffset": 1564 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1599, + "endColumn": 97, + "endOffset": 1692 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1569, + "endColumn": 113, + "endOffset": 1678 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1697, + "endColumn": 113, + "endOffset": 1806 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1683, + "endColumn": 100, + "endOffset": 1779 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1811, + "endColumn": 100, + "endOffset": 1907 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 110, + "endOffset": 1890 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1912, + "endColumn": 110, + "endOffset": 2018 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1895, + "endColumn": 127, + "endOffset": 2018 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2023, + "endColumn": 127, + "endOffset": 2146 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2023, + "endColumn": 100, + "endOffset": 2119 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2151, + "endColumn": 100, + "endOffset": 2247 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2124, + "endColumn": 254, + "endOffset": 2374 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3643, + "endColumn": 258, + "endOffset": 3897 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2379, + "endColumn": 141, + "endOffset": 2516 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1388, + "endColumn": 141, + "endOffset": 1525 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2521, + "endColumn": 210, + "endOffset": 2727 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1173, + "endColumn": 214, + "endOffset": 1383 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2732, + "endColumn": 140, + "endOffset": 2868 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1032, + "endColumn": 140, + "endOffset": 1168 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2873, + "endColumn": 134, + "endOffset": 3003 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 897, + "endColumn": 134, + "endOffset": 1027 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3008, + "endColumn": 218, + "endOffset": 3222 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 433, + "endColumn": 222, + "endOffset": 651 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3227, + "endColumn": 236, + "endOffset": 3459 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 656, + "endColumn": 240, + "endOffset": 892 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3464, + "endColumn": 126, + "endOffset": 3586 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 306, + "endColumn": 126, + "endOffset": 428 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3591, + "endColumn": 189, + "endOffset": 3776 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2860, + "endColumn": 189, + "endOffset": 3045 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3781, + "endColumn": 124, + "endOffset": 3901 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2735, + "endColumn": 124, + "endOffset": 2855 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3906, + "endColumn": 184, + "endOffset": 4086 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2550, + "endColumn": 184, + "endOffset": 2730 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4091, + "endColumn": 125, + "endOffset": 4212 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2424, + "endColumn": 125, + "endOffset": 2545 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4217, + "endColumn": 135, + "endOffset": 4348 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 135, + "endOffset": 301 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4353, + "endColumn": 187, + "endOffset": 4536 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4348, + "endColumn": 187, + "endOffset": 4531 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4541, + "endColumn": 129, + "endOffset": 4666 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4218, + "endColumn": 129, + "endOffset": 4343 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4671, + "endColumn": 187, + "endOffset": 4854 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4030, + "endColumn": 187, + "endOffset": 4213 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4859, + "endColumn": 127, + "endOffset": 4982 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3902, + "endColumn": 127, + "endOffset": 4025 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4987, + "endColumn": 269, + "endOffset": 5252 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-ml-rIN\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 273, + "endOffset": 439 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5257, + "endColumn": 253, + "endOffset": 5506 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3174, + "endColumn": 257, + "endOffset": 3427 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5511, + "endColumn": 123, + "endOffset": 5630 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 3050, + "endColumn": 123, + "endOffset": 3169 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5635, + "endColumn": 117, + "endOffset": 5748 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3432, + "endColumn": 117, + "endOffset": 3545 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5753, + "endColumn": 204, + "endOffset": 5953 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1668, + "endColumn": 208, + "endOffset": 1872 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5958, + "endColumn": 137, + "endOffset": 6091 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1530, + "endColumn": 137, + "endOffset": 1663 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6096, + "endColumn": 207, + "endOffset": 6299 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2212, + "endColumn": 211, + "endOffset": 2419 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6304, + "endColumn": 143, + "endOffset": 6443 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2068, + "endColumn": 143, + "endOffset": 2207 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6448, + "endColumn": 190, + "endOffset": 6634 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1877, + "endColumn": 190, + "endOffset": 2063 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6639, + "endColumn": 92, + "endOffset": 6727 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3550, + "endColumn": 92, + "endOffset": 3638 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6732, + "endColumn": 98, + "endOffset": 6826 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4536, + "endColumn": 98, + "endOffset": 4630 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6831, + "endColumn": 121, + "endOffset": 6948 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ml-rIN\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4635, + "endColumn": 121, + "endOffset": 4752 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6953, + "endColumn": 116, + "endOffset": 7065 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 116, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 7070, + "endColumn": 117, + "endOffset": 7183 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 117, + "endOffset": 512 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7188, + "endColumn": 118, + "endOffset": 7302 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 517, + "endColumn": 118, + "endOffset": 631 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7307, + "endColumn": 107, + "endOffset": 7410 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 636, + "endColumn": 107, + "endOffset": 739 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7415, + "endColumn": 125, + "endOffset": 7536 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 744, + "endColumn": 125, + "endOffset": 865 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7541, + "endColumn": 113, + "endOffset": 7650 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 870, + "endColumn": 113, + "endOffset": 979 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7655, + "endColumn": 101, + "endOffset": 7752 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 984, + "endColumn": 101, + "endOffset": 1081 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7757, + "endColumn": 120, + "endOffset": 7873 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1086, + "endColumn": 120, + "endOffset": 1202 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7878, + "endColumn": 112, + "endOffset": 7986 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1207, + "endColumn": 112, + "endOffset": 1315 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7991, + "endColumn": 87, + "endOffset": 8074 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1320, + "endColumn": 87, + "endOffset": 1403 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 8079, + "endColumn": 95, + "endOffset": 8170 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1408, + "endColumn": 95, + "endOffset": 1499 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8175, + "endColumn": 111, + "endOffset": 8282 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ml-rIN\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 326, + "endColumn": 111, + "endOffset": 433 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8287, + "endColumn": 95, + "endOffset": 8378 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ml-rIN\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 95, + "endOffset": 321 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8383, + "endColumn": 100, + "endOffset": 8479 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ml-rIN\\values-ml-rIN.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2252, + "endColumn": 100, + "endOffset": 2348 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-mn-rMN.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-mn-rMN.json new file mode 100644 index 0000000..5611b16 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-mn-rMN.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-mn-rMN\\values-mn-rMN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 112, + "endOffset": 213 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 112, + "endOffset": 341 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 218, + "endColumn": 107, + "endOffset": 321 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 346, + "endColumn": 107, + "endOffset": 449 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 326, + "endColumn": 122, + "endOffset": 444 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 454, + "endColumn": 122, + "endOffset": 572 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 449, + "endColumn": 99, + "endOffset": 544 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 577, + "endColumn": 99, + "endOffset": 672 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 549, + "endColumn": 112, + "endOffset": 657 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 677, + "endColumn": 112, + "endOffset": 785 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 662, + "endColumn": 86, + "endOffset": 744 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 790, + "endColumn": 86, + "endOffset": 872 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 749, + "endColumn": 105, + "endOffset": 850 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 877, + "endColumn": 105, + "endOffset": 978 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 855, + "endColumn": 111, + "endOffset": 962 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 983, + "endColumn": 111, + "endOffset": 1090 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 967, + "endColumn": 81, + "endOffset": 1044 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1095, + "endColumn": 81, + "endOffset": 1172 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1049, + "endColumn": 81, + "endOffset": 1126 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1177, + "endColumn": 81, + "endOffset": 1254 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1131, + "endColumn": 81, + "endOffset": 1208 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1259, + "endColumn": 81, + "endOffset": 1336 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1213, + "endColumn": 108, + "endOffset": 1317 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1341, + "endColumn": 108, + "endOffset": 1445 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1322, + "endColumn": 103, + "endOffset": 1421 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1450, + "endColumn": 103, + "endOffset": 1549 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1426, + "endColumn": 96, + "endOffset": 1518 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1554, + "endColumn": 96, + "endOffset": 1646 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1523, + "endColumn": 107, + "endOffset": 1626 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1651, + "endColumn": 107, + "endOffset": 1754 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1631, + "endColumn": 100, + "endOffset": 1727 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1759, + "endColumn": 100, + "endOffset": 1855 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1732, + "endColumn": 102, + "endOffset": 1830 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1860, + "endColumn": 102, + "endOffset": 1958 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1835, + "endColumn": 121, + "endOffset": 1952 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1963, + "endColumn": 121, + "endOffset": 2080 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1957, + "endColumn": 96, + "endOffset": 2049 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2085, + "endColumn": 96, + "endOffset": 2177 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2054, + "endColumn": 284, + "endOffset": 2334 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3527, + "endColumn": 288, + "endOffset": 3811 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2339, + "endColumn": 134, + "endOffset": 2469 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1313, + "endColumn": 134, + "endOffset": 1443 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2474, + "endColumn": 188, + "endOffset": 2658 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1120, + "endColumn": 192, + "endOffset": 1308 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2663, + "endColumn": 133, + "endOffset": 2792 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 986, + "endColumn": 133, + "endOffset": 1115 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2797, + "endColumn": 128, + "endOffset": 2921 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 857, + "endColumn": 128, + "endOffset": 981 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2926, + "endColumn": 207, + "endOffset": 3129 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 433, + "endColumn": 211, + "endOffset": 640 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3134, + "endColumn": 207, + "endOffset": 3337 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 645, + "endColumn": 211, + "endOffset": 852 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3342, + "endColumn": 127, + "endOffset": 3465 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 305, + "endColumn": 127, + "endOffset": 428 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3470, + "endColumn": 185, + "endOffset": 3651 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2733, + "endColumn": 185, + "endOffset": 2914 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3656, + "endColumn": 121, + "endOffset": 3773 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2611, + "endColumn": 121, + "endOffset": 2728 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3778, + "endColumn": 172, + "endOffset": 3946 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2438, + "endColumn": 172, + "endOffset": 2606 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3951, + "endColumn": 121, + "endOffset": 4068 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2316, + "endColumn": 121, + "endOffset": 2433 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4073, + "endColumn": 134, + "endOffset": 4203 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 134, + "endOffset": 300 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4208, + "endColumn": 162, + "endOffset": 4366 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4247, + "endColumn": 162, + "endOffset": 4405 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4371, + "endColumn": 133, + "endOffset": 4500 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4113, + "endColumn": 133, + "endOffset": 4242 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4505, + "endColumn": 170, + "endOffset": 4671 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3942, + "endColumn": 170, + "endOffset": 4108 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4676, + "endColumn": 125, + "endOffset": 4797 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3816, + "endColumn": 125, + "endOffset": 3937 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4802, + "endColumn": 255, + "endOffset": 5053 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-mn-rMN\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 259, + "endOffset": 425 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5058, + "endColumn": 279, + "endOffset": 5333 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3044, + "endColumn": 283, + "endOffset": 3323 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5338, + "endColumn": 124, + "endOffset": 5458 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2919, + "endColumn": 124, + "endOffset": 3039 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5463, + "endColumn": 108, + "endOffset": 5567 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3328, + "endColumn": 108, + "endOffset": 3432 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5572, + "endColumn": 191, + "endOffset": 5759 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1579, + "endColumn": 195, + "endOffset": 1770 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5764, + "endColumn": 130, + "endOffset": 5890 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1448, + "endColumn": 130, + "endOffset": 1574 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5895, + "endColumn": 199, + "endOffset": 6090 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2112, + "endColumn": 203, + "endOffset": 2311 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6095, + "endColumn": 138, + "endOffset": 6229 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1973, + "endColumn": 138, + "endOffset": 2107 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6234, + "endColumn": 197, + "endOffset": 6427 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1775, + "endColumn": 197, + "endOffset": 1968 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6432, + "endColumn": 89, + "endOffset": 6517 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3437, + "endColumn": 89, + "endOffset": 3522 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6522, + "endColumn": 91, + "endOffset": 6609 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4410, + "endColumn": 91, + "endOffset": 4497 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6614, + "endColumn": 106, + "endOffset": 6716 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mn-rMN\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4502, + "endColumn": 106, + "endOffset": 4604 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6721, + "endColumn": 109, + "endOffset": 6826 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 109, + "endOffset": 387 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6831, + "endColumn": 118, + "endOffset": 6945 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 118, + "endOffset": 506 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6950, + "endColumn": 106, + "endOffset": 7052 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 511, + "endColumn": 106, + "endOffset": 613 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7057, + "endColumn": 100, + "endOffset": 7153 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 618, + "endColumn": 100, + "endOffset": 714 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7158, + "endColumn": 124, + "endOffset": 7278 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 719, + "endColumn": 124, + "endOffset": 839 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7283, + "endColumn": 101, + "endOffset": 7380 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 844, + "endColumn": 101, + "endOffset": 941 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7385, + "endColumn": 98, + "endOffset": 7479 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 946, + "endColumn": 98, + "endOffset": 1040 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7484, + "endColumn": 120, + "endOffset": 7600 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1045, + "endColumn": 120, + "endOffset": 1161 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7605, + "endColumn": 110, + "endOffset": 7711 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1166, + "endColumn": 110, + "endOffset": 1272 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7716, + "endColumn": 85, + "endOffset": 7797 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1277, + "endColumn": 85, + "endOffset": 1358 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7802, + "endColumn": 98, + "endOffset": 7896 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1363, + "endColumn": 98, + "endOffset": 1457 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7901, + "endColumn": 106, + "endOffset": 8003 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-mn-rMN\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 324, + "endColumn": 106, + "endOffset": 426 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8008, + "endColumn": 93, + "endOffset": 8097 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-mn-rMN\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 93, + "endOffset": 319 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8102, + "endColumn": 100, + "endOffset": 8198 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mn-rMN\\values-mn-rMN.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2182, + "endColumn": 100, + "endOffset": 2278 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-mr-rIN.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-mr-rIN.json new file mode 100644 index 0000000..c350a16 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-mr-rIN.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-mr-rIN\\values-mr-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 117, + "endOffset": 218 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 117, + "endOffset": 346 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 223, + "endColumn": 107, + "endOffset": 326 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 351, + "endColumn": 107, + "endOffset": 454 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 331, + "endColumn": 122, + "endOffset": 449 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 459, + "endColumn": 122, + "endOffset": 577 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 454, + "endColumn": 105, + "endOffset": 555 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 582, + "endColumn": 105, + "endOffset": 683 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 560, + "endColumn": 106, + "endOffset": 662 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 106, + "endOffset": 790 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 667, + "endColumn": 89, + "endOffset": 752 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 89, + "endOffset": 880 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 757, + "endColumn": 100, + "endOffset": 853 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 885, + "endColumn": 100, + "endOffset": 981 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 858, + "endColumn": 114, + "endOffset": 968 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 986, + "endColumn": 114, + "endOffset": 1096 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 973, + "endColumn": 76, + "endOffset": 1045 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1101, + "endColumn": 76, + "endOffset": 1173 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 77, + "endOffset": 1123 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1178, + "endColumn": 77, + "endOffset": 1251 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1128, + "endColumn": 79, + "endOffset": 1203 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1256, + "endColumn": 79, + "endOffset": 1331 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1208, + "endColumn": 111, + "endOffset": 1315 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1336, + "endColumn": 111, + "endOffset": 1443 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1320, + "endColumn": 101, + "endOffset": 1417 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1448, + "endColumn": 101, + "endOffset": 1545 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1422, + "endColumn": 95, + "endOffset": 1513 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1550, + "endColumn": 95, + "endOffset": 1641 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1518, + "endColumn": 108, + "endOffset": 1622 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1646, + "endColumn": 108, + "endOffset": 1750 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1627, + "endColumn": 100, + "endOffset": 1723 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1755, + "endColumn": 100, + "endOffset": 1851 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1728, + "endColumn": 114, + "endOffset": 1838 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1856, + "endColumn": 114, + "endOffset": 1966 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1843, + "endColumn": 122, + "endOffset": 1961 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1971, + "endColumn": 122, + "endOffset": 2089 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1966, + "endColumn": 104, + "endOffset": 2066 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2094, + "endColumn": 104, + "endOffset": 2194 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2071, + "endColumn": 258, + "endOffset": 2325 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3432, + "endColumn": 262, + "endOffset": 3690 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2330, + "endColumn": 126, + "endOffset": 2452 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1295, + "endColumn": 126, + "endOffset": 1417 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2457, + "endColumn": 195, + "endOffset": 2648 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1095, + "endColumn": 199, + "endOffset": 1290 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2653, + "endColumn": 125, + "endOffset": 2774 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 969, + "endColumn": 125, + "endOffset": 1090 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2779, + "endColumn": 123, + "endOffset": 2898 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 845, + "endColumn": 123, + "endOffset": 964 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2903, + "endColumn": 204, + "endOffset": 3103 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 423, + "endColumn": 208, + "endOffset": 627 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3108, + "endColumn": 208, + "endOffset": 3312 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 632, + "endColumn": 212, + "endOffset": 840 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3317, + "endColumn": 122, + "endOffset": 3435 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 300, + "endColumn": 122, + "endOffset": 418 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3440, + "endColumn": 186, + "endOffset": 3622 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2671, + "endColumn": 186, + "endOffset": 2853 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3627, + "endColumn": 114, + "endOffset": 3737 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2556, + "endColumn": 114, + "endOffset": 2666 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3742, + "endColumn": 167, + "endOffset": 3905 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2388, + "endColumn": 167, + "endOffset": 2551 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3910, + "endColumn": 120, + "endOffset": 4026 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2267, + "endColumn": 120, + "endOffset": 2383 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4031, + "endColumn": 129, + "endOffset": 4156 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 129, + "endOffset": 295 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4161, + "endColumn": 172, + "endOffset": 4329 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4121, + "endColumn": 172, + "endOffset": 4289 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4334, + "endColumn": 130, + "endOffset": 4460 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3990, + "endColumn": 130, + "endOffset": 4116 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4465, + "endColumn": 171, + "endOffset": 4632 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3818, + "endColumn": 171, + "endOffset": 3985 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4637, + "endColumn": 122, + "endOffset": 4755 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3695, + "endColumn": 122, + "endOffset": 3813 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4760, + "endColumn": 236, + "endOffset": 4992 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-mr-rIN\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 240, + "endOffset": 406 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4997, + "endColumn": 247, + "endOffset": 5240 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2978, + "endColumn": 251, + "endOffset": 3225 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5245, + "endColumn": 119, + "endOffset": 5360 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2858, + "endColumn": 119, + "endOffset": 2973 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5365, + "endColumn": 112, + "endOffset": 5473 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3230, + "endColumn": 112, + "endOffset": 3338 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5478, + "endColumn": 184, + "endOffset": 5658 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1551, + "endColumn": 188, + "endOffset": 1735 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5663, + "endColumn": 128, + "endOffset": 5787 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1422, + "endColumn": 128, + "endOffset": 1546 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5792, + "endColumn": 200, + "endOffset": 5988 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2062, + "endColumn": 204, + "endOffset": 2262 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5993, + "endColumn": 135, + "endOffset": 6124 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1926, + "endColumn": 135, + "endOffset": 2057 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6129, + "endColumn": 185, + "endOffset": 6310 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1740, + "endColumn": 185, + "endOffset": 1921 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6315, + "endColumn": 88, + "endOffset": 6399 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3343, + "endColumn": 88, + "endOffset": 3427 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6404, + "endColumn": 95, + "endOffset": 6495 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4294, + "endColumn": 95, + "endOffset": 4385 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6500, + "endColumn": 110, + "endOffset": 6606 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-mr-rIN\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4390, + "endColumn": 110, + "endOffset": 4496 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6611, + "endColumn": 110, + "endOffset": 6717 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 110, + "endOffset": 388 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6722, + "endColumn": 112, + "endOffset": 6830 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 112, + "endOffset": 501 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6835, + "endColumn": 108, + "endOffset": 6939 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 506, + "endColumn": 108, + "endOffset": 610 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6944, + "endColumn": 109, + "endOffset": 7049 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 109, + "endOffset": 720 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7054, + "endColumn": 128, + "endOffset": 7178 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 725, + "endColumn": 128, + "endOffset": 849 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7183, + "endColumn": 100, + "endOffset": 7279 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 854, + "endColumn": 100, + "endOffset": 950 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7284, + "endColumn": 97, + "endOffset": 7377 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 955, + "endColumn": 97, + "endOffset": 1048 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7382, + "endColumn": 118, + "endOffset": 7496 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1053, + "endColumn": 118, + "endOffset": 1167 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7501, + "endColumn": 106, + "endOffset": 7603 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1172, + "endColumn": 106, + "endOffset": 1274 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7608, + "endColumn": 85, + "endOffset": 7689 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1279, + "endColumn": 85, + "endOffset": 1360 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7694, + "endColumn": 96, + "endOffset": 7786 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1365, + "endColumn": 96, + "endOffset": 1457 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7791, + "endColumn": 101, + "endOffset": 7888 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-mr-rIN\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 323, + "endColumn": 101, + "endOffset": 420 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7893, + "endColumn": 92, + "endOffset": 7981 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-mr-rIN\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 92, + "endOffset": 318 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 7986, + "endColumn": 100, + "endOffset": 8082 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-mr-rIN\\values-mr-rIN.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2199, + "endColumn": 100, + "endOffset": 2295 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-ms-rMY.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-ms-rMY.json new file mode 100644 index 0000000..28189dc --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-ms-rMY.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-ms-rMY\\values-ms-rMY.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 110, + "endOffset": 211 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 110, + "endOffset": 339 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 216, + "endColumn": 107, + "endOffset": 319 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 344, + "endColumn": 107, + "endOffset": 447 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 324, + "endColumn": 122, + "endOffset": 442 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 452, + "endColumn": 122, + "endOffset": 570 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 447, + "endColumn": 104, + "endOffset": 547 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 575, + "endColumn": 104, + "endOffset": 675 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 552, + "endColumn": 107, + "endOffset": 655 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 680, + "endColumn": 107, + "endOffset": 783 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 660, + "endColumn": 86, + "endOffset": 742 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 86, + "endOffset": 870 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 747, + "endColumn": 103, + "endOffset": 846 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 875, + "endColumn": 103, + "endOffset": 974 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 851, + "endColumn": 110, + "endOffset": 957 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 979, + "endColumn": 110, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 962, + "endColumn": 77, + "endOffset": 1035 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 77, + "endOffset": 1163 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1040, + "endColumn": 78, + "endOffset": 1114 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1168, + "endColumn": 78, + "endOffset": 1242 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1119, + "endColumn": 79, + "endOffset": 1194 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1247, + "endColumn": 79, + "endOffset": 1322 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1199, + "endColumn": 111, + "endOffset": 1306 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1327, + "endColumn": 111, + "endOffset": 1434 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1311, + "endColumn": 108, + "endOffset": 1415 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1439, + "endColumn": 108, + "endOffset": 1543 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1420, + "endColumn": 96, + "endOffset": 1512 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1548, + "endColumn": 96, + "endOffset": 1640 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1517, + "endColumn": 108, + "endOffset": 1621 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1645, + "endColumn": 108, + "endOffset": 1749 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1626, + "endColumn": 102, + "endOffset": 1724 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1754, + "endColumn": 102, + "endOffset": 1852 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1729, + "endColumn": 106, + "endOffset": 1831 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1857, + "endColumn": 106, + "endOffset": 1959 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1836, + "endColumn": 121, + "endOffset": 1953 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1964, + "endColumn": 121, + "endOffset": 2081 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1958, + "endColumn": 100, + "endOffset": 2054 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2086, + "endColumn": 100, + "endOffset": 2182 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2059, + "endColumn": 280, + "endOffset": 2335 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3673, + "endColumn": 284, + "endOffset": 3953 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2340, + "endColumn": 132, + "endOffset": 2468 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1399, + "endColumn": 132, + "endOffset": 1527 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2473, + "endColumn": 204, + "endOffset": 2673 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1190, + "endColumn": 208, + "endOffset": 1394 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2678, + "endColumn": 131, + "endOffset": 2805 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1058, + "endColumn": 131, + "endOffset": 1185 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2810, + "endColumn": 134, + "endOffset": 2940 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 923, + "endColumn": 134, + "endOffset": 1053 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2945, + "endColumn": 236, + "endOffset": 3177 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 441, + "endColumn": 240, + "endOffset": 677 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3182, + "endColumn": 236, + "endOffset": 3414 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 682, + "endColumn": 240, + "endOffset": 918 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3419, + "endColumn": 133, + "endOffset": 3548 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 307, + "endColumn": 133, + "endOffset": 436 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3553, + "endColumn": 186, + "endOffset": 3735 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2884, + "endColumn": 186, + "endOffset": 3066 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3740, + "endColumn": 120, + "endOffset": 3856 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2763, + "endColumn": 120, + "endOffset": 2879 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3861, + "endColumn": 176, + "endOffset": 4033 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2586, + "endColumn": 176, + "endOffset": 2758 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4038, + "endColumn": 121, + "endOffset": 4155 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2464, + "endColumn": 121, + "endOffset": 2581 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4160, + "endColumn": 136, + "endOffset": 4292 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 136, + "endOffset": 302 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4297, + "endColumn": 161, + "endOffset": 4454 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4375, + "endColumn": 161, + "endOffset": 4532 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4459, + "endColumn": 124, + "endOffset": 4579 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4250, + "endColumn": 124, + "endOffset": 4370 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4584, + "endColumn": 168, + "endOffset": 4748 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4081, + "endColumn": 168, + "endOffset": 4245 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4753, + "endColumn": 122, + "endOffset": 4871 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3958, + "endColumn": 122, + "endOffset": 4076 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4876, + "endColumn": 260, + "endOffset": 5132 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-ms-rMY\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 264, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5137, + "endColumn": 262, + "endOffset": 5395 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3199, + "endColumn": 266, + "endOffset": 3461 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5400, + "endColumn": 127, + "endOffset": 5523 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 3071, + "endColumn": 127, + "endOffset": 3194 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5528, + "endColumn": 110, + "endOffset": 5634 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3466, + "endColumn": 110, + "endOffset": 3572 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5639, + "endColumn": 209, + "endOffset": 5844 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1669, + "endColumn": 213, + "endOffset": 1878 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5849, + "endColumn": 136, + "endOffset": 5981 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1532, + "endColumn": 136, + "endOffset": 1664 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5986, + "endColumn": 229, + "endOffset": 6211 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2230, + "endColumn": 233, + "endOffset": 2459 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6216, + "endColumn": 141, + "endOffset": 6353 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2088, + "endColumn": 141, + "endOffset": 2225 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6358, + "endColumn": 204, + "endOffset": 6558 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1883, + "endColumn": 204, + "endOffset": 2083 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6563, + "endColumn": 95, + "endOffset": 6654 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3577, + "endColumn": 95, + "endOffset": 3668 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6659, + "endColumn": 93, + "endOffset": 6748 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4537, + "endColumn": 93, + "endOffset": 4626 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6753, + "endColumn": 112, + "endOffset": 6861 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ms-rMY\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4631, + "endColumn": 112, + "endOffset": 4739 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6866, + "endColumn": 115, + "endOffset": 6977 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 115, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6982, + "endColumn": 109, + "endOffset": 7087 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 109, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7092, + "endColumn": 109, + "endOffset": 7197 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 109, + "endOffset": 613 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7202, + "endColumn": 112, + "endOffset": 7310 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 618, + "endColumn": 112, + "endOffset": 726 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7315, + "endColumn": 125, + "endOffset": 7436 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 731, + "endColumn": 125, + "endOffset": 852 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7441, + "endColumn": 94, + "endOffset": 7531 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 857, + "endColumn": 94, + "endOffset": 947 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7536, + "endColumn": 93, + "endOffset": 7625 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 952, + "endColumn": 93, + "endOffset": 1041 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7630, + "endColumn": 118, + "endOffset": 7744 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 118, + "endOffset": 1160 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7749, + "endColumn": 108, + "endOffset": 7853 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1165, + "endColumn": 108, + "endOffset": 1269 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7858, + "endColumn": 85, + "endOffset": 7939 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1274, + "endColumn": 85, + "endOffset": 1355 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7944, + "endColumn": 93, + "endOffset": 8033 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1360, + "endColumn": 93, + "endOffset": 1449 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8038, + "endColumn": 106, + "endOffset": 8140 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ms-rMY\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 324, + "endColumn": 106, + "endOffset": 426 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8145, + "endColumn": 93, + "endOffset": 8234 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ms-rMY\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 93, + "endOffset": 319 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8239, + "endColumn": 100, + "endOffset": 8335 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ms-rMY\\values-ms-rMY.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2187, + "endColumn": 100, + "endOffset": 2283 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8340, + "endColumn": 107, + "endOffset": 8443 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-ms-rMY\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 107, + "endOffset": 333 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-my-rMM.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-my-rMM.json new file mode 100644 index 0000000..9410dc4 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-my-rMM.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-my-rMM\\values-my-rMM.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 108, + "endOffset": 209 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 108, + "endOffset": 337 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 214, + "endColumn": 107, + "endOffset": 317 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 342, + "endColumn": 107, + "endOffset": 445 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 322, + "endColumn": 124, + "endOffset": 442 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 450, + "endColumn": 124, + "endOffset": 570 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 447, + "endColumn": 104, + "endOffset": 547 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 575, + "endColumn": 104, + "endOffset": 675 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 552, + "endColumn": 116, + "endOffset": 664 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 680, + "endColumn": 116, + "endOffset": 792 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 669, + "endColumn": 92, + "endOffset": 757 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 92, + "endOffset": 885 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 762, + "endColumn": 111, + "endOffset": 869 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 890, + "endColumn": 111, + "endOffset": 997 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 874, + "endColumn": 135, + "endOffset": 1005 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1002, + "endColumn": 135, + "endOffset": 1133 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 77, + "endOffset": 1083 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1138, + "endColumn": 77, + "endOffset": 1211 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1088, + "endColumn": 78, + "endOffset": 1162 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1216, + "endColumn": 78, + "endOffset": 1290 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1167, + "endColumn": 85, + "endOffset": 1248 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1295, + "endColumn": 85, + "endOffset": 1376 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1253, + "endColumn": 124, + "endOffset": 1373 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1381, + "endColumn": 124, + "endOffset": 1501 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1378, + "endColumn": 111, + "endOffset": 1485 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1506, + "endColumn": 111, + "endOffset": 1613 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1490, + "endColumn": 101, + "endOffset": 1587 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1618, + "endColumn": 101, + "endOffset": 1715 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1592, + "endColumn": 125, + "endOffset": 1713 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1720, + "endColumn": 125, + "endOffset": 1841 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1718, + "endColumn": 110, + "endOffset": 1824 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1846, + "endColumn": 110, + "endOffset": 1952 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1829, + "endColumn": 109, + "endOffset": 1934 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1957, + "endColumn": 109, + "endOffset": 2062 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1939, + "endColumn": 122, + "endOffset": 2057 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2067, + "endColumn": 122, + "endOffset": 2185 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2062, + "endColumn": 99, + "endOffset": 2157 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2190, + "endColumn": 99, + "endOffset": 2285 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2162, + "endColumn": 277, + "endOffset": 2435 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3638, + "endColumn": 281, + "endOffset": 3915 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2440, + "endColumn": 135, + "endOffset": 2571 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1354, + "endColumn": 135, + "endOffset": 1485 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2576, + "endColumn": 195, + "endOffset": 2767 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1154, + "endColumn": 199, + "endOffset": 1349 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2772, + "endColumn": 135, + "endOffset": 2903 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1018, + "endColumn": 135, + "endOffset": 1149 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2908, + "endColumn": 137, + "endOffset": 3041 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 880, + "endColumn": 137, + "endOffset": 1013 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3046, + "endColumn": 209, + "endOffset": 3251 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 449, + "endColumn": 213, + "endOffset": 658 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3256, + "endColumn": 212, + "endOffset": 3464 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 663, + "endColumn": 216, + "endOffset": 875 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3469, + "endColumn": 133, + "endOffset": 3598 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 315, + "endColumn": 133, + "endOffset": 444 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3603, + "endColumn": 178, + "endOffset": 3777 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2859, + "endColumn": 178, + "endOffset": 3033 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3782, + "endColumn": 124, + "endOffset": 3902 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2734, + "endColumn": 124, + "endOffset": 2854 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3907, + "endColumn": 174, + "endOffset": 4077 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2559, + "endColumn": 174, + "endOffset": 2729 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4082, + "endColumn": 129, + "endOffset": 4207 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2429, + "endColumn": 129, + "endOffset": 2554 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4212, + "endColumn": 144, + "endOffset": 4352 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 144, + "endOffset": 310 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4357, + "endColumn": 178, + "endOffset": 4531 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4388, + "endColumn": 178, + "endOffset": 4562 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4536, + "endColumn": 147, + "endOffset": 4679 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4240, + "endColumn": 147, + "endOffset": 4383 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4684, + "endColumn": 185, + "endOffset": 4865 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4054, + "endColumn": 185, + "endOffset": 4235 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4870, + "endColumn": 133, + "endOffset": 4999 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3920, + "endColumn": 133, + "endOffset": 4049 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 5004, + "endColumn": 251, + "endOffset": 5251 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-my-rMM\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 255, + "endOffset": 421 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5256, + "endColumn": 257, + "endOffset": 5509 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3169, + "endColumn": 261, + "endOffset": 3426 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5514, + "endColumn": 130, + "endOffset": 5640 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 3038, + "endColumn": 130, + "endOffset": 3164 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5645, + "endColumn": 107, + "endOffset": 5748 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3431, + "endColumn": 107, + "endOffset": 3534 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5753, + "endColumn": 202, + "endOffset": 5951 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1635, + "endColumn": 206, + "endOffset": 1837 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5956, + "endColumn": 144, + "endOffset": 6096 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1490, + "endColumn": 144, + "endOffset": 1630 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6101, + "endColumn": 216, + "endOffset": 6313 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2208, + "endColumn": 220, + "endOffset": 2424 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6318, + "endColumn": 148, + "endOffset": 6462 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2059, + "endColumn": 148, + "endOffset": 2203 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6467, + "endColumn": 216, + "endOffset": 6679 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1842, + "endColumn": 216, + "endOffset": 2054 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6684, + "endColumn": 98, + "endOffset": 6778 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3539, + "endColumn": 98, + "endOffset": 3633 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6783, + "endColumn": 102, + "endOffset": 6881 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4567, + "endColumn": 102, + "endOffset": 4665 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6886, + "endColumn": 118, + "endOffset": 7000 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-my-rMM\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4670, + "endColumn": 118, + "endOffset": 4784 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 7005, + "endColumn": 115, + "endOffset": 7116 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 115, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 7121, + "endColumn": 122, + "endOffset": 7239 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 122, + "endOffset": 516 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7244, + "endColumn": 109, + "endOffset": 7349 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 521, + "endColumn": 109, + "endOffset": 626 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7354, + "endColumn": 117, + "endOffset": 7467 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 631, + "endColumn": 117, + "endOffset": 744 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7472, + "endColumn": 124, + "endOffset": 7592 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 749, + "endColumn": 124, + "endOffset": 869 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7597, + "endColumn": 98, + "endOffset": 7691 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 874, + "endColumn": 98, + "endOffset": 968 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7696, + "endColumn": 97, + "endOffset": 7789 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 973, + "endColumn": 97, + "endOffset": 1066 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7794, + "endColumn": 129, + "endOffset": 7919 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1071, + "endColumn": 129, + "endOffset": 1196 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7924, + "endColumn": 109, + "endOffset": 8029 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1201, + "endColumn": 109, + "endOffset": 1306 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 8034, + "endColumn": 83, + "endOffset": 8113 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1311, + "endColumn": 83, + "endOffset": 1390 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 8118, + "endColumn": 100, + "endOffset": 8214 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1395, + "endColumn": 100, + "endOffset": 1491 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8219, + "endColumn": 110, + "endOffset": 8325 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-my-rMM\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 110, + "endOffset": 435 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8330, + "endColumn": 98, + "endOffset": 8424 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-my-rMM\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 98, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8429, + "endColumn": 100, + "endOffset": 8525 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-my-rMM\\values-my-rMM.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2290, + "endColumn": 100, + "endOffset": 2386 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-nb.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-nb.json new file mode 100644 index 0000000..40d97b8 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-nb.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-nb\\values-nb.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 107, + "endOffset": 208 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 107, + "endOffset": 332 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 213, + "endColumn": 108, + "endOffset": 317 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 337, + "endColumn": 108, + "endOffset": 441 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 322, + "endColumn": 124, + "endOffset": 442 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 446, + "endColumn": 124, + "endOffset": 566 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 447, + "endColumn": 94, + "endOffset": 537 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 571, + "endColumn": 94, + "endOffset": 661 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 542, + "endColumn": 113, + "endOffset": 651 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 666, + "endColumn": 113, + "endOffset": 775 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 656, + "endColumn": 85, + "endOffset": 737 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 780, + "endColumn": 85, + "endOffset": 861 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 742, + "endColumn": 99, + "endOffset": 837 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 866, + "endColumn": 99, + "endOffset": 961 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 842, + "endColumn": 112, + "endOffset": 950 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 966, + "endColumn": 112, + "endOffset": 1074 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 955, + "endColumn": 75, + "endOffset": 1026 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1079, + "endColumn": 75, + "endOffset": 1150 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1031, + "endColumn": 75, + "endOffset": 1102 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1155, + "endColumn": 75, + "endOffset": 1226 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1107, + "endColumn": 79, + "endOffset": 1182 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1231, + "endColumn": 79, + "endOffset": 1306 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1187, + "endColumn": 102, + "endOffset": 1285 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1311, + "endColumn": 102, + "endOffset": 1409 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1290, + "endColumn": 98, + "endOffset": 1384 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1414, + "endColumn": 98, + "endOffset": 1508 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1389, + "endColumn": 95, + "endOffset": 1480 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1513, + "endColumn": 95, + "endOffset": 1604 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1485, + "endColumn": 103, + "endOffset": 1584 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1609, + "endColumn": 103, + "endOffset": 1708 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1589, + "endColumn": 97, + "endOffset": 1682 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1713, + "endColumn": 97, + "endOffset": 1806 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1687, + "endColumn": 100, + "endOffset": 1783 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1811, + "endColumn": 100, + "endOffset": 1907 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1788, + "endColumn": 115, + "endOffset": 1899 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1912, + "endColumn": 115, + "endOffset": 2023 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1904, + "endColumn": 96, + "endOffset": 1996 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2028, + "endColumn": 96, + "endOffset": 2120 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2001, + "endColumn": 268, + "endOffset": 2265 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3519, + "endColumn": 272, + "endOffset": 3787 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2270, + "endColumn": 128, + "endOffset": 2394 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1351, + "endColumn": 128, + "endOffset": 1475 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2399, + "endColumn": 190, + "endOffset": 2585 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 194, + "endOffset": 1346 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2590, + "endColumn": 127, + "endOffset": 2713 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1028, + "endColumn": 127, + "endOffset": 1151 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2718, + "endColumn": 132, + "endOffset": 2846 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 895, + "endColumn": 132, + "endOffset": 1023 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2851, + "endColumn": 222, + "endOffset": 3069 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 437, + "endColumn": 226, + "endOffset": 659 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3074, + "endColumn": 226, + "endOffset": 3296 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 664, + "endColumn": 230, + "endOffset": 890 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3301, + "endColumn": 131, + "endOffset": 3428 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 305, + "endColumn": 131, + "endOffset": 432 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3433, + "endColumn": 171, + "endOffset": 3600 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2762, + "endColumn": 171, + "endOffset": 2929 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3605, + "endColumn": 118, + "endOffset": 3719 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2643, + "endColumn": 118, + "endOffset": 2757 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3724, + "endColumn": 171, + "endOffset": 3891 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2471, + "endColumn": 171, + "endOffset": 2638 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3896, + "endColumn": 119, + "endOffset": 4011 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2351, + "endColumn": 119, + "endOffset": 2466 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4016, + "endColumn": 134, + "endOffset": 4146 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 134, + "endOffset": 300 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4151, + "endColumn": 169, + "endOffset": 4316 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4230, + "endColumn": 169, + "endOffset": 4395 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4321, + "endColumn": 127, + "endOffset": 4444 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4102, + "endColumn": 127, + "endOffset": 4225 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4449, + "endColumn": 182, + "endOffset": 4627 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3919, + "endColumn": 182, + "endOffset": 4097 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4632, + "endColumn": 126, + "endOffset": 4754 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3792, + "endColumn": 126, + "endOffset": 3914 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4759, + "endColumn": 248, + "endOffset": 5003 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-nb\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 252, + "endOffset": 418 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5008, + "endColumn": 250, + "endOffset": 5254 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3059, + "endColumn": 254, + "endOffset": 3309 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5259, + "endColumn": 124, + "endOffset": 5379 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2934, + "endColumn": 124, + "endOffset": 3054 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5384, + "endColumn": 108, + "endOffset": 5488 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3314, + "endColumn": 108, + "endOffset": 3418 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5493, + "endColumn": 191, + "endOffset": 5680 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1610, + "endColumn": 195, + "endOffset": 1801 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5685, + "endColumn": 129, + "endOffset": 5810 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1480, + "endColumn": 129, + "endOffset": 1605 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5815, + "endColumn": 200, + "endOffset": 6011 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2146, + "endColumn": 204, + "endOffset": 2346 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6016, + "endColumn": 133, + "endOffset": 6145 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2012, + "endColumn": 133, + "endOffset": 2141 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6150, + "endColumn": 205, + "endOffset": 6351 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1806, + "endColumn": 205, + "endOffset": 2007 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6356, + "endColumn": 95, + "endOffset": 6447 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3423, + "endColumn": 95, + "endOffset": 3514 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6452, + "endColumn": 91, + "endOffset": 6539 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4400, + "endColumn": 91, + "endOffset": 4487 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6544, + "endColumn": 107, + "endOffset": 6647 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nb\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4492, + "endColumn": 107, + "endOffset": 4595 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6652, + "endColumn": 104, + "endOffset": 6752 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 104, + "endOffset": 378 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6757, + "endColumn": 112, + "endOffset": 6865 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 383, + "endColumn": 112, + "endOffset": 491 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6870, + "endColumn": 104, + "endOffset": 6970 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 496, + "endColumn": 104, + "endOffset": 596 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6975, + "endColumn": 103, + "endOffset": 7074 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 601, + "endColumn": 103, + "endOffset": 700 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7079, + "endColumn": 135, + "endOffset": 7210 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 705, + "endColumn": 135, + "endOffset": 836 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7215, + "endColumn": 103, + "endOffset": 7314 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 841, + "endColumn": 103, + "endOffset": 940 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7319, + "endColumn": 97, + "endOffset": 7412 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 97, + "endOffset": 1038 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7417, + "endColumn": 121, + "endOffset": 7534 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1043, + "endColumn": 121, + "endOffset": 1160 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7539, + "endColumn": 104, + "endOffset": 7639 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1165, + "endColumn": 104, + "endOffset": 1265 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7644, + "endColumn": 85, + "endOffset": 7725 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1270, + "endColumn": 85, + "endOffset": 1351 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7730, + "endColumn": 93, + "endOffset": 7819 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 93, + "endOffset": 1445 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7824, + "endColumn": 101, + "endOffset": 7921 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-nb\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 323, + "endColumn": 101, + "endOffset": 420 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7926, + "endColumn": 92, + "endOffset": 8014 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-nb\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 92, + "endOffset": 318 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8019, + "endColumn": 100, + "endOffset": 8115 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nb\\values-nb.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2125, + "endColumn": 100, + "endOffset": 2221 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8120, + "endColumn": 104, + "endOffset": 8220 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-nb\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 104, + "endOffset": 330 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-ne-rNP.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-ne-rNP.json new file mode 100644 index 0000000..99b1b1d --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-ne-rNP.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-ne-rNP\\values-ne-rNP.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 104, + "endOffset": 205 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 104, + "endOffset": 333 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 210, + "endColumn": 107, + "endOffset": 313 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 338, + "endColumn": 107, + "endOffset": 441 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 318, + "endColumn": 122, + "endOffset": 436 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 446, + "endColumn": 122, + "endOffset": 564 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 441, + "endColumn": 103, + "endOffset": 540 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 569, + "endColumn": 103, + "endOffset": 668 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 545, + "endColumn": 107, + "endOffset": 648 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 673, + "endColumn": 107, + "endOffset": 776 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 653, + "endColumn": 90, + "endOffset": 739 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 781, + "endColumn": 90, + "endOffset": 867 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 744, + "endColumn": 106, + "endOffset": 846 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 872, + "endColumn": 106, + "endOffset": 974 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 851, + "endColumn": 126, + "endOffset": 973 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 979, + "endColumn": 126, + "endOffset": 1101 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 978, + "endColumn": 93, + "endOffset": 1067 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1106, + "endColumn": 93, + "endOffset": 1195 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1072, + "endColumn": 89, + "endOffset": 1157 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1200, + "endColumn": 89, + "endOffset": 1285 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1162, + "endColumn": 87, + "endOffset": 1245 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1290, + "endColumn": 87, + "endOffset": 1373 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1250, + "endColumn": 109, + "endOffset": 1355 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1378, + "endColumn": 109, + "endOffset": 1483 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1360, + "endColumn": 115, + "endOffset": 1471 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1488, + "endColumn": 115, + "endOffset": 1599 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1476, + "endColumn": 102, + "endOffset": 1574 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1604, + "endColumn": 102, + "endOffset": 1702 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1579, + "endColumn": 114, + "endOffset": 1689 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1707, + "endColumn": 114, + "endOffset": 1817 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1694, + "endColumn": 101, + "endOffset": 1791 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1822, + "endColumn": 101, + "endOffset": 1919 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1796, + "endColumn": 114, + "endOffset": 1906 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1924, + "endColumn": 114, + "endOffset": 2034 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1911, + "endColumn": 130, + "endOffset": 2037 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2039, + "endColumn": 130, + "endOffset": 2165 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2042, + "endColumn": 111, + "endOffset": 2149 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2170, + "endColumn": 111, + "endOffset": 2277 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2154, + "endColumn": 260, + "endOffset": 2410 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3513, + "endColumn": 264, + "endOffset": 3773 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2415, + "endColumn": 136, + "endOffset": 2547 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1335, + "endColumn": 136, + "endOffset": 1467 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2552, + "endColumn": 189, + "endOffset": 2737 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1141, + "endColumn": 193, + "endOffset": 1330 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2742, + "endColumn": 135, + "endOffset": 2873 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1005, + "endColumn": 135, + "endOffset": 1136 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2878, + "endColumn": 138, + "endOffset": 3012 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 866, + "endColumn": 138, + "endOffset": 1000 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3017, + "endColumn": 203, + "endOffset": 3216 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 443, + "endColumn": 207, + "endOffset": 646 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3221, + "endColumn": 210, + "endOffset": 3427 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 651, + "endColumn": 214, + "endOffset": 861 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3432, + "endColumn": 137, + "endOffset": 3565 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 305, + "endColumn": 137, + "endOffset": 438 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3570, + "endColumn": 177, + "endOffset": 3743 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2743, + "endColumn": 177, + "endOffset": 2916 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3748, + "endColumn": 116, + "endOffset": 3860 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2626, + "endColumn": 116, + "endOffset": 2738 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3865, + "endColumn": 157, + "endOffset": 4018 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2468, + "endColumn": 157, + "endOffset": 2621 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4023, + "endColumn": 120, + "endOffset": 4139 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2347, + "endColumn": 120, + "endOffset": 2463 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4144, + "endColumn": 134, + "endOffset": 4274 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 134, + "endOffset": 300 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4279, + "endColumn": 156, + "endOffset": 4431 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4209, + "endColumn": 156, + "endOffset": 4361 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4436, + "endColumn": 127, + "endOffset": 4559 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4081, + "endColumn": 127, + "endOffset": 4204 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4564, + "endColumn": 178, + "endOffset": 4738 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3902, + "endColumn": 178, + "endOffset": 4076 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4743, + "endColumn": 123, + "endOffset": 4862 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3778, + "endColumn": 123, + "endOffset": 3897 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4867, + "endColumn": 245, + "endOffset": 5108 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-ne-rNP\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 249, + "endOffset": 415 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5113, + "endColumn": 249, + "endOffset": 5358 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3044, + "endColumn": 253, + "endOffset": 3293 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5363, + "endColumn": 122, + "endOffset": 5481 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2921, + "endColumn": 122, + "endOffset": 3039 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5486, + "endColumn": 119, + "endOffset": 5601 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3298, + "endColumn": 119, + "endOffset": 3413 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5606, + "endColumn": 195, + "endOffset": 5797 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1611, + "endColumn": 199, + "endOffset": 1806 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5802, + "endColumn": 138, + "endOffset": 5936 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1472, + "endColumn": 138, + "endOffset": 1606 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5941, + "endColumn": 206, + "endOffset": 6143 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2136, + "endColumn": 210, + "endOffset": 2342 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6148, + "endColumn": 142, + "endOffset": 6286 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1993, + "endColumn": 142, + "endOffset": 2131 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6291, + "endColumn": 181, + "endOffset": 6468 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1811, + "endColumn": 181, + "endOffset": 1988 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6473, + "endColumn": 94, + "endOffset": 6563 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3418, + "endColumn": 94, + "endOffset": 3508 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6568, + "endColumn": 101, + "endOffset": 6665 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4366, + "endColumn": 101, + "endOffset": 4463 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6670, + "endColumn": 121, + "endOffset": 6787 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ne-rNP\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4468, + "endColumn": 121, + "endOffset": 4585 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6792, + "endColumn": 105, + "endOffset": 6893 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 105, + "endOffset": 383 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6898, + "endColumn": 121, + "endOffset": 7015 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 388, + "endColumn": 121, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7020, + "endColumn": 110, + "endOffset": 7126 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 110, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7131, + "endColumn": 112, + "endOffset": 7239 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 112, + "endOffset": 729 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7244, + "endColumn": 120, + "endOffset": 7360 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 734, + "endColumn": 120, + "endOffset": 850 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7365, + "endColumn": 100, + "endOffset": 7461 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 855, + "endColumn": 100, + "endOffset": 951 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7466, + "endColumn": 99, + "endOffset": 7561 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 956, + "endColumn": 99, + "endOffset": 1051 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7566, + "endColumn": 115, + "endOffset": 7677 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1056, + "endColumn": 115, + "endOffset": 1167 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7682, + "endColumn": 108, + "endOffset": 7786 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1172, + "endColumn": 108, + "endOffset": 1276 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7791, + "endColumn": 86, + "endOffset": 7873 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1281, + "endColumn": 86, + "endOffset": 1363 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7878, + "endColumn": 94, + "endOffset": 7968 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1368, + "endColumn": 94, + "endOffset": 1458 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7973, + "endColumn": 108, + "endOffset": 8077 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ne-rNP\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 323, + "endColumn": 108, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8082, + "endColumn": 92, + "endOffset": 8170 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ne-rNP\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 92, + "endOffset": 318 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8175, + "endColumn": 100, + "endOffset": 8271 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ne-rNP\\values-ne-rNP.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2282, + "endColumn": 100, + "endOffset": 2378 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-nl.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-nl.json new file mode 100644 index 0000000..dfccf6c --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-nl.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-nl\\values-nl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 117, + "endOffset": 218 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 117, + "endOffset": 342 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 223, + "endColumn": 107, + "endOffset": 326 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 347, + "endColumn": 107, + "endOffset": 450 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 331, + "endColumn": 122, + "endOffset": 449 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 455, + "endColumn": 122, + "endOffset": 573 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 454, + "endColumn": 104, + "endOffset": 554 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 104, + "endOffset": 678 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 559, + "endColumn": 106, + "endOffset": 661 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 683, + "endColumn": 106, + "endOffset": 785 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 666, + "endColumn": 85, + "endOffset": 747 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 790, + "endColumn": 85, + "endOffset": 871 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 752, + "endColumn": 107, + "endOffset": 855 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 876, + "endColumn": 107, + "endOffset": 979 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 860, + "endColumn": 119, + "endOffset": 975 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 984, + "endColumn": 119, + "endOffset": 1099 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 980, + "endColumn": 76, + "endOffset": 1052 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 76, + "endOffset": 1176 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1057, + "endColumn": 76, + "endOffset": 1129 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1181, + "endColumn": 76, + "endOffset": 1253 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1134, + "endColumn": 81, + "endOffset": 1211 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1258, + "endColumn": 81, + "endOffset": 1335 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1216, + "endColumn": 110, + "endOffset": 1322 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1340, + "endColumn": 110, + "endOffset": 1446 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1327, + "endColumn": 103, + "endOffset": 1426 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1451, + "endColumn": 103, + "endOffset": 1550 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1431, + "endColumn": 98, + "endOffset": 1525 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1555, + "endColumn": 98, + "endOffset": 1649 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1530, + "endColumn": 114, + "endOffset": 1640 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1654, + "endColumn": 114, + "endOffset": 1764 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1645, + "endColumn": 112, + "endOffset": 1753 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1769, + "endColumn": 112, + "endOffset": 1877 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1758, + "endColumn": 102, + "endOffset": 1856 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1882, + "endColumn": 102, + "endOffset": 1980 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1861, + "endColumn": 117, + "endOffset": 1974 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1985, + "endColumn": 117, + "endOffset": 2098 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1979, + "endColumn": 102, + "endOffset": 2077 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2103, + "endColumn": 102, + "endOffset": 2201 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2082, + "endColumn": 274, + "endOffset": 2352 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3599, + "endColumn": 278, + "endOffset": 3873 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2357, + "endColumn": 132, + "endOffset": 2485 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1345, + "endColumn": 132, + "endOffset": 1473 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2490, + "endColumn": 186, + "endOffset": 2672 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1154, + "endColumn": 190, + "endOffset": 1340 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2677, + "endColumn": 131, + "endOffset": 2804 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1022, + "endColumn": 131, + "endOffset": 1149 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2809, + "endColumn": 129, + "endOffset": 2934 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 892, + "endColumn": 129, + "endOffset": 1017 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2939, + "endColumn": 224, + "endOffset": 3159 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 435, + "endColumn": 228, + "endOffset": 659 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3164, + "endColumn": 223, + "endOffset": 3383 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 664, + "endColumn": 227, + "endOffset": 887 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3388, + "endColumn": 128, + "endOffset": 3512 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 306, + "endColumn": 128, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3517, + "endColumn": 182, + "endOffset": 3695 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2816, + "endColumn": 182, + "endOffset": 2994 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3700, + "endColumn": 121, + "endOffset": 3817 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2694, + "endColumn": 121, + "endOffset": 2811 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3822, + "endColumn": 188, + "endOffset": 4006 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2505, + "endColumn": 188, + "endOffset": 2689 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4011, + "endColumn": 117, + "endOffset": 4124 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2387, + "endColumn": 117, + "endOffset": 2500 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4129, + "endColumn": 135, + "endOffset": 4260 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 135, + "endOffset": 301 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4265, + "endColumn": 178, + "endOffset": 4439 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4301, + "endColumn": 178, + "endOffset": 4475 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4444, + "endColumn": 126, + "endOffset": 4566 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4174, + "endColumn": 126, + "endOffset": 4296 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4571, + "endColumn": 171, + "endOffset": 4738 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4002, + "endColumn": 171, + "endOffset": 4169 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4743, + "endColumn": 123, + "endOffset": 4862 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3878, + "endColumn": 123, + "endOffset": 3997 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4867, + "endColumn": 266, + "endOffset": 5129 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-nl\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 270, + "endOffset": 436 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5134, + "endColumn": 266, + "endOffset": 5396 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3123, + "endColumn": 270, + "endOffset": 3389 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5401, + "endColumn": 123, + "endOffset": 5520 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2999, + "endColumn": 123, + "endOffset": 3118 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5525, + "endColumn": 107, + "endOffset": 5628 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3394, + "endColumn": 107, + "endOffset": 3497 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5633, + "endColumn": 199, + "endOffset": 5828 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1606, + "endColumn": 203, + "endOffset": 1805 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5833, + "endColumn": 127, + "endOffset": 5956 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1478, + "endColumn": 127, + "endOffset": 1601 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5961, + "endColumn": 221, + "endOffset": 6178 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2161, + "endColumn": 225, + "endOffset": 2382 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6183, + "endColumn": 138, + "endOffset": 6317 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2022, + "endColumn": 138, + "endOffset": 2156 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6322, + "endColumn": 211, + "endOffset": 6529 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1810, + "endColumn": 211, + "endOffset": 2017 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6534, + "endColumn": 96, + "endOffset": 6626 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3502, + "endColumn": 96, + "endOffset": 3594 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6631, + "endColumn": 92, + "endOffset": 6719 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4480, + "endColumn": 92, + "endOffset": 4568 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6724, + "endColumn": 108, + "endOffset": 6828 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-nl\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4573, + "endColumn": 108, + "endOffset": 4677 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6833, + "endColumn": 106, + "endOffset": 6935 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 106, + "endOffset": 380 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6940, + "endColumn": 113, + "endOffset": 7049 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 385, + "endColumn": 113, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7054, + "endColumn": 116, + "endOffset": 7166 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 116, + "endOffset": 611 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7171, + "endColumn": 114, + "endOffset": 7281 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 616, + "endColumn": 114, + "endOffset": 726 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7286, + "endColumn": 129, + "endOffset": 7411 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 731, + "endColumn": 129, + "endOffset": 856 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7416, + "endColumn": 101, + "endOffset": 7513 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 861, + "endColumn": 101, + "endOffset": 958 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7518, + "endColumn": 97, + "endOffset": 7611 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 963, + "endColumn": 97, + "endOffset": 1056 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7616, + "endColumn": 122, + "endOffset": 7734 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1061, + "endColumn": 122, + "endOffset": 1179 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7739, + "endColumn": 103, + "endOffset": 7838 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1184, + "endColumn": 103, + "endOffset": 1283 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7843, + "endColumn": 86, + "endOffset": 7925 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1288, + "endColumn": 86, + "endOffset": 1370 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7930, + "endColumn": 95, + "endOffset": 8021 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1375, + "endColumn": 95, + "endOffset": 1466 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8026, + "endColumn": 109, + "endOffset": 8131 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-nl\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 326, + "endColumn": 109, + "endOffset": 431 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8136, + "endColumn": 95, + "endOffset": 8227 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-nl\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 95, + "endOffset": 321 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8232, + "endColumn": 100, + "endOffset": 8328 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-nl\\values-nl.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2206, + "endColumn": 100, + "endOffset": 2302 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8333, + "endColumn": 105, + "endOffset": 8434 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-nl\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 105, + "endOffset": 331 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-pa-rIN.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-pa-rIN.json new file mode 100644 index 0000000..56aa5ef --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-pa-rIN.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-pa-rIN\\values-pa-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 105, + "endOffset": 206 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 105, + "endOffset": 334 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 211, + "endColumn": 107, + "endOffset": 314 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 339, + "endColumn": 107, + "endOffset": 442 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 319, + "endColumn": 122, + "endOffset": 437 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 447, + "endColumn": 122, + "endOffset": 565 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 442, + "endColumn": 104, + "endOffset": 542 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 570, + "endColumn": 104, + "endOffset": 670 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 547, + "endColumn": 104, + "endOffset": 647 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 675, + "endColumn": 104, + "endOffset": 775 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 652, + "endColumn": 85, + "endOffset": 733 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 780, + "endColumn": 85, + "endOffset": 861 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 738, + "endColumn": 99, + "endOffset": 833 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 866, + "endColumn": 99, + "endOffset": 961 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 838, + "endColumn": 112, + "endOffset": 946 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 966, + "endColumn": 112, + "endOffset": 1074 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 951, + "endColumn": 76, + "endOffset": 1023 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1079, + "endColumn": 76, + "endOffset": 1151 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1028, + "endColumn": 75, + "endOffset": 1099 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 75, + "endOffset": 1227 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 78, + "endOffset": 1178 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1232, + "endColumn": 78, + "endOffset": 1306 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1183, + "endColumn": 100, + "endOffset": 1279 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1311, + "endColumn": 100, + "endOffset": 1407 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1284, + "endColumn": 100, + "endOffset": 1380 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1412, + "endColumn": 100, + "endOffset": 1508 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1385, + "endColumn": 96, + "endOffset": 1477 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1513, + "endColumn": 96, + "endOffset": 1605 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1482, + "endColumn": 108, + "endOffset": 1586 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1610, + "endColumn": 108, + "endOffset": 1714 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1591, + "endColumn": 98, + "endOffset": 1685 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1719, + "endColumn": 98, + "endOffset": 1813 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1690, + "endColumn": 109, + "endOffset": 1795 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1818, + "endColumn": 109, + "endOffset": 1923 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1800, + "endColumn": 121, + "endOffset": 1917 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 121, + "endOffset": 2045 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1922, + "endColumn": 99, + "endOffset": 2017 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2050, + "endColumn": 99, + "endOffset": 2145 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2022, + "endColumn": 256, + "endOffset": 2274 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3520, + "endColumn": 260, + "endOffset": 3776 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2279, + "endColumn": 132, + "endOffset": 2407 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1342, + "endColumn": 132, + "endOffset": 1470 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2412, + "endColumn": 206, + "endOffset": 2614 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1131, + "endColumn": 210, + "endOffset": 1337 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2619, + "endColumn": 131, + "endOffset": 2746 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 999, + "endColumn": 131, + "endOffset": 1126 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2751, + "endColumn": 131, + "endOffset": 2878 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 867, + "endColumn": 131, + "endOffset": 994 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2883, + "endColumn": 210, + "endOffset": 3089 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 434, + "endColumn": 214, + "endOffset": 644 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3094, + "endColumn": 213, + "endOffset": 3303 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 649, + "endColumn": 217, + "endOffset": 862 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3308, + "endColumn": 130, + "endOffset": 3434 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 303, + "endColumn": 130, + "endOffset": 429 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3439, + "endColumn": 182, + "endOffset": 3617 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2757, + "endColumn": 182, + "endOffset": 2935 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3622, + "endColumn": 119, + "endOffset": 3737 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2637, + "endColumn": 119, + "endOffset": 2752 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3742, + "endColumn": 165, + "endOffset": 3903 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2471, + "endColumn": 165, + "endOffset": 2632 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3908, + "endColumn": 120, + "endOffset": 4024 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2350, + "endColumn": 120, + "endOffset": 2466 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4029, + "endColumn": 132, + "endOffset": 4157 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 132, + "endOffset": 298 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4162, + "endColumn": 170, + "endOffset": 4328 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4213, + "endColumn": 170, + "endOffset": 4379 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4333, + "endColumn": 131, + "endOffset": 4460 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4081, + "endColumn": 131, + "endOffset": 4208 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4465, + "endColumn": 174, + "endOffset": 4635 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3906, + "endColumn": 174, + "endOffset": 4076 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4640, + "endColumn": 124, + "endOffset": 4760 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3781, + "endColumn": 124, + "endOffset": 3901 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4765, + "endColumn": 254, + "endOffset": 5015 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-pa-rIN\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 258, + "endOffset": 424 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5020, + "endColumn": 247, + "endOffset": 5263 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3063, + "endColumn": 251, + "endOffset": 3310 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5268, + "endColumn": 122, + "endOffset": 5386 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2940, + "endColumn": 122, + "endOffset": 3058 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5391, + "endColumn": 109, + "endOffset": 5496 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3315, + "endColumn": 109, + "endOffset": 3420 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5501, + "endColumn": 202, + "endOffset": 5699 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1608, + "endColumn": 206, + "endOffset": 1810 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5704, + "endColumn": 132, + "endOffset": 5832 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 132, + "endOffset": 1603 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5837, + "endColumn": 210, + "endOffset": 6043 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2135, + "endColumn": 214, + "endOffset": 2345 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6048, + "endColumn": 138, + "endOffset": 6182 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1996, + "endColumn": 138, + "endOffset": 2130 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6187, + "endColumn": 180, + "endOffset": 6363 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1815, + "endColumn": 180, + "endOffset": 1991 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6368, + "endColumn": 94, + "endOffset": 6458 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3425, + "endColumn": 94, + "endOffset": 3515 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6463, + "endColumn": 95, + "endOffset": 6554 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4384, + "endColumn": 95, + "endOffset": 4475 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6559, + "endColumn": 111, + "endOffset": 6666 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pa-rIN\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4480, + "endColumn": 111, + "endOffset": 4587 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6671, + "endColumn": 104, + "endOffset": 6771 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 104, + "endOffset": 382 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6776, + "endColumn": 118, + "endOffset": 6890 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 387, + "endColumn": 118, + "endOffset": 501 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6895, + "endColumn": 107, + "endOffset": 6998 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 506, + "endColumn": 107, + "endOffset": 609 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7003, + "endColumn": 106, + "endOffset": 7105 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 614, + "endColumn": 106, + "endOffset": 716 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7110, + "endColumn": 124, + "endOffset": 7230 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 721, + "endColumn": 124, + "endOffset": 841 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7235, + "endColumn": 94, + "endOffset": 7325 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 846, + "endColumn": 94, + "endOffset": 936 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7330, + "endColumn": 96, + "endOffset": 7422 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 941, + "endColumn": 96, + "endOffset": 1033 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7427, + "endColumn": 116, + "endOffset": 7539 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1038, + "endColumn": 116, + "endOffset": 1150 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7544, + "endColumn": 99, + "endOffset": 7639 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1155, + "endColumn": 99, + "endOffset": 1250 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7644, + "endColumn": 84, + "endOffset": 7724 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1255, + "endColumn": 84, + "endOffset": 1335 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7729, + "endColumn": 94, + "endOffset": 7819 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1340, + "endColumn": 94, + "endOffset": 1430 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7824, + "endColumn": 98, + "endOffset": 7918 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-pa-rIN\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 324, + "endColumn": 98, + "endOffset": 418 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7923, + "endColumn": 93, + "endOffset": 8012 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-pa-rIN\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 93, + "endOffset": 319 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8017, + "endColumn": 100, + "endOffset": 8113 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pa-rIN\\values-pa-rIN.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2150, + "endColumn": 100, + "endOffset": 2246 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-pl.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-pl.json new file mode 100644 index 0000000..8d18d79 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-pl.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-pl\\values-pl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 115, + "endOffset": 216 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 115, + "endOffset": 340 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 221, + "endColumn": 107, + "endOffset": 324 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 345, + "endColumn": 107, + "endOffset": 448 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 329, + "endColumn": 122, + "endOffset": 447 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 453, + "endColumn": 122, + "endOffset": 571 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 452, + "endColumn": 101, + "endOffset": 549 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 576, + "endColumn": 101, + "endOffset": 673 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 554, + "endColumn": 107, + "endOffset": 657 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 678, + "endColumn": 107, + "endOffset": 781 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 662, + "endColumn": 85, + "endOffset": 743 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 786, + "endColumn": 85, + "endOffset": 867 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 748, + "endColumn": 108, + "endOffset": 852 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 872, + "endColumn": 108, + "endOffset": 976 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 857, + "endColumn": 118, + "endOffset": 971 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 981, + "endColumn": 118, + "endOffset": 1095 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 976, + "endColumn": 77, + "endOffset": 1049 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1100, + "endColumn": 77, + "endOffset": 1173 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1054, + "endColumn": 76, + "endOffset": 1126 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1178, + "endColumn": 76, + "endOffset": 1250 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1131, + "endColumn": 81, + "endOffset": 1208 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1255, + "endColumn": 81, + "endOffset": 1332 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1213, + "endColumn": 108, + "endOffset": 1317 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1337, + "endColumn": 108, + "endOffset": 1441 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1322, + "endColumn": 108, + "endOffset": 1426 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1446, + "endColumn": 108, + "endOffset": 1550 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1431, + "endColumn": 98, + "endOffset": 1525 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1555, + "endColumn": 98, + "endOffset": 1649 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1530, + "endColumn": 108, + "endOffset": 1634 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1654, + "endColumn": 108, + "endOffset": 1758 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1639, + "endColumn": 110, + "endOffset": 1745 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1763, + "endColumn": 110, + "endOffset": 1869 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 107, + "endOffset": 1853 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 107, + "endOffset": 1977 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1858, + "endColumn": 122, + "endOffset": 1976 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1982, + "endColumn": 122, + "endOffset": 2100 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1981, + "endColumn": 95, + "endOffset": 2072 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2105, + "endColumn": 95, + "endOffset": 2196 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2077, + "endColumn": 276, + "endOffset": 2349 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3538, + "endColumn": 280, + "endOffset": 3814 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2354, + "endColumn": 124, + "endOffset": 2474 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1340, + "endColumn": 124, + "endOffset": 1460 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2479, + "endColumn": 199, + "endOffset": 2674 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1136, + "endColumn": 203, + "endOffset": 1335 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2679, + "endColumn": 123, + "endOffset": 2798 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1012, + "endColumn": 123, + "endOffset": 1131 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2803, + "endColumn": 127, + "endOffset": 2926 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 884, + "endColumn": 127, + "endOffset": 1007 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2931, + "endColumn": 224, + "endOffset": 3151 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 426, + "endColumn": 228, + "endOffset": 650 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3156, + "endColumn": 224, + "endOffset": 3376 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 655, + "endColumn": 228, + "endOffset": 879 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3381, + "endColumn": 126, + "endOffset": 3503 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 299, + "endColumn": 126, + "endOffset": 421 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3508, + "endColumn": 164, + "endOffset": 3668 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2768, + "endColumn": 164, + "endOffset": 2928 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3673, + "endColumn": 124, + "endOffset": 3793 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2643, + "endColumn": 124, + "endOffset": 2763 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3798, + "endColumn": 168, + "endOffset": 3962 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2474, + "endColumn": 168, + "endOffset": 2638 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3967, + "endColumn": 116, + "endOffset": 4079 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2357, + "endColumn": 116, + "endOffset": 2469 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4084, + "endColumn": 128, + "endOffset": 4208 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 128, + "endOffset": 294 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4213, + "endColumn": 178, + "endOffset": 4387 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4230, + "endColumn": 178, + "endOffset": 4404 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4392, + "endColumn": 129, + "endOffset": 4517 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4100, + "endColumn": 129, + "endOffset": 4225 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4522, + "endColumn": 158, + "endOffset": 4676 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3941, + "endColumn": 158, + "endOffset": 4095 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4681, + "endColumn": 121, + "endOffset": 4798 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3819, + "endColumn": 121, + "endOffset": 3936 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4803, + "endColumn": 262, + "endOffset": 5061 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-pl\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 266, + "endOffset": 432 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5066, + "endColumn": 269, + "endOffset": 5331 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3055, + "endColumn": 273, + "endOffset": 3324 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5336, + "endColumn": 121, + "endOffset": 5453 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2933, + "endColumn": 121, + "endOffset": 3050 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5458, + "endColumn": 110, + "endOffset": 5564 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3329, + "endColumn": 110, + "endOffset": 3435 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5569, + "endColumn": 205, + "endOffset": 5770 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1595, + "endColumn": 209, + "endOffset": 1800 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5775, + "endColumn": 129, + "endOffset": 5900 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1465, + "endColumn": 129, + "endOffset": 1590 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5905, + "endColumn": 217, + "endOffset": 6118 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2135, + "endColumn": 221, + "endOffset": 2352 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6123, + "endColumn": 138, + "endOffset": 6257 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1996, + "endColumn": 138, + "endOffset": 2130 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6262, + "endColumn": 190, + "endOffset": 6448 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1805, + "endColumn": 190, + "endOffset": 1991 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6453, + "endColumn": 97, + "endOffset": 6546 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3440, + "endColumn": 97, + "endOffset": 3533 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6551, + "endColumn": 95, + "endOffset": 6642 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4409, + "endColumn": 95, + "endOffset": 4500 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6647, + "endColumn": 113, + "endOffset": 6756 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pl\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4505, + "endColumn": 113, + "endOffset": 4614 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6761, + "endColumn": 109, + "endOffset": 6866 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 109, + "endOffset": 383 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6871, + "endColumn": 107, + "endOffset": 6974 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 388, + "endColumn": 107, + "endOffset": 491 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6979, + "endColumn": 107, + "endOffset": 7082 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 496, + "endColumn": 107, + "endOffset": 599 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7087, + "endColumn": 101, + "endOffset": 7184 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 101, + "endOffset": 701 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7189, + "endColumn": 117, + "endOffset": 7302 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 706, + "endColumn": 117, + "endOffset": 819 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7307, + "endColumn": 99, + "endOffset": 7402 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 99, + "endOffset": 919 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7407, + "endColumn": 96, + "endOffset": 7499 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 924, + "endColumn": 96, + "endOffset": 1016 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7504, + "endColumn": 120, + "endOffset": 7620 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1021, + "endColumn": 120, + "endOffset": 1137 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7625, + "endColumn": 108, + "endOffset": 7729 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1142, + "endColumn": 108, + "endOffset": 1246 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7734, + "endColumn": 85, + "endOffset": 7815 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1251, + "endColumn": 85, + "endOffset": 1332 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7820, + "endColumn": 96, + "endOffset": 7912 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1337, + "endColumn": 96, + "endOffset": 1429 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7917, + "endColumn": 110, + "endOffset": 8023 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-pl\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 326, + "endColumn": 110, + "endOffset": 432 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8028, + "endColumn": 95, + "endOffset": 8119 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-pl\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 95, + "endOffset": 321 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8124, + "endColumn": 100, + "endOffset": 8220 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pl\\values-pl.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2201, + "endColumn": 100, + "endOffset": 2297 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8225, + "endColumn": 101, + "endOffset": 8322 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-pl\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 101, + "endOffset": 327 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-port.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-port.json new file mode 100644 index 0000000..035b752 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-port.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-port\\values-port.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 55, + "endOffset": 106 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-port\\values-port.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 55, + "endOffset": 280 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-pt-rBR.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-pt-rBR.json new file mode 100644 index 0000000..df95251 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-pt-rBR.json @@ -0,0 +1,995 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-pt-rBR\\values-pt-rBR.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 119, + "endOffset": 220 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 119, + "endOffset": 348 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 225, + "endColumn": 107, + "endOffset": 328 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 353, + "endColumn": 107, + "endOffset": 456 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 333, + "endColumn": 122, + "endOffset": 451 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 461, + "endColumn": 122, + "endOffset": 579 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 456, + "endColumn": 105, + "endOffset": 557 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 584, + "endColumn": 105, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 562, + "endColumn": 106, + "endOffset": 664 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 106, + "endOffset": 792 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 669, + "endColumn": 88, + "endOffset": 753 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 88, + "endOffset": 881 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 758, + "endColumn": 100, + "endOffset": 854 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 886, + "endColumn": 100, + "endOffset": 982 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 859, + "endColumn": 117, + "endOffset": 972 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 987, + "endColumn": 117, + "endOffset": 1100 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 977, + "endColumn": 82, + "endOffset": 1055 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1105, + "endColumn": 82, + "endOffset": 1183 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1060, + "endColumn": 79, + "endOffset": 1135 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1188, + "endColumn": 79, + "endOffset": 1263 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1140, + "endColumn": 86, + "endOffset": 1222 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1268, + "endColumn": 86, + "endOffset": 1350 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1227, + "endColumn": 106, + "endOffset": 1329 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1355, + "endColumn": 106, + "endOffset": 1457 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1334, + "endColumn": 111, + "endOffset": 1441 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1462, + "endColumn": 111, + "endOffset": 1569 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1446, + "endColumn": 101, + "endOffset": 1543 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1574, + "endColumn": 101, + "endOffset": 1671 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1548, + "endColumn": 107, + "endOffset": 1651 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1676, + "endColumn": 107, + "endOffset": 1779 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1656, + "endColumn": 106, + "endOffset": 1758 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 106, + "endOffset": 1886 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1763, + "endColumn": 109, + "endOffset": 1868 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1891, + "endColumn": 109, + "endOffset": 1996 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1873, + "endColumn": 124, + "endOffset": 1993 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2001, + "endColumn": 124, + "endOffset": 2121 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1998, + "endColumn": 99, + "endOffset": 2093 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2126, + "endColumn": 99, + "endOffset": 2221 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2098, + "endColumn": 276, + "endOffset": 2370 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3541, + "endColumn": 280, + "endOffset": 3817 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2375, + "endColumn": 129, + "endOffset": 2500 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1338, + "endColumn": 129, + "endOffset": 1463 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2505, + "endColumn": 179, + "endOffset": 2680 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1154, + "endColumn": 183, + "endOffset": 1333 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2685, + "endColumn": 128, + "endOffset": 2809 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1025, + "endColumn": 128, + "endOffset": 1149 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2814, + "endColumn": 132, + "endOffset": 2942 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 892, + "endColumn": 132, + "endOffset": 1020 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2947, + "endColumn": 224, + "endOffset": 3167 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 437, + "endColumn": 228, + "endOffset": 661 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3172, + "endColumn": 221, + "endOffset": 3389 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 666, + "endColumn": 225, + "endOffset": 887 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3394, + "endColumn": 131, + "endOffset": 3521 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 305, + "endColumn": 131, + "endOffset": 432 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3526, + "endColumn": 175, + "endOffset": 3697 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2760, + "endColumn": 175, + "endOffset": 2931 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3702, + "endColumn": 119, + "endOffset": 3817 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2640, + "endColumn": 119, + "endOffset": 2755 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3822, + "endColumn": 177, + "endOffset": 3995 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2462, + "endColumn": 177, + "endOffset": 2635 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4000, + "endColumn": 118, + "endOffset": 4114 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2343, + "endColumn": 118, + "endOffset": 2457 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4119, + "endColumn": 134, + "endOffset": 4249 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 134, + "endOffset": 300 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4254, + "endColumn": 176, + "endOffset": 4426 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4239, + "endColumn": 176, + "endOffset": 4411 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4431, + "endColumn": 126, + "endOffset": 4553 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4112, + "endColumn": 126, + "endOffset": 4234 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4558, + "endColumn": 167, + "endOffset": 4721 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3944, + "endColumn": 167, + "endOffset": 4107 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4726, + "endColumn": 121, + "endOffset": 4843 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3822, + "endColumn": 121, + "endOffset": 3939 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4848, + "endColumn": 268, + "endOffset": 5112 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-pt-rBR\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 272, + "endOffset": 438 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5117, + "endColumn": 268, + "endOffset": 5381 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3060, + "endColumn": 272, + "endOffset": 3328 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5386, + "endColumn": 123, + "endOffset": 5505 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2936, + "endColumn": 123, + "endOffset": 3055 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5510, + "endColumn": 109, + "endOffset": 5615 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3333, + "endColumn": 109, + "endOffset": 3438 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5620, + "endColumn": 194, + "endOffset": 5810 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1600, + "endColumn": 198, + "endOffset": 1794 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5815, + "endColumn": 131, + "endOffset": 5942 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 131, + "endOffset": 1595 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5947, + "endColumn": 215, + "endOffset": 6158 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2123, + "endColumn": 219, + "endOffset": 2338 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6163, + "endColumn": 136, + "endOffset": 6295 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1986, + "endColumn": 136, + "endOffset": 2118 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6300, + "endColumn": 186, + "endOffset": 6482 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1799, + "endColumn": 186, + "endOffset": 1981 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6487, + "endColumn": 97, + "endOffset": 6580 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3443, + "endColumn": 97, + "endOffset": 3536 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6585, + "endColumn": 95, + "endOffset": 6676 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4416, + "endColumn": 95, + "endOffset": 4507 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6681, + "endColumn": 113, + "endOffset": 6790 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rBR\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4512, + "endColumn": 113, + "endOffset": 4621 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6795, + "endColumn": 105, + "endOffset": 6896 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-pt-rBR\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 105, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6901, + "endColumn": 98, + "endOffset": 6995 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-pt-rBR\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 98, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7000, + "endColumn": 100, + "endOffset": 7096 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2226, + "endColumn": 100, + "endOffset": 2322 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7101, + "endColumn": 109, + "endOffset": 7206 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-pt-rBR\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 109, + "endOffset": 335 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-pt-rPT.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-pt-rPT.json new file mode 100644 index 0000000..8db3202 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-pt-rPT.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-pt-rPT\\values-pt-rPT.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 119, + "endOffset": 220 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 119, + "endOffset": 348 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 225, + "endColumn": 107, + "endOffset": 328 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 353, + "endColumn": 107, + "endOffset": 456 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 333, + "endColumn": 122, + "endOffset": 451 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 461, + "endColumn": 122, + "endOffset": 579 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 456, + "endColumn": 105, + "endOffset": 557 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 584, + "endColumn": 105, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 562, + "endColumn": 106, + "endOffset": 664 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 106, + "endOffset": 792 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 669, + "endColumn": 88, + "endOffset": 753 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 88, + "endOffset": 881 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 758, + "endColumn": 100, + "endOffset": 854 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 886, + "endColumn": 100, + "endOffset": 982 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 859, + "endColumn": 123, + "endOffset": 978 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 987, + "endColumn": 123, + "endOffset": 1106 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 983, + "endColumn": 83, + "endOffset": 1062 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1111, + "endColumn": 83, + "endOffset": 1190 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1067, + "endColumn": 80, + "endOffset": 1143 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1195, + "endColumn": 80, + "endOffset": 1271 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1148, + "endColumn": 86, + "endOffset": 1230 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1276, + "endColumn": 86, + "endOffset": 1358 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 106, + "endOffset": 1337 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1363, + "endColumn": 106, + "endOffset": 1465 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1342, + "endColumn": 111, + "endOffset": 1449 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1470, + "endColumn": 111, + "endOffset": 1577 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1454, + "endColumn": 101, + "endOffset": 1551 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1582, + "endColumn": 101, + "endOffset": 1679 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1556, + "endColumn": 107, + "endOffset": 1659 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1684, + "endColumn": 107, + "endOffset": 1787 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1664, + "endColumn": 106, + "endOffset": 1766 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1792, + "endColumn": 106, + "endOffset": 1894 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1771, + "endColumn": 106, + "endOffset": 1873 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1899, + "endColumn": 106, + "endOffset": 2001 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1878, + "endColumn": 121, + "endOffset": 1995 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2006, + "endColumn": 121, + "endOffset": 2123 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2000, + "endColumn": 98, + "endOffset": 2094 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2128, + "endColumn": 98, + "endOffset": 2222 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2099, + "endColumn": 275, + "endOffset": 2370 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3626, + "endColumn": 279, + "endOffset": 3901 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2375, + "endColumn": 130, + "endOffset": 2501 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1367, + "endColumn": 130, + "endOffset": 1493 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2506, + "endColumn": 194, + "endOffset": 2696 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1168, + "endColumn": 198, + "endOffset": 1362 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2701, + "endColumn": 129, + "endOffset": 2826 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1038, + "endColumn": 129, + "endOffset": 1163 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2831, + "endColumn": 130, + "endOffset": 2957 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 907, + "endColumn": 130, + "endOffset": 1033 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2962, + "endColumn": 230, + "endOffset": 3188 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 439, + "endColumn": 234, + "endOffset": 669 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3193, + "endColumn": 228, + "endOffset": 3417 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 674, + "endColumn": 232, + "endOffset": 902 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3422, + "endColumn": 129, + "endOffset": 3547 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 309, + "endColumn": 129, + "endOffset": 434 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3552, + "endColumn": 186, + "endOffset": 3734 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2827, + "endColumn": 186, + "endOffset": 3009 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3739, + "endColumn": 119, + "endOffset": 3854 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2707, + "endColumn": 119, + "endOffset": 2822 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3859, + "endColumn": 181, + "endOffset": 4036 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2525, + "endColumn": 181, + "endOffset": 2702 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4041, + "endColumn": 118, + "endOffset": 4155 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2406, + "endColumn": 118, + "endOffset": 2520 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4160, + "endColumn": 138, + "endOffset": 4294 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 138, + "endOffset": 304 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4299, + "endColumn": 175, + "endOffset": 4470 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4343, + "endColumn": 175, + "endOffset": 4514 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4475, + "endColumn": 126, + "endOffset": 4597 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4216, + "endColumn": 126, + "endOffset": 4338 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4602, + "endColumn": 178, + "endOffset": 4776 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4037, + "endColumn": 178, + "endOffset": 4211 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4781, + "endColumn": 130, + "endOffset": 4907 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3906, + "endColumn": 130, + "endOffset": 4032 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4912, + "endColumn": 260, + "endOffset": 5168 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-pt-rPT\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 264, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5173, + "endColumn": 273, + "endOffset": 5442 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3141, + "endColumn": 277, + "endOffset": 3414 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5447, + "endColumn": 126, + "endOffset": 5569 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 3014, + "endColumn": 126, + "endOffset": 3136 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5574, + "endColumn": 109, + "endOffset": 5679 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3419, + "endColumn": 109, + "endOffset": 3524 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5684, + "endColumn": 200, + "endOffset": 5880 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1631, + "endColumn": 204, + "endOffset": 1831 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5885, + "endColumn": 132, + "endOffset": 6013 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1498, + "endColumn": 132, + "endOffset": 1626 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6018, + "endColumn": 217, + "endOffset": 6231 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2184, + "endColumn": 221, + "endOffset": 2401 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6236, + "endColumn": 139, + "endOffset": 6371 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2044, + "endColumn": 139, + "endOffset": 2179 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6376, + "endColumn": 207, + "endOffset": 6579 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1836, + "endColumn": 207, + "endOffset": 2039 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6584, + "endColumn": 96, + "endOffset": 6676 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3529, + "endColumn": 96, + "endOffset": 3621 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6681, + "endColumn": 98, + "endOffset": 6775 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4519, + "endColumn": 98, + "endOffset": 4613 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6780, + "endColumn": 116, + "endOffset": 6892 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt-rPT\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4618, + "endColumn": 116, + "endOffset": 4730 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6897, + "endColumn": 110, + "endOffset": 7003 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 110, + "endOffset": 388 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 7008, + "endColumn": 116, + "endOffset": 7120 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 116, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7125, + "endColumn": 107, + "endOffset": 7228 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 107, + "endOffset": 613 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7233, + "endColumn": 105, + "endOffset": 7334 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 618, + "endColumn": 105, + "endOffset": 719 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7339, + "endColumn": 131, + "endOffset": 7466 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 724, + "endColumn": 131, + "endOffset": 851 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7471, + "endColumn": 106, + "endOffset": 7573 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 856, + "endColumn": 106, + "endOffset": 958 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7578, + "endColumn": 99, + "endOffset": 7673 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 963, + "endColumn": 99, + "endOffset": 1058 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7678, + "endColumn": 125, + "endOffset": 7799 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1063, + "endColumn": 125, + "endOffset": 1184 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7804, + "endColumn": 108, + "endOffset": 7908 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1189, + "endColumn": 108, + "endOffset": 1293 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7913, + "endColumn": 86, + "endOffset": 7995 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1298, + "endColumn": 86, + "endOffset": 1380 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 8000, + "endColumn": 98, + "endOffset": 8094 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1385, + "endColumn": 98, + "endOffset": 1479 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8099, + "endColumn": 105, + "endOffset": 8200 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-pt-rPT\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 105, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8205, + "endColumn": 98, + "endOffset": 8299 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-pt-rPT\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 98, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8304, + "endColumn": 100, + "endOffset": 8400 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2227, + "endColumn": 100, + "endOffset": 2323 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8405, + "endColumn": 109, + "endOffset": 8510 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-pt-rPT\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 109, + "endOffset": 335 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-pt.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-pt.json new file mode 100644 index 0000000..fced6bf --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-pt.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-pt\\values-pt.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 119, + "endOffset": 220 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 119, + "endOffset": 344 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 225, + "endColumn": 107, + "endOffset": 328 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 349, + "endColumn": 107, + "endOffset": 452 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 333, + "endColumn": 122, + "endOffset": 451 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 457, + "endColumn": 122, + "endOffset": 575 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 456, + "endColumn": 105, + "endOffset": 557 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 580, + "endColumn": 105, + "endOffset": 681 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 562, + "endColumn": 106, + "endOffset": 664 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 106, + "endOffset": 788 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 669, + "endColumn": 88, + "endOffset": 753 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 793, + "endColumn": 88, + "endOffset": 877 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 758, + "endColumn": 100, + "endOffset": 854 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 882, + "endColumn": 100, + "endOffset": 978 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 859, + "endColumn": 117, + "endOffset": 972 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 983, + "endColumn": 117, + "endOffset": 1096 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 977, + "endColumn": 82, + "endOffset": 1055 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1101, + "endColumn": 82, + "endOffset": 1179 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1060, + "endColumn": 79, + "endOffset": 1135 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1184, + "endColumn": 79, + "endOffset": 1259 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1140, + "endColumn": 86, + "endOffset": 1222 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1264, + "endColumn": 86, + "endOffset": 1346 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1227, + "endColumn": 106, + "endOffset": 1329 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1351, + "endColumn": 106, + "endOffset": 1453 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1334, + "endColumn": 111, + "endOffset": 1441 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1458, + "endColumn": 111, + "endOffset": 1565 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1446, + "endColumn": 101, + "endOffset": 1543 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1570, + "endColumn": 101, + "endOffset": 1667 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1548, + "endColumn": 107, + "endOffset": 1651 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1672, + "endColumn": 107, + "endOffset": 1775 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1656, + "endColumn": 106, + "endOffset": 1758 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1780, + "endColumn": 106, + "endOffset": 1882 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1763, + "endColumn": 109, + "endOffset": 1868 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1887, + "endColumn": 109, + "endOffset": 1992 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1873, + "endColumn": 124, + "endOffset": 1993 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1997, + "endColumn": 124, + "endOffset": 2117 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1998, + "endColumn": 99, + "endOffset": 2093 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2122, + "endColumn": 99, + "endOffset": 2217 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2098, + "endColumn": 276, + "endOffset": 2370 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3541, + "endColumn": 280, + "endOffset": 3817 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2375, + "endColumn": 129, + "endOffset": 2500 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1338, + "endColumn": 129, + "endOffset": 1463 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2505, + "endColumn": 179, + "endOffset": 2680 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1154, + "endColumn": 183, + "endOffset": 1333 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2685, + "endColumn": 128, + "endOffset": 2809 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1025, + "endColumn": 128, + "endOffset": 1149 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2814, + "endColumn": 132, + "endOffset": 2942 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 892, + "endColumn": 132, + "endOffset": 1020 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2947, + "endColumn": 224, + "endOffset": 3167 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 437, + "endColumn": 228, + "endOffset": 661 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3172, + "endColumn": 221, + "endOffset": 3389 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 666, + "endColumn": 225, + "endOffset": 887 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3394, + "endColumn": 131, + "endOffset": 3521 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 305, + "endColumn": 131, + "endOffset": 432 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3526, + "endColumn": 175, + "endOffset": 3697 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2760, + "endColumn": 175, + "endOffset": 2931 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3702, + "endColumn": 119, + "endOffset": 3817 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2640, + "endColumn": 119, + "endOffset": 2755 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3822, + "endColumn": 177, + "endOffset": 3995 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2462, + "endColumn": 177, + "endOffset": 2635 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4000, + "endColumn": 118, + "endOffset": 4114 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2343, + "endColumn": 118, + "endOffset": 2457 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4119, + "endColumn": 134, + "endOffset": 4249 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 134, + "endOffset": 300 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4254, + "endColumn": 176, + "endOffset": 4426 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4239, + "endColumn": 176, + "endOffset": 4411 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4431, + "endColumn": 126, + "endOffset": 4553 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4112, + "endColumn": 126, + "endOffset": 4234 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4558, + "endColumn": 167, + "endOffset": 4721 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3944, + "endColumn": 167, + "endOffset": 4107 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4726, + "endColumn": 121, + "endOffset": 4843 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3822, + "endColumn": 121, + "endOffset": 3939 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4848, + "endColumn": 268, + "endOffset": 5112 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-pt\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 272, + "endOffset": 438 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5117, + "endColumn": 268, + "endOffset": 5381 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3060, + "endColumn": 272, + "endOffset": 3328 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5386, + "endColumn": 123, + "endOffset": 5505 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2936, + "endColumn": 123, + "endOffset": 3055 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5510, + "endColumn": 109, + "endOffset": 5615 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3333, + "endColumn": 109, + "endOffset": 3438 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5620, + "endColumn": 194, + "endOffset": 5810 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1600, + "endColumn": 198, + "endOffset": 1794 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5815, + "endColumn": 131, + "endOffset": 5942 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 131, + "endOffset": 1595 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5947, + "endColumn": 215, + "endOffset": 6158 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2123, + "endColumn": 219, + "endOffset": 2338 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6163, + "endColumn": 136, + "endOffset": 6295 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1986, + "endColumn": 136, + "endOffset": 2118 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6300, + "endColumn": 186, + "endOffset": 6482 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1799, + "endColumn": 186, + "endOffset": 1981 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6487, + "endColumn": 97, + "endOffset": 6580 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3443, + "endColumn": 97, + "endOffset": 3536 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6585, + "endColumn": 95, + "endOffset": 6676 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4416, + "endColumn": 95, + "endOffset": 4507 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6681, + "endColumn": 113, + "endOffset": 6790 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-pt\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4512, + "endColumn": 113, + "endOffset": 4621 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6795, + "endColumn": 110, + "endOffset": 6901 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 110, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6906, + "endColumn": 115, + "endOffset": 7017 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 115, + "endOffset": 500 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7022, + "endColumn": 110, + "endOffset": 7128 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 505, + "endColumn": 110, + "endOffset": 611 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7133, + "endColumn": 105, + "endOffset": 7234 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 616, + "endColumn": 105, + "endOffset": 717 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7239, + "endColumn": 131, + "endOffset": 7366 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 722, + "endColumn": 131, + "endOffset": 849 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7371, + "endColumn": 96, + "endOffset": 7463 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 854, + "endColumn": 96, + "endOffset": 946 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7468, + "endColumn": 99, + "endOffset": 7563 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 951, + "endColumn": 99, + "endOffset": 1046 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7568, + "endColumn": 125, + "endOffset": 7689 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1051, + "endColumn": 125, + "endOffset": 1172 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7694, + "endColumn": 112, + "endOffset": 7802 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1177, + "endColumn": 112, + "endOffset": 1285 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7807, + "endColumn": 86, + "endOffset": 7889 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1290, + "endColumn": 86, + "endOffset": 1372 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7894, + "endColumn": 98, + "endOffset": 7988 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 98, + "endOffset": 1471 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7993, + "endColumn": 105, + "endOffset": 8094 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-pt\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 105, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8099, + "endColumn": 98, + "endOffset": 8193 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-pt\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 98, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8198, + "endColumn": 100, + "endOffset": 8294 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-pt\\values-pt.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2222, + "endColumn": 100, + "endOffset": 2318 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8299, + "endColumn": 109, + "endOffset": 8404 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-pt\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 109, + "endOffset": 335 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-ro.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-ro.json new file mode 100644 index 0000000..df4dcf2 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-ro.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-ro\\values-ro.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 120, + "endOffset": 221 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 120, + "endOffset": 345 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 226, + "endColumn": 107, + "endOffset": 329 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 350, + "endColumn": 107, + "endOffset": 453 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 334, + "endColumn": 122, + "endOffset": 452 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 458, + "endColumn": 122, + "endOffset": 576 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 457, + "endColumn": 103, + "endOffset": 556 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 581, + "endColumn": 103, + "endOffset": 680 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 561, + "endColumn": 112, + "endOffset": 669 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 685, + "endColumn": 112, + "endOffset": 793 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 674, + "endColumn": 87, + "endOffset": 757 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 87, + "endOffset": 881 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 762, + "endColumn": 111, + "endOffset": 869 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 886, + "endColumn": 111, + "endOffset": 993 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 874, + "endColumn": 120, + "endOffset": 990 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 998, + "endColumn": 120, + "endOffset": 1114 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 995, + "endColumn": 84, + "endOffset": 1075 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1119, + "endColumn": 84, + "endOffset": 1199 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1080, + "endColumn": 81, + "endOffset": 1157 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1204, + "endColumn": 81, + "endOffset": 1281 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1162, + "endColumn": 82, + "endOffset": 1240 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1286, + "endColumn": 82, + "endOffset": 1364 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1245, + "endColumn": 111, + "endOffset": 1352 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1369, + "endColumn": 111, + "endOffset": 1476 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1357, + "endColumn": 112, + "endOffset": 1465 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1481, + "endColumn": 112, + "endOffset": 1589 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1470, + "endColumn": 99, + "endOffset": 1565 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1594, + "endColumn": 99, + "endOffset": 1689 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1570, + "endColumn": 113, + "endOffset": 1679 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1694, + "endColumn": 113, + "endOffset": 1803 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1684, + "endColumn": 104, + "endOffset": 1784 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1808, + "endColumn": 104, + "endOffset": 1908 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1789, + "endColumn": 105, + "endOffset": 1890 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1913, + "endColumn": 105, + "endOffset": 2014 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1895, + "endColumn": 120, + "endOffset": 2011 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2019, + "endColumn": 120, + "endOffset": 2135 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2016, + "endColumn": 102, + "endOffset": 2114 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2140, + "endColumn": 102, + "endOffset": 2238 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2119, + "endColumn": 268, + "endOffset": 2383 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3542, + "endColumn": 272, + "endOffset": 3810 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2388, + "endColumn": 131, + "endOffset": 2515 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1333, + "endColumn": 131, + "endOffset": 1460 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2520, + "endColumn": 191, + "endOffset": 2707 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1137, + "endColumn": 195, + "endOffset": 1328 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2712, + "endColumn": 130, + "endOffset": 2838 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1006, + "endColumn": 130, + "endOffset": 1132 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2843, + "endColumn": 134, + "endOffset": 2973 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 871, + "endColumn": 134, + "endOffset": 1001 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2978, + "endColumn": 206, + "endOffset": 3180 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 448, + "endColumn": 210, + "endOffset": 654 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3185, + "endColumn": 207, + "endOffset": 3388 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 659, + "endColumn": 211, + "endOffset": 866 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3393, + "endColumn": 133, + "endOffset": 3522 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 314, + "endColumn": 133, + "endOffset": 443 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3527, + "endColumn": 172, + "endOffset": 3695 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2772, + "endColumn": 172, + "endOffset": 2940 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3700, + "endColumn": 125, + "endOffset": 3821 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2646, + "endColumn": 125, + "endOffset": 2767 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3826, + "endColumn": 185, + "endOffset": 4007 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2460, + "endColumn": 185, + "endOffset": 2641 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4012, + "endColumn": 121, + "endOffset": 4129 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2338, + "endColumn": 121, + "endOffset": 2455 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4134, + "endColumn": 143, + "endOffset": 4273 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 143, + "endOffset": 309 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4278, + "endColumn": 188, + "endOffset": 4462 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4251, + "endColumn": 188, + "endOffset": 4435 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4467, + "endColumn": 140, + "endOffset": 4603 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4110, + "endColumn": 140, + "endOffset": 4246 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4608, + "endColumn": 164, + "endOffset": 4768 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3945, + "endColumn": 164, + "endOffset": 4105 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4773, + "endColumn": 129, + "endOffset": 4898 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3815, + "endColumn": 129, + "endOffset": 3940 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4903, + "endColumn": 251, + "endOffset": 5150 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-ro\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 255, + "endOffset": 421 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5155, + "endColumn": 254, + "endOffset": 5405 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3071, + "endColumn": 258, + "endOffset": 3325 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5410, + "endColumn": 125, + "endOffset": 5531 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2945, + "endColumn": 125, + "endOffset": 3066 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5536, + "endColumn": 111, + "endOffset": 5643 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3330, + "endColumn": 111, + "endOffset": 3437 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5648, + "endColumn": 189, + "endOffset": 5833 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1599, + "endColumn": 193, + "endOffset": 1788 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5838, + "endColumn": 133, + "endOffset": 5967 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1465, + "endColumn": 133, + "endOffset": 1594 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5972, + "endColumn": 204, + "endOffset": 6172 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2129, + "endColumn": 208, + "endOffset": 2333 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6177, + "endColumn": 139, + "endOffset": 6312 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1989, + "endColumn": 139, + "endOffset": 2124 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6317, + "endColumn": 195, + "endOffset": 6508 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1793, + "endColumn": 195, + "endOffset": 1984 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6513, + "endColumn": 99, + "endOffset": 6608 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3442, + "endColumn": 99, + "endOffset": 3537 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6613, + "endColumn": 96, + "endOffset": 6705 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4440, + "endColumn": 96, + "endOffset": 4532 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6710, + "endColumn": 111, + "endOffset": 6817 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ro\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4537, + "endColumn": 111, + "endOffset": 4644 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6822, + "endColumn": 109, + "endOffset": 6927 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 109, + "endOffset": 383 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6932, + "endColumn": 114, + "endOffset": 7042 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 388, + "endColumn": 114, + "endOffset": 498 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7047, + "endColumn": 113, + "endOffset": 7156 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 113, + "endOffset": 612 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7161, + "endColumn": 108, + "endOffset": 7265 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 617, + "endColumn": 108, + "endOffset": 721 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7270, + "endColumn": 132, + "endOffset": 7398 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 726, + "endColumn": 132, + "endOffset": 854 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7403, + "endColumn": 101, + "endOffset": 7500 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 859, + "endColumn": 101, + "endOffset": 956 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7505, + "endColumn": 95, + "endOffset": 7596 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 961, + "endColumn": 95, + "endOffset": 1052 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7601, + "endColumn": 124, + "endOffset": 7721 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1057, + "endColumn": 124, + "endOffset": 1177 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7726, + "endColumn": 106, + "endOffset": 7828 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1182, + "endColumn": 106, + "endOffset": 1284 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7833, + "endColumn": 85, + "endOffset": 7914 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1289, + "endColumn": 85, + "endOffset": 1370 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7919, + "endColumn": 97, + "endOffset": 8012 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1375, + "endColumn": 97, + "endOffset": 1468 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8017, + "endColumn": 107, + "endOffset": 8120 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ro\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 327, + "endColumn": 107, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8125, + "endColumn": 96, + "endOffset": 8217 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ro\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 96, + "endOffset": 322 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8222, + "endColumn": 100, + "endOffset": 8318 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ro\\values-ro.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2243, + "endColumn": 100, + "endOffset": 2339 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8323, + "endColumn": 108, + "endOffset": 8427 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-ro\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 108, + "endOffset": 334 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-ru.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-ru.json new file mode 100644 index 0000000..8064c9b --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-ru.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-ru\\values-ru.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 114, + "endOffset": 215 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 114, + "endOffset": 339 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 220, + "endColumn": 107, + "endOffset": 323 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 344, + "endColumn": 107, + "endOffset": 447 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 328, + "endColumn": 122, + "endOffset": 446 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 452, + "endColumn": 122, + "endOffset": 570 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 451, + "endColumn": 101, + "endOffset": 548 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 575, + "endColumn": 101, + "endOffset": 672 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 553, + "endColumn": 111, + "endOffset": 660 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 677, + "endColumn": 111, + "endOffset": 784 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 665, + "endColumn": 85, + "endOffset": 746 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 789, + "endColumn": 85, + "endOffset": 870 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 751, + "endColumn": 104, + "endOffset": 851 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 875, + "endColumn": 104, + "endOffset": 975 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 856, + "endColumn": 119, + "endOffset": 971 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 980, + "endColumn": 119, + "endOffset": 1095 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 976, + "endColumn": 78, + "endOffset": 1050 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1100, + "endColumn": 78, + "endOffset": 1174 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1055, + "endColumn": 77, + "endOffset": 1128 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1179, + "endColumn": 77, + "endOffset": 1252 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1133, + "endColumn": 79, + "endOffset": 1208 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1257, + "endColumn": 79, + "endOffset": 1332 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1213, + "endColumn": 105, + "endOffset": 1314 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1337, + "endColumn": 105, + "endOffset": 1438 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1319, + "endColumn": 107, + "endOffset": 1422 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1443, + "endColumn": 107, + "endOffset": 1546 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1427, + "endColumn": 97, + "endOffset": 1520 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1551, + "endColumn": 97, + "endOffset": 1644 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1525, + "endColumn": 108, + "endOffset": 1629 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1649, + "endColumn": 108, + "endOffset": 1753 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1634, + "endColumn": 105, + "endOffset": 1735 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1758, + "endColumn": 105, + "endOffset": 1859 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1740, + "endColumn": 107, + "endOffset": 1843 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1864, + "endColumn": 107, + "endOffset": 1967 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1848, + "endColumn": 135, + "endOffset": 1979 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1972, + "endColumn": 135, + "endOffset": 2103 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1984, + "endColumn": 99, + "endOffset": 2079 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2108, + "endColumn": 99, + "endOffset": 2203 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2084, + "endColumn": 260, + "endOffset": 2340 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3471, + "endColumn": 264, + "endOffset": 3731 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2345, + "endColumn": 108, + "endOffset": 2449 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1300, + "endColumn": 108, + "endOffset": 1404 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2454, + "endColumn": 197, + "endOffset": 2647 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1098, + "endColumn": 201, + "endOffset": 1295 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2652, + "endColumn": 127, + "endOffset": 2775 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 970, + "endColumn": 127, + "endOffset": 1093 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2780, + "endColumn": 111, + "endOffset": 2887 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 858, + "endColumn": 111, + "endOffset": 965 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2892, + "endColumn": 206, + "endOffset": 3094 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 435, + "endColumn": 210, + "endOffset": 641 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3099, + "endColumn": 207, + "endOffset": 3302 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 646, + "endColumn": 211, + "endOffset": 853 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3307, + "endColumn": 130, + "endOffset": 3433 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 304, + "endColumn": 130, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3438, + "endColumn": 157, + "endOffset": 3591 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2715, + "endColumn": 157, + "endOffset": 2868 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3596, + "endColumn": 129, + "endOffset": 3721 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2585, + "endColumn": 129, + "endOffset": 2710 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3726, + "endColumn": 175, + "endOffset": 3897 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2409, + "endColumn": 175, + "endOffset": 2580 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3902, + "endColumn": 117, + "endOffset": 4015 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2291, + "endColumn": 117, + "endOffset": 2404 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4020, + "endColumn": 133, + "endOffset": 4149 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 133, + "endOffset": 299 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4154, + "endColumn": 151, + "endOffset": 4301 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4168, + "endColumn": 151, + "endOffset": 4315 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4306, + "endColumn": 142, + "endOffset": 4444 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4025, + "endColumn": 142, + "endOffset": 4163 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4449, + "endColumn": 168, + "endOffset": 4613 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3856, + "endColumn": 168, + "endOffset": 4020 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4618, + "endColumn": 119, + "endOffset": 4733 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3736, + "endColumn": 119, + "endOffset": 3851 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4738, + "endColumn": 250, + "endOffset": 4984 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-ru\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 254, + "endOffset": 420 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4989, + "endColumn": 263, + "endOffset": 5248 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2996, + "endColumn": 267, + "endOffset": 3259 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5253, + "endColumn": 122, + "endOffset": 5371 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2873, + "endColumn": 122, + "endOffset": 2991 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5376, + "endColumn": 108, + "endOffset": 5480 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3264, + "endColumn": 108, + "endOffset": 3368 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5485, + "endColumn": 197, + "endOffset": 5678 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1537, + "endColumn": 201, + "endOffset": 1734 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5683, + "endColumn": 127, + "endOffset": 5806 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1409, + "endColumn": 127, + "endOffset": 1532 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5811, + "endColumn": 225, + "endOffset": 6032 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2061, + "endColumn": 229, + "endOffset": 2286 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6037, + "endColumn": 133, + "endOffset": 6166 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1927, + "endColumn": 133, + "endOffset": 2056 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6171, + "endColumn": 187, + "endOffset": 6354 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1739, + "endColumn": 187, + "endOffset": 1922 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6359, + "endColumn": 97, + "endOffset": 6452 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3373, + "endColumn": 97, + "endOffset": 3466 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6457, + "endColumn": 89, + "endOffset": 6542 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4320, + "endColumn": 89, + "endOffset": 4405 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6547, + "endColumn": 115, + "endOffset": 6658 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ru\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4410, + "endColumn": 115, + "endOffset": 4521 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6663, + "endColumn": 114, + "endOffset": 6773 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 114, + "endOffset": 388 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6778, + "endColumn": 107, + "endOffset": 6881 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 107, + "endOffset": 496 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6886, + "endColumn": 111, + "endOffset": 6993 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 501, + "endColumn": 111, + "endOffset": 608 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6998, + "endColumn": 103, + "endOffset": 7097 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 613, + "endColumn": 103, + "endOffset": 712 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7102, + "endColumn": 112, + "endOffset": 7210 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 112, + "endOffset": 825 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7215, + "endColumn": 104, + "endOffset": 7315 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 830, + "endColumn": 104, + "endOffset": 930 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7320, + "endColumn": 103, + "endOffset": 7419 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 935, + "endColumn": 103, + "endOffset": 1034 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7424, + "endColumn": 129, + "endOffset": 7549 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1039, + "endColumn": 129, + "endOffset": 1164 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7554, + "endColumn": 110, + "endOffset": 7660 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1169, + "endColumn": 110, + "endOffset": 1275 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7665, + "endColumn": 86, + "endOffset": 7747 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1280, + "endColumn": 86, + "endOffset": 1362 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7752, + "endColumn": 96, + "endOffset": 7844 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1367, + "endColumn": 96, + "endOffset": 1459 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7849, + "endColumn": 110, + "endOffset": 7955 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ru\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 110, + "endOffset": 431 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7960, + "endColumn": 94, + "endOffset": 8050 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ru\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8055, + "endColumn": 100, + "endOffset": 8151 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ru\\values-ru.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2208, + "endColumn": 100, + "endOffset": 2304 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8156, + "endColumn": 108, + "endOffset": 8260 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-ru\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 108, + "endOffset": 334 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-si-rLK.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-si-rLK.json new file mode 100644 index 0000000..b232209 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-si-rLK.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-si-rLK\\values-si-rLK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 109, + "endOffset": 210 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 109, + "endOffset": 338 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 215, + "endColumn": 107, + "endOffset": 318 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 343, + "endColumn": 107, + "endOffset": 446 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 323, + "endColumn": 122, + "endOffset": 441 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 451, + "endColumn": 122, + "endOffset": 569 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 446, + "endColumn": 106, + "endOffset": 548 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 574, + "endColumn": 106, + "endOffset": 676 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 553, + "endColumn": 106, + "endOffset": 655 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 106, + "endOffset": 783 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 660, + "endColumn": 87, + "endOffset": 743 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 87, + "endOffset": 871 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 748, + "endColumn": 104, + "endOffset": 848 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 876, + "endColumn": 104, + "endOffset": 976 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 853, + "endColumn": 115, + "endOffset": 964 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 981, + "endColumn": 115, + "endOffset": 1092 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 969, + "endColumn": 88, + "endOffset": 1053 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1097, + "endColumn": 88, + "endOffset": 1181 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1058, + "endColumn": 86, + "endOffset": 1140 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 86, + "endOffset": 1268 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1145, + "endColumn": 83, + "endOffset": 1224 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1273, + "endColumn": 83, + "endOffset": 1352 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1229, + "endColumn": 108, + "endOffset": 1333 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1357, + "endColumn": 108, + "endOffset": 1461 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1338, + "endColumn": 104, + "endOffset": 1438 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1466, + "endColumn": 104, + "endOffset": 1566 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1443, + "endColumn": 97, + "endOffset": 1536 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1571, + "endColumn": 97, + "endOffset": 1664 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1541, + "endColumn": 109, + "endOffset": 1646 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1669, + "endColumn": 109, + "endOffset": 1774 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1651, + "endColumn": 98, + "endOffset": 1745 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1779, + "endColumn": 98, + "endOffset": 1873 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 105, + "endOffset": 1851 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1878, + "endColumn": 105, + "endOffset": 1979 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1856, + "endColumn": 120, + "endOffset": 1972 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1984, + "endColumn": 120, + "endOffset": 2100 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1977, + "endColumn": 98, + "endOffset": 2071 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2105, + "endColumn": 98, + "endOffset": 2199 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2076, + "endColumn": 236, + "endOffset": 2308 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3418, + "endColumn": 240, + "endOffset": 3654 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2313, + "endColumn": 126, + "endOffset": 2435 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1285, + "endColumn": 126, + "endOffset": 1407 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2440, + "endColumn": 185, + "endOffset": 2621 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1095, + "endColumn": 189, + "endOffset": 1280 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2626, + "endColumn": 125, + "endOffset": 2747 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 969, + "endColumn": 125, + "endOffset": 1090 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2752, + "endColumn": 126, + "endOffset": 2874 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 842, + "endColumn": 126, + "endOffset": 964 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2879, + "endColumn": 201, + "endOffset": 3076 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 424, + "endColumn": 205, + "endOffset": 625 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3081, + "endColumn": 207, + "endOffset": 3284 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 630, + "endColumn": 211, + "endOffset": 837 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3289, + "endColumn": 125, + "endOffset": 3410 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 298, + "endColumn": 125, + "endOffset": 419 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3415, + "endColumn": 173, + "endOffset": 3584 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2662, + "endColumn": 173, + "endOffset": 2831 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3589, + "endColumn": 121, + "endOffset": 3706 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2540, + "endColumn": 121, + "endOffset": 2657 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3711, + "endColumn": 156, + "endOffset": 3863 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2383, + "endColumn": 156, + "endOffset": 2535 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3868, + "endColumn": 114, + "endOffset": 3978 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2268, + "endColumn": 114, + "endOffset": 2378 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 3983, + "endColumn": 127, + "endOffset": 4106 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 127, + "endOffset": 293 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4111, + "endColumn": 171, + "endOffset": 4278 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4075, + "endColumn": 171, + "endOffset": 4242 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4283, + "endColumn": 125, + "endOffset": 4404 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3949, + "endColumn": 125, + "endOffset": 4070 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4409, + "endColumn": 164, + "endOffset": 4569 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3784, + "endColumn": 164, + "endOffset": 3944 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4574, + "endColumn": 124, + "endOffset": 4694 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3659, + "endColumn": 124, + "endOffset": 3779 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4699, + "endColumn": 229, + "endOffset": 4924 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-si-rLK\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 233, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4929, + "endColumn": 238, + "endOffset": 5163 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2956, + "endColumn": 242, + "endOffset": 3194 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5168, + "endColumn": 119, + "endOffset": 5283 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2836, + "endColumn": 119, + "endOffset": 2951 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5288, + "endColumn": 116, + "endOffset": 5400 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3199, + "endColumn": 116, + "endOffset": 3311 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5405, + "endColumn": 184, + "endOffset": 5585 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1545, + "endColumn": 188, + "endOffset": 1729 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5590, + "endColumn": 132, + "endOffset": 5718 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1412, + "endColumn": 132, + "endOffset": 1540 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5723, + "endColumn": 202, + "endOffset": 5921 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2061, + "endColumn": 206, + "endOffset": 2263 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5926, + "endColumn": 135, + "endOffset": 6057 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1925, + "endColumn": 135, + "endOffset": 2056 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6062, + "endColumn": 190, + "endOffset": 6248 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1734, + "endColumn": 190, + "endOffset": 1920 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6253, + "endColumn": 101, + "endOffset": 6350 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3316, + "endColumn": 101, + "endOffset": 3413 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6355, + "endColumn": 90, + "endOffset": 6441 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4247, + "endColumn": 90, + "endOffset": 4333 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6446, + "endColumn": 109, + "endOffset": 6551 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-si-rLK\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4338, + "endColumn": 109, + "endOffset": 4443 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6556, + "endColumn": 104, + "endOffset": 6656 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 104, + "endOffset": 382 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6661, + "endColumn": 110, + "endOffset": 6767 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 387, + "endColumn": 110, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6772, + "endColumn": 107, + "endOffset": 6875 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 107, + "endOffset": 601 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6880, + "endColumn": 107, + "endOffset": 6983 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 107, + "endOffset": 709 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 6988, + "endColumn": 127, + "endOffset": 7111 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 714, + "endColumn": 127, + "endOffset": 837 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7116, + "endColumn": 96, + "endOffset": 7208 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 842, + "endColumn": 96, + "endOffset": 934 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7213, + "endColumn": 100, + "endOffset": 7309 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 939, + "endColumn": 100, + "endOffset": 1035 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7314, + "endColumn": 120, + "endOffset": 7430 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1040, + "endColumn": 120, + "endOffset": 1156 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7435, + "endColumn": 110, + "endOffset": 7541 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1161, + "endColumn": 110, + "endOffset": 1267 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7546, + "endColumn": 86, + "endOffset": 7628 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1272, + "endColumn": 86, + "endOffset": 1354 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7633, + "endColumn": 91, + "endOffset": 7720 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1359, + "endColumn": 91, + "endOffset": 1446 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7725, + "endColumn": 106, + "endOffset": 7827 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-si-rLK\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 106, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7832, + "endColumn": 94, + "endOffset": 7922 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-si-rLK\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 7927, + "endColumn": 100, + "endOffset": 8023 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-si-rLK\\values-si-rLK.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2204, + "endColumn": 100, + "endOffset": 2300 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-sk.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-sk.json new file mode 100644 index 0000000..f8e117c --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-sk.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-sk\\values-sk.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 106, + "endOffset": 207 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 106, + "endOffset": 331 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 212, + "endColumn": 107, + "endOffset": 315 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 336, + "endColumn": 107, + "endOffset": 439 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 320, + "endColumn": 122, + "endOffset": 438 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 444, + "endColumn": 122, + "endOffset": 562 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 443, + "endColumn": 99, + "endOffset": 538 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 567, + "endColumn": 99, + "endOffset": 662 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 543, + "endColumn": 110, + "endOffset": 649 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 667, + "endColumn": 110, + "endOffset": 773 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 654, + "endColumn": 85, + "endOffset": 735 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 778, + "endColumn": 85, + "endOffset": 859 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 740, + "endColumn": 107, + "endOffset": 843 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 864, + "endColumn": 107, + "endOffset": 967 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 848, + "endColumn": 117, + "endOffset": 961 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 972, + "endColumn": 117, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 966, + "endColumn": 77, + "endOffset": 1039 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 77, + "endOffset": 1163 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1044, + "endColumn": 77, + "endOffset": 1117 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1168, + "endColumn": 77, + "endOffset": 1241 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 83, + "endOffset": 1201 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1246, + "endColumn": 83, + "endOffset": 1325 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1206, + "endColumn": 104, + "endOffset": 1306 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1330, + "endColumn": 104, + "endOffset": 1430 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1311, + "endColumn": 108, + "endOffset": 1415 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1435, + "endColumn": 108, + "endOffset": 1539 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1420, + "endColumn": 98, + "endOffset": 1514 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1544, + "endColumn": 98, + "endOffset": 1638 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1519, + "endColumn": 105, + "endOffset": 1620 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1643, + "endColumn": 105, + "endOffset": 1744 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1625, + "endColumn": 110, + "endOffset": 1731 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1749, + "endColumn": 110, + "endOffset": 1855 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1736, + "endColumn": 108, + "endOffset": 1840 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1860, + "endColumn": 108, + "endOffset": 1964 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1845, + "endColumn": 123, + "endOffset": 1964 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 123, + "endOffset": 2088 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 97, + "endOffset": 2062 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2093, + "endColumn": 97, + "endOffset": 2186 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2067, + "endColumn": 293, + "endOffset": 2356 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3527, + "endColumn": 297, + "endOffset": 3820 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2361, + "endColumn": 126, + "endOffset": 2483 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1333, + "endColumn": 126, + "endOffset": 1455 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2488, + "endColumn": 191, + "endOffset": 2675 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1137, + "endColumn": 195, + "endOffset": 1328 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2680, + "endColumn": 125, + "endOffset": 2801 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1011, + "endColumn": 125, + "endOffset": 1132 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2806, + "endColumn": 130, + "endOffset": 2932 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 880, + "endColumn": 130, + "endOffset": 1006 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2937, + "endColumn": 219, + "endOffset": 3152 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 432, + "endColumn": 223, + "endOffset": 651 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3157, + "endColumn": 219, + "endOffset": 3372 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 656, + "endColumn": 223, + "endOffset": 875 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3377, + "endColumn": 129, + "endOffset": 3502 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 302, + "endColumn": 129, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3507, + "endColumn": 166, + "endOffset": 3669 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2755, + "endColumn": 166, + "endOffset": 2917 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3674, + "endColumn": 118, + "endOffset": 3788 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2636, + "endColumn": 118, + "endOffset": 2750 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3793, + "endColumn": 165, + "endOffset": 3954 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2470, + "endColumn": 165, + "endOffset": 2631 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3959, + "endColumn": 117, + "endOffset": 4072 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2352, + "endColumn": 117, + "endOffset": 2465 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4077, + "endColumn": 131, + "endOffset": 4204 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 131, + "endOffset": 297 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4209, + "endColumn": 167, + "endOffset": 4372 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4254, + "endColumn": 167, + "endOffset": 4417 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4377, + "endColumn": 127, + "endOffset": 4500 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4126, + "endColumn": 127, + "endOffset": 4249 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4505, + "endColumn": 173, + "endOffset": 4674 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3952, + "endColumn": 173, + "endOffset": 4121 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4679, + "endColumn": 126, + "endOffset": 4801 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3825, + "endColumn": 126, + "endOffset": 3947 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4806, + "endColumn": 248, + "endOffset": 5050 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-sk\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 252, + "endOffset": 418 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5055, + "endColumn": 268, + "endOffset": 5319 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3044, + "endColumn": 272, + "endOffset": 3312 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5324, + "endColumn": 121, + "endOffset": 5441 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2922, + "endColumn": 121, + "endOffset": 3039 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5446, + "endColumn": 112, + "endOffset": 5554 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3317, + "endColumn": 112, + "endOffset": 3425 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5559, + "endColumn": 200, + "endOffset": 5755 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1592, + "endColumn": 204, + "endOffset": 1792 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5760, + "endColumn": 131, + "endOffset": 5887 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1460, + "endColumn": 131, + "endOffset": 1587 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5892, + "endColumn": 221, + "endOffset": 6109 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2126, + "endColumn": 225, + "endOffset": 2347 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6114, + "endColumn": 134, + "endOffset": 6244 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1991, + "endColumn": 134, + "endOffset": 2121 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6249, + "endColumn": 193, + "endOffset": 6438 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1797, + "endColumn": 193, + "endOffset": 1986 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6443, + "endColumn": 96, + "endOffset": 6535 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3430, + "endColumn": 96, + "endOffset": 3522 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6540, + "endColumn": 96, + "endOffset": 6632 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4422, + "endColumn": 96, + "endOffset": 4514 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6637, + "endColumn": 116, + "endOffset": 6749 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sk\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4519, + "endColumn": 116, + "endOffset": 4631 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6754, + "endColumn": 108, + "endOffset": 6858 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 108, + "endOffset": 382 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6863, + "endColumn": 123, + "endOffset": 6982 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 387, + "endColumn": 123, + "endOffset": 506 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6987, + "endColumn": 110, + "endOffset": 7093 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 511, + "endColumn": 110, + "endOffset": 617 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7098, + "endColumn": 101, + "endOffset": 7195 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 622, + "endColumn": 101, + "endOffset": 719 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7200, + "endColumn": 139, + "endOffset": 7335 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 724, + "endColumn": 139, + "endOffset": 859 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7340, + "endColumn": 100, + "endOffset": 7436 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 864, + "endColumn": 100, + "endOffset": 960 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7441, + "endColumn": 96, + "endOffset": 7533 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 965, + "endColumn": 96, + "endOffset": 1057 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7538, + "endColumn": 120, + "endOffset": 7654 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 120, + "endOffset": 1178 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7659, + "endColumn": 108, + "endOffset": 7763 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1183, + "endColumn": 108, + "endOffset": 1287 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7768, + "endColumn": 85, + "endOffset": 7849 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1292, + "endColumn": 85, + "endOffset": 1373 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7854, + "endColumn": 96, + "endOffset": 7946 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1378, + "endColumn": 96, + "endOffset": 1470 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7951, + "endColumn": 110, + "endOffset": 8057 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-sk\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 332, + "endColumn": 110, + "endOffset": 438 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8062, + "endColumn": 101, + "endOffset": 8159 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-sk\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 101, + "endOffset": 327 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8164, + "endColumn": 100, + "endOffset": 8260 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sk\\values-sk.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2191, + "endColumn": 100, + "endOffset": 2287 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8265, + "endColumn": 105, + "endOffset": 8366 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-sk\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 105, + "endOffset": 331 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-sl.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-sl.json new file mode 100644 index 0000000..b8a4052 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-sl.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-sl\\values-sl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 106, + "endOffset": 207 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 106, + "endOffset": 331 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 212, + "endColumn": 107, + "endOffset": 315 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 336, + "endColumn": 107, + "endOffset": 439 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 320, + "endColumn": 122, + "endOffset": 438 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 444, + "endColumn": 122, + "endOffset": 562 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 443, + "endColumn": 106, + "endOffset": 545 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 567, + "endColumn": 106, + "endOffset": 669 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 550, + "endColumn": 107, + "endOffset": 653 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 674, + "endColumn": 107, + "endOffset": 777 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 658, + "endColumn": 86, + "endOffset": 740 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 86, + "endOffset": 864 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 745, + "endColumn": 102, + "endOffset": 843 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 869, + "endColumn": 102, + "endOffset": 967 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 848, + "endColumn": 118, + "endOffset": 962 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 972, + "endColumn": 118, + "endOffset": 1086 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 967, + "endColumn": 84, + "endOffset": 1047 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1091, + "endColumn": 84, + "endOffset": 1171 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1052, + "endColumn": 83, + "endOffset": 1131 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1176, + "endColumn": 83, + "endOffset": 1255 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1136, + "endColumn": 83, + "endOffset": 1215 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 83, + "endOffset": 1339 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1220, + "endColumn": 107, + "endOffset": 1323 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1344, + "endColumn": 107, + "endOffset": 1447 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 108, + "endOffset": 1432 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1452, + "endColumn": 108, + "endOffset": 1556 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 99, + "endOffset": 1532 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1561, + "endColumn": 99, + "endOffset": 1656 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1537, + "endColumn": 112, + "endOffset": 1645 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1661, + "endColumn": 112, + "endOffset": 1769 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1650, + "endColumn": 106, + "endOffset": 1752 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1774, + "endColumn": 106, + "endOffset": 1876 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1757, + "endColumn": 103, + "endOffset": 1856 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1881, + "endColumn": 103, + "endOffset": 1980 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1861, + "endColumn": 116, + "endOffset": 1973 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1985, + "endColumn": 116, + "endOffset": 2097 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1978, + "endColumn": 96, + "endOffset": 2070 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2102, + "endColumn": 96, + "endOffset": 2194 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2075, + "endColumn": 260, + "endOffset": 2331 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3508, + "endColumn": 264, + "endOffset": 3768 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2336, + "endColumn": 128, + "endOffset": 2460 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 128, + "endOffset": 1470 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2465, + "endColumn": 196, + "endOffset": 2657 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1145, + "endColumn": 200, + "endOffset": 1341 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2662, + "endColumn": 130, + "endOffset": 2788 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 130, + "endOffset": 1140 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2793, + "endColumn": 129, + "endOffset": 2918 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 884, + "endColumn": 129, + "endOffset": 1009 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2923, + "endColumn": 212, + "endOffset": 3131 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 436, + "endColumn": 216, + "endOffset": 648 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3136, + "endColumn": 226, + "endOffset": 3358 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 653, + "endColumn": 230, + "endOffset": 879 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3363, + "endColumn": 131, + "endOffset": 3490 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 304, + "endColumn": 131, + "endOffset": 431 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3495, + "endColumn": 160, + "endOffset": 3651 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2762, + "endColumn": 160, + "endOffset": 2918 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3656, + "endColumn": 121, + "endOffset": 3773 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2640, + "endColumn": 121, + "endOffset": 2757 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3778, + "endColumn": 174, + "endOffset": 3948 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2465, + "endColumn": 174, + "endOffset": 2635 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3953, + "endColumn": 120, + "endOffset": 4069 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2344, + "endColumn": 120, + "endOffset": 2460 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4074, + "endColumn": 133, + "endOffset": 4203 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 133, + "endOffset": 299 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4208, + "endColumn": 164, + "endOffset": 4368 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4183, + "endColumn": 164, + "endOffset": 4343 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4373, + "endColumn": 124, + "endOffset": 4493 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4058, + "endColumn": 124, + "endOffset": 4178 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4498, + "endColumn": 159, + "endOffset": 4653 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3898, + "endColumn": 159, + "endOffset": 4053 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4658, + "endColumn": 124, + "endOffset": 4778 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3773, + "endColumn": 124, + "endOffset": 3893 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4783, + "endColumn": 245, + "endOffset": 5024 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-sl\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 249, + "endOffset": 415 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5029, + "endColumn": 248, + "endOffset": 5273 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3047, + "endColumn": 252, + "endOffset": 3295 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5278, + "endColumn": 123, + "endOffset": 5397 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2923, + "endColumn": 123, + "endOffset": 3042 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5402, + "endColumn": 108, + "endOffset": 5506 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3300, + "endColumn": 108, + "endOffset": 3404 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5511, + "endColumn": 197, + "endOffset": 5704 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1607, + "endColumn": 201, + "endOffset": 1804 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5709, + "endColumn": 131, + "endOffset": 5836 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 131, + "endOffset": 1602 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5841, + "endColumn": 210, + "endOffset": 6047 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2129, + "endColumn": 214, + "endOffset": 2339 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6052, + "endColumn": 137, + "endOffset": 6185 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1991, + "endColumn": 137, + "endOffset": 2124 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6190, + "endColumn": 181, + "endOffset": 6367 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1809, + "endColumn": 181, + "endOffset": 1986 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6372, + "endColumn": 98, + "endOffset": 6466 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3409, + "endColumn": 98, + "endOffset": 3503 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6471, + "endColumn": 91, + "endOffset": 6558 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4348, + "endColumn": 91, + "endOffset": 4435 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6563, + "endColumn": 113, + "endOffset": 6672 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sl\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4440, + "endColumn": 113, + "endOffset": 4549 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6677, + "endColumn": 111, + "endOffset": 6784 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 111, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6789, + "endColumn": 107, + "endOffset": 6892 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 107, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6897, + "endColumn": 108, + "endOffset": 7001 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 108, + "endOffset": 602 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7006, + "endColumn": 110, + "endOffset": 7112 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 607, + "endColumn": 110, + "endOffset": 713 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7117, + "endColumn": 123, + "endOffset": 7236 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 718, + "endColumn": 123, + "endOffset": 837 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7241, + "endColumn": 98, + "endOffset": 7335 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 842, + "endColumn": 98, + "endOffset": 936 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7340, + "endColumn": 98, + "endOffset": 7434 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 941, + "endColumn": 98, + "endOffset": 1035 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7439, + "endColumn": 119, + "endOffset": 7554 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1040, + "endColumn": 119, + "endOffset": 1155 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7559, + "endColumn": 107, + "endOffset": 7662 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1160, + "endColumn": 107, + "endOffset": 1263 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7667, + "endColumn": 85, + "endOffset": 7748 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1268, + "endColumn": 85, + "endOffset": 1349 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7753, + "endColumn": 93, + "endOffset": 7842 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1354, + "endColumn": 93, + "endOffset": 1443 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7847, + "endColumn": 111, + "endOffset": 7954 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-sl\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 327, + "endColumn": 111, + "endOffset": 434 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7959, + "endColumn": 96, + "endOffset": 8051 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-sl\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 96, + "endOffset": 322 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8056, + "endColumn": 100, + "endOffset": 8152 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sl\\values-sl.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2199, + "endColumn": 100, + "endOffset": 2295 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8157, + "endColumn": 104, + "endOffset": 8257 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-sl\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 104, + "endOffset": 330 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-sq-rAL.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-sq-rAL.json new file mode 100644 index 0000000..51f304e --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-sq-rAL.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-sq-rAL\\values-sq-rAL.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 113, + "endOffset": 214 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 113, + "endOffset": 342 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 219, + "endColumn": 107, + "endOffset": 322 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 347, + "endColumn": 107, + "endOffset": 450 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 327, + "endColumn": 122, + "endOffset": 445 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 455, + "endColumn": 122, + "endOffset": 573 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 450, + "endColumn": 99, + "endOffset": 545 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 99, + "endOffset": 673 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 550, + "endColumn": 111, + "endOffset": 657 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 678, + "endColumn": 111, + "endOffset": 785 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 662, + "endColumn": 86, + "endOffset": 744 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 790, + "endColumn": 86, + "endOffset": 872 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 749, + "endColumn": 109, + "endOffset": 854 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 877, + "endColumn": 109, + "endOffset": 982 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 859, + "endColumn": 122, + "endOffset": 977 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 987, + "endColumn": 122, + "endOffset": 1105 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 982, + "endColumn": 80, + "endOffset": 1058 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1110, + "endColumn": 80, + "endOffset": 1186 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1063, + "endColumn": 78, + "endOffset": 1137 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1191, + "endColumn": 78, + "endOffset": 1265 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1142, + "endColumn": 82, + "endOffset": 1220 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1270, + "endColumn": 82, + "endOffset": 1348 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1225, + "endColumn": 105, + "endOffset": 1326 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1353, + "endColumn": 105, + "endOffset": 1454 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1331, + "endColumn": 104, + "endOffset": 1431 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1459, + "endColumn": 104, + "endOffset": 1559 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1436, + "endColumn": 97, + "endOffset": 1529 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1564, + "endColumn": 97, + "endOffset": 1657 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1534, + "endColumn": 105, + "endOffset": 1635 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1662, + "endColumn": 105, + "endOffset": 1763 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1640, + "endColumn": 102, + "endOffset": 1738 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1768, + "endColumn": 102, + "endOffset": 1866 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1743, + "endColumn": 115, + "endOffset": 1854 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1871, + "endColumn": 115, + "endOffset": 1982 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1859, + "endColumn": 130, + "endOffset": 1985 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1987, + "endColumn": 130, + "endOffset": 2113 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1990, + "endColumn": 98, + "endOffset": 2084 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2118, + "endColumn": 98, + "endOffset": 2212 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2089, + "endColumn": 267, + "endOffset": 2352 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3717, + "endColumn": 271, + "endOffset": 3984 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2357, + "endColumn": 139, + "endOffset": 2492 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1412, + "endColumn": 139, + "endOffset": 1547 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2497, + "endColumn": 204, + "endOffset": 2697 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1203, + "endColumn": 208, + "endOffset": 1407 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2702, + "endColumn": 138, + "endOffset": 2836 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1064, + "endColumn": 138, + "endOffset": 1198 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2841, + "endColumn": 136, + "endOffset": 2973 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 927, + "endColumn": 136, + "endOffset": 1059 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2978, + "endColumn": 233, + "endOffset": 3207 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 452, + "endColumn": 237, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3212, + "endColumn": 232, + "endOffset": 3440 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 690, + "endColumn": 236, + "endOffset": 922 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3445, + "endColumn": 135, + "endOffset": 3576 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 316, + "endColumn": 135, + "endOffset": 447 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3581, + "endColumn": 186, + "endOffset": 3763 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2928, + "endColumn": 186, + "endOffset": 3110 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3768, + "endColumn": 125, + "endOffset": 3889 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2802, + "endColumn": 125, + "endOffset": 2923 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3894, + "endColumn": 186, + "endOffset": 4076 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2615, + "endColumn": 186, + "endOffset": 2797 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4081, + "endColumn": 118, + "endOffset": 4195 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2496, + "endColumn": 118, + "endOffset": 2610 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4200, + "endColumn": 145, + "endOffset": 4341 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 145, + "endOffset": 311 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4346, + "endColumn": 166, + "endOffset": 4508 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4431, + "endColumn": 166, + "endOffset": 4593 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4513, + "endColumn": 128, + "endOffset": 4637 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4302, + "endColumn": 128, + "endOffset": 4426 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4642, + "endColumn": 184, + "endOffset": 4822 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4117, + "endColumn": 184, + "endOffset": 4297 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4827, + "endColumn": 127, + "endOffset": 4950 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3989, + "endColumn": 127, + "endOffset": 4112 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4955, + "endColumn": 239, + "endOffset": 5190 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-sq-rAL\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 243, + "endOffset": 409 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5195, + "endColumn": 259, + "endOffset": 5450 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3249, + "endColumn": 263, + "endOffset": 3508 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5455, + "endColumn": 133, + "endOffset": 5584 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 3115, + "endColumn": 133, + "endOffset": 3244 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5589, + "endColumn": 109, + "endOffset": 5694 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3513, + "endColumn": 109, + "endOffset": 3618 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5699, + "endColumn": 205, + "endOffset": 5900 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1692, + "endColumn": 209, + "endOffset": 1897 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5905, + "endColumn": 139, + "endOffset": 6040 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1552, + "endColumn": 139, + "endOffset": 1687 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6045, + "endColumn": 227, + "endOffset": 6268 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2264, + "endColumn": 231, + "endOffset": 2491 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6273, + "endColumn": 147, + "endOffset": 6416 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2116, + "endColumn": 147, + "endOffset": 2259 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6421, + "endColumn": 213, + "endOffset": 6630 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1902, + "endColumn": 213, + "endOffset": 2111 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6635, + "endColumn": 93, + "endOffset": 6724 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3623, + "endColumn": 93, + "endOffset": 3712 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6729, + "endColumn": 96, + "endOffset": 6821 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4598, + "endColumn": 96, + "endOffset": 4690 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6826, + "endColumn": 111, + "endOffset": 6933 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sq-rAL\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4695, + "endColumn": 111, + "endOffset": 4802 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6938, + "endColumn": 109, + "endOffset": 7043 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 109, + "endOffset": 387 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 7048, + "endColumn": 113, + "endOffset": 7157 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 113, + "endOffset": 501 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7162, + "endColumn": 104, + "endOffset": 7262 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 506, + "endColumn": 104, + "endOffset": 606 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7267, + "endColumn": 102, + "endOffset": 7365 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 611, + "endColumn": 102, + "endOffset": 709 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7370, + "endColumn": 129, + "endOffset": 7495 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 714, + "endColumn": 129, + "endOffset": 839 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7500, + "endColumn": 95, + "endOffset": 7591 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 844, + "endColumn": 95, + "endOffset": 935 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7596, + "endColumn": 93, + "endOffset": 7685 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 940, + "endColumn": 93, + "endOffset": 1029 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7690, + "endColumn": 122, + "endOffset": 7808 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1034, + "endColumn": 122, + "endOffset": 1152 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7813, + "endColumn": 107, + "endOffset": 7916 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1157, + "endColumn": 107, + "endOffset": 1260 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7921, + "endColumn": 86, + "endOffset": 8003 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1265, + "endColumn": 86, + "endOffset": 1347 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 8008, + "endColumn": 94, + "endOffset": 8098 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1352, + "endColumn": 94, + "endOffset": 1442 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8103, + "endColumn": 105, + "endOffset": 8204 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-sq-rAL\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 105, + "endOffset": 426 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8209, + "endColumn": 94, + "endOffset": 8299 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-sq-rAL\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8304, + "endColumn": 100, + "endOffset": 8400 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sq-rAL\\values-sq-rAL.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2217, + "endColumn": 100, + "endOffset": 2313 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-sr.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-sr.json new file mode 100644 index 0000000..608c768 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-sr.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-sr\\values-sr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 108, + "endOffset": 209 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 108, + "endOffset": 333 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 214, + "endColumn": 107, + "endOffset": 317 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 338, + "endColumn": 107, + "endOffset": 441 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 322, + "endColumn": 122, + "endOffset": 440 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 446, + "endColumn": 122, + "endOffset": 564 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 445, + "endColumn": 102, + "endOffset": 543 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 569, + "endColumn": 102, + "endOffset": 667 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 548, + "endColumn": 105, + "endOffset": 649 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 672, + "endColumn": 105, + "endOffset": 773 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 654, + "endColumn": 85, + "endOffset": 735 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 778, + "endColumn": 85, + "endOffset": 859 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 740, + "endColumn": 103, + "endOffset": 839 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 864, + "endColumn": 103, + "endOffset": 963 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 844, + "endColumn": 117, + "endOffset": 957 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 968, + "endColumn": 117, + "endOffset": 1081 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 962, + "endColumn": 80, + "endOffset": 1038 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1086, + "endColumn": 80, + "endOffset": 1162 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1043, + "endColumn": 79, + "endOffset": 1118 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1167, + "endColumn": 79, + "endOffset": 1242 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1123, + "endColumn": 87, + "endOffset": 1206 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1247, + "endColumn": 87, + "endOffset": 1330 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1211, + "endColumn": 104, + "endOffset": 1311 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1335, + "endColumn": 104, + "endOffset": 1435 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1316, + "endColumn": 107, + "endOffset": 1419 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1440, + "endColumn": 107, + "endOffset": 1543 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1424, + "endColumn": 100, + "endOffset": 1520 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1548, + "endColumn": 100, + "endOffset": 1644 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1525, + "endColumn": 103, + "endOffset": 1624 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1649, + "endColumn": 103, + "endOffset": 1748 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1629, + "endColumn": 107, + "endOffset": 1732 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1753, + "endColumn": 107, + "endOffset": 1856 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1737, + "endColumn": 100, + "endOffset": 1833 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1861, + "endColumn": 100, + "endOffset": 1957 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1838, + "endColumn": 127, + "endOffset": 1961 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1962, + "endColumn": 127, + "endOffset": 2085 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1966, + "endColumn": 96, + "endOffset": 2058 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2090, + "endColumn": 96, + "endOffset": 2182 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2063, + "endColumn": 263, + "endOffset": 2322 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3466, + "endColumn": 267, + "endOffset": 3729 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2327, + "endColumn": 126, + "endOffset": 2449 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1327, + "endColumn": 126, + "endOffset": 1449 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2454, + "endColumn": 187, + "endOffset": 2637 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1135, + "endColumn": 191, + "endOffset": 1322 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2642, + "endColumn": 127, + "endOffset": 2765 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1007, + "endColumn": 127, + "endOffset": 1130 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2770, + "endColumn": 127, + "endOffset": 2893 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 879, + "endColumn": 127, + "endOffset": 1002 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2898, + "endColumn": 219, + "endOffset": 3113 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 431, + "endColumn": 223, + "endOffset": 650 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3118, + "endColumn": 219, + "endOffset": 3333 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 655, + "endColumn": 223, + "endOffset": 874 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3338, + "endColumn": 128, + "endOffset": 3462 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 302, + "endColumn": 128, + "endOffset": 426 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3467, + "endColumn": 177, + "endOffset": 3640 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2717, + "endColumn": 177, + "endOffset": 2890 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3645, + "endColumn": 119, + "endOffset": 3760 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2597, + "endColumn": 119, + "endOffset": 2712 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3765, + "endColumn": 179, + "endOffset": 3940 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2417, + "endColumn": 179, + "endOffset": 2592 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3945, + "endColumn": 121, + "endOffset": 4062 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2295, + "endColumn": 121, + "endOffset": 2412 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4067, + "endColumn": 131, + "endOffset": 4194 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 131, + "endOffset": 297 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4199, + "endColumn": 167, + "endOffset": 4362 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4177, + "endColumn": 167, + "endOffset": 4340 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4367, + "endColumn": 128, + "endOffset": 4491 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4048, + "endColumn": 128, + "endOffset": 4172 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4496, + "endColumn": 181, + "endOffset": 4673 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3866, + "endColumn": 181, + "endOffset": 4043 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4678, + "endColumn": 131, + "endOffset": 4805 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3734, + "endColumn": 131, + "endOffset": 3861 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4810, + "endColumn": 246, + "endOffset": 5052 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-sr\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 250, + "endOffset": 416 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5057, + "endColumn": 238, + "endOffset": 5291 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3017, + "endColumn": 242, + "endOffset": 3255 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5296, + "endColumn": 121, + "endOffset": 5413 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2895, + "endColumn": 121, + "endOffset": 3012 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5418, + "endColumn": 108, + "endOffset": 5522 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3260, + "endColumn": 108, + "endOffset": 3364 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5527, + "endColumn": 190, + "endOffset": 5713 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1583, + "endColumn": 194, + "endOffset": 1773 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5718, + "endColumn": 128, + "endOffset": 5842 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1454, + "endColumn": 128, + "endOffset": 1578 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5847, + "endColumn": 207, + "endOffset": 6050 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2083, + "endColumn": 211, + "endOffset": 2290 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6055, + "endColumn": 132, + "endOffset": 6183 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1950, + "endColumn": 132, + "endOffset": 2078 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6188, + "endColumn": 171, + "endOffset": 6355 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1778, + "endColumn": 171, + "endOffset": 1945 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6360, + "endColumn": 96, + "endOffset": 6452 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3369, + "endColumn": 96, + "endOffset": 3461 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6457, + "endColumn": 94, + "endOffset": 6547 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4345, + "endColumn": 94, + "endOffset": 4435 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6552, + "endColumn": 109, + "endOffset": 6657 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sr\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4440, + "endColumn": 109, + "endOffset": 4545 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6662, + "endColumn": 108, + "endOffset": 6766 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 108, + "endOffset": 382 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6771, + "endColumn": 112, + "endOffset": 6879 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 387, + "endColumn": 112, + "endOffset": 495 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6884, + "endColumn": 107, + "endOffset": 6987 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 500, + "endColumn": 107, + "endOffset": 603 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6992, + "endColumn": 106, + "endOffset": 7094 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 608, + "endColumn": 106, + "endOffset": 710 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7099, + "endColumn": 135, + "endOffset": 7230 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 715, + "endColumn": 135, + "endOffset": 846 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7235, + "endColumn": 98, + "endOffset": 7329 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 851, + "endColumn": 98, + "endOffset": 945 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7334, + "endColumn": 94, + "endOffset": 7424 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 950, + "endColumn": 94, + "endOffset": 1040 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7429, + "endColumn": 121, + "endOffset": 7546 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1045, + "endColumn": 121, + "endOffset": 1162 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7551, + "endColumn": 109, + "endOffset": 7656 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1167, + "endColumn": 109, + "endOffset": 1272 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7661, + "endColumn": 85, + "endOffset": 7742 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1277, + "endColumn": 85, + "endOffset": 1358 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7747, + "endColumn": 93, + "endOffset": 7836 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1363, + "endColumn": 93, + "endOffset": 1452 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7841, + "endColumn": 106, + "endOffset": 7943 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-sr\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 330, + "endColumn": 106, + "endOffset": 432 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7948, + "endColumn": 99, + "endOffset": 8043 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-sr\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 99, + "endOffset": 325 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8048, + "endColumn": 100, + "endOffset": 8144 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sr\\values-sr.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2187, + "endColumn": 100, + "endOffset": 2283 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8149, + "endColumn": 109, + "endOffset": 8254 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-sr\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 109, + "endOffset": 335 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-sv.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-sv.json new file mode 100644 index 0000000..1b44cf6 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-sv.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-sv\\values-sv.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 105, + "endOffset": 206 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 105, + "endOffset": 330 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 211, + "endColumn": 107, + "endOffset": 314 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 335, + "endColumn": 107, + "endOffset": 438 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 319, + "endColumn": 122, + "endOffset": 437 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 443, + "endColumn": 122, + "endOffset": 561 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 442, + "endColumn": 102, + "endOffset": 540 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 566, + "endColumn": 102, + "endOffset": 664 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 545, + "endColumn": 110, + "endOffset": 651 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 669, + "endColumn": 110, + "endOffset": 775 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 656, + "endColumn": 84, + "endOffset": 736 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 780, + "endColumn": 84, + "endOffset": 860 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 741, + "endColumn": 101, + "endOffset": 838 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 865, + "endColumn": 101, + "endOffset": 962 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 843, + "endColumn": 112, + "endOffset": 951 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 967, + "endColumn": 112, + "endOffset": 1075 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 956, + "endColumn": 75, + "endOffset": 1027 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1080, + "endColumn": 75, + "endOffset": 1151 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1032, + "endColumn": 75, + "endOffset": 1103 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 75, + "endOffset": 1227 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1108, + "endColumn": 79, + "endOffset": 1183 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1232, + "endColumn": 79, + "endOffset": 1307 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1188, + "endColumn": 105, + "endOffset": 1289 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1312, + "endColumn": 105, + "endOffset": 1413 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1294, + "endColumn": 99, + "endOffset": 1389 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1418, + "endColumn": 99, + "endOffset": 1513 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1394, + "endColumn": 95, + "endOffset": 1485 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1518, + "endColumn": 95, + "endOffset": 1609 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1490, + "endColumn": 104, + "endOffset": 1590 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1614, + "endColumn": 104, + "endOffset": 1714 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1595, + "endColumn": 101, + "endOffset": 1692 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1719, + "endColumn": 101, + "endOffset": 1816 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1697, + "endColumn": 101, + "endOffset": 1794 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1821, + "endColumn": 101, + "endOffset": 1918 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1799, + "endColumn": 116, + "endOffset": 1911 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1923, + "endColumn": 116, + "endOffset": 2035 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1916, + "endColumn": 101, + "endOffset": 2013 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2040, + "endColumn": 101, + "endOffset": 2137 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2018, + "endColumn": 269, + "endOffset": 2283 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3490, + "endColumn": 273, + "endOffset": 3759 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2288, + "endColumn": 129, + "endOffset": 2413 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1316, + "endColumn": 129, + "endOffset": 1441 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2418, + "endColumn": 188, + "endOffset": 2602 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1123, + "endColumn": 192, + "endOffset": 1311 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2607, + "endColumn": 128, + "endOffset": 2731 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 994, + "endColumn": 128, + "endOffset": 1118 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2736, + "endColumn": 127, + "endOffset": 2859 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 866, + "endColumn": 127, + "endOffset": 989 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2864, + "endColumn": 210, + "endOffset": 3070 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 431, + "endColumn": 214, + "endOffset": 641 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3075, + "endColumn": 215, + "endOffset": 3286 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 646, + "endColumn": 219, + "endOffset": 861 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3291, + "endColumn": 126, + "endOffset": 3413 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 304, + "endColumn": 126, + "endOffset": 426 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3418, + "endColumn": 178, + "endOffset": 3592 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2733, + "endColumn": 178, + "endOffset": 2907 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3597, + "endColumn": 119, + "endOffset": 3712 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2613, + "endColumn": 119, + "endOffset": 2728 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3717, + "endColumn": 183, + "endOffset": 3896 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2429, + "endColumn": 183, + "endOffset": 2608 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3901, + "endColumn": 117, + "endOffset": 4014 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2311, + "endColumn": 117, + "endOffset": 2424 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4019, + "endColumn": 133, + "endOffset": 4148 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 133, + "endOffset": 299 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4153, + "endColumn": 168, + "endOffset": 4317 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4204, + "endColumn": 168, + "endOffset": 4368 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4322, + "endColumn": 127, + "endOffset": 4445 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4076, + "endColumn": 127, + "endOffset": 4199 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4450, + "endColumn": 177, + "endOffset": 4623 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3898, + "endColumn": 177, + "endOffset": 4071 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4628, + "endColumn": 133, + "endOffset": 4757 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3764, + "endColumn": 133, + "endOffset": 3893 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4762, + "endColumn": 219, + "endOffset": 4977 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-sv\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 223, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4982, + "endColumn": 244, + "endOffset": 5222 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3036, + "endColumn": 248, + "endOffset": 3280 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5227, + "endColumn": 123, + "endOffset": 5346 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2912, + "endColumn": 123, + "endOffset": 3031 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5351, + "endColumn": 109, + "endOffset": 5456 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3285, + "endColumn": 109, + "endOffset": 3390 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5461, + "endColumn": 194, + "endOffset": 5651 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1576, + "endColumn": 198, + "endOffset": 1770 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5656, + "endColumn": 129, + "endOffset": 5781 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1446, + "endColumn": 129, + "endOffset": 1571 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5786, + "endColumn": 212, + "endOffset": 5994 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2094, + "endColumn": 216, + "endOffset": 2306 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5999, + "endColumn": 132, + "endOffset": 6127 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1961, + "endColumn": 132, + "endOffset": 2089 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6132, + "endColumn": 185, + "endOffset": 6313 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1775, + "endColumn": 185, + "endOffset": 1956 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6318, + "endColumn": 94, + "endOffset": 6408 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3395, + "endColumn": 94, + "endOffset": 3485 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6413, + "endColumn": 92, + "endOffset": 6501 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4373, + "endColumn": 92, + "endOffset": 4461 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6506, + "endColumn": 108, + "endOffset": 6610 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sv\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4466, + "endColumn": 108, + "endOffset": 4570 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6615, + "endColumn": 105, + "endOffset": 6716 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 105, + "endOffset": 379 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6721, + "endColumn": 114, + "endOffset": 6831 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 384, + "endColumn": 114, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6836, + "endColumn": 104, + "endOffset": 6936 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 104, + "endOffset": 599 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6941, + "endColumn": 105, + "endOffset": 7042 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 105, + "endOffset": 705 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7047, + "endColumn": 129, + "endOffset": 7172 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 710, + "endColumn": 129, + "endOffset": 835 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7177, + "endColumn": 95, + "endOffset": 7268 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 840, + "endColumn": 95, + "endOffset": 931 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7273, + "endColumn": 98, + "endOffset": 7367 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 936, + "endColumn": 98, + "endOffset": 1030 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7372, + "endColumn": 134, + "endOffset": 7502 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1035, + "endColumn": 134, + "endOffset": 1165 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7507, + "endColumn": 100, + "endOffset": 7603 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1170, + "endColumn": 100, + "endOffset": 1266 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7608, + "endColumn": 85, + "endOffset": 7689 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1271, + "endColumn": 85, + "endOffset": 1352 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7694, + "endColumn": 93, + "endOffset": 7783 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1357, + "endColumn": 93, + "endOffset": 1446 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7788, + "endColumn": 103, + "endOffset": 7887 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-sv\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 324, + "endColumn": 103, + "endOffset": 423 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7892, + "endColumn": 93, + "endOffset": 7981 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-sv\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 93, + "endOffset": 319 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 7986, + "endColumn": 100, + "endOffset": 8082 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sv\\values-sv.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2142, + "endColumn": 100, + "endOffset": 2238 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8087, + "endColumn": 103, + "endOffset": 8186 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-sv\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 103, + "endOffset": 329 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-sw.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-sw.json new file mode 100644 index 0000000..750b932 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-sw.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-sw\\values-sw.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 102, + "endOffset": 203 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 102, + "endOffset": 327 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 208, + "endColumn": 107, + "endOffset": 311 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 332, + "endColumn": 107, + "endOffset": 435 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 316, + "endColumn": 122, + "endOffset": 434 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 440, + "endColumn": 122, + "endOffset": 558 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 439, + "endColumn": 97, + "endOffset": 532 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 563, + "endColumn": 97, + "endOffset": 656 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 537, + "endColumn": 107, + "endOffset": 640 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 661, + "endColumn": 107, + "endOffset": 764 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 645, + "endColumn": 89, + "endOffset": 730 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 769, + "endColumn": 89, + "endOffset": 854 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 735, + "endColumn": 104, + "endOffset": 835 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 859, + "endColumn": 104, + "endOffset": 959 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 840, + "endColumn": 116, + "endOffset": 952 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 964, + "endColumn": 116, + "endOffset": 1076 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 957, + "endColumn": 81, + "endOffset": 1034 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1081, + "endColumn": 81, + "endOffset": 1158 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1039, + "endColumn": 82, + "endOffset": 1117 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 82, + "endOffset": 1241 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 81, + "endOffset": 1199 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1246, + "endColumn": 81, + "endOffset": 1323 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1204, + "endColumn": 100, + "endOffset": 1300 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 100, + "endOffset": 1424 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1305, + "endColumn": 108, + "endOffset": 1409 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1429, + "endColumn": 108, + "endOffset": 1533 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1414, + "endColumn": 98, + "endOffset": 1508 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1538, + "endColumn": 98, + "endOffset": 1632 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1513, + "endColumn": 106, + "endOffset": 1615 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1637, + "endColumn": 106, + "endOffset": 1739 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1620, + "endColumn": 108, + "endOffset": 1724 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1744, + "endColumn": 108, + "endOffset": 1848 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1729, + "endColumn": 104, + "endOffset": 1829 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1853, + "endColumn": 104, + "endOffset": 1953 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1834, + "endColumn": 118, + "endOffset": 1948 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1958, + "endColumn": 118, + "endOffset": 2072 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1953, + "endColumn": 96, + "endOffset": 2045 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2077, + "endColumn": 96, + "endOffset": 2169 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2050, + "endColumn": 277, + "endOffset": 2323 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3561, + "endColumn": 281, + "endOffset": 3838 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2328, + "endColumn": 127, + "endOffset": 2451 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1355, + "endColumn": 127, + "endOffset": 1478 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2456, + "endColumn": 187, + "endOffset": 2639 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 191, + "endOffset": 1350 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2644, + "endColumn": 126, + "endOffset": 2766 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1036, + "endColumn": 126, + "endOffset": 1158 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2771, + "endColumn": 127, + "endOffset": 2894 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 908, + "endColumn": 127, + "endOffset": 1031 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2899, + "endColumn": 225, + "endOffset": 3120 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 437, + "endColumn": 229, + "endOffset": 662 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3125, + "endColumn": 236, + "endOffset": 3357 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 667, + "endColumn": 240, + "endOffset": 903 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3362, + "endColumn": 126, + "endOffset": 3484 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 310, + "endColumn": 126, + "endOffset": 432 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3489, + "endColumn": 188, + "endOffset": 3673 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2779, + "endColumn": 188, + "endOffset": 2963 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3678, + "endColumn": 125, + "endOffset": 3799 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2653, + "endColumn": 125, + "endOffset": 2774 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3804, + "endColumn": 182, + "endOffset": 3982 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2470, + "endColumn": 182, + "endOffset": 2648 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3987, + "endColumn": 125, + "endOffset": 4108 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2344, + "endColumn": 125, + "endOffset": 2465 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4113, + "endColumn": 139, + "endOffset": 4248 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 139, + "endOffset": 305 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4253, + "endColumn": 171, + "endOffset": 4420 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4310, + "endColumn": 171, + "endOffset": 4477 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4425, + "endColumn": 136, + "endOffset": 4557 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4173, + "endColumn": 136, + "endOffset": 4305 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4562, + "endColumn": 188, + "endOffset": 4746 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3984, + "endColumn": 188, + "endOffset": 4168 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4751, + "endColumn": 140, + "endOffset": 4887 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3843, + "endColumn": 140, + "endOffset": 3979 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4892, + "endColumn": 252, + "endOffset": 5140 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-sw\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 256, + "endOffset": 422 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5145, + "endColumn": 258, + "endOffset": 5399 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3093, + "endColumn": 262, + "endOffset": 3351 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5404, + "endColumn": 124, + "endOffset": 5524 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2968, + "endColumn": 124, + "endOffset": 3088 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5529, + "endColumn": 107, + "endOffset": 5632 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3356, + "endColumn": 107, + "endOffset": 3459 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5637, + "endColumn": 189, + "endOffset": 5822 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1612, + "endColumn": 193, + "endOffset": 1801 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5827, + "endColumn": 128, + "endOffset": 5951 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1483, + "endColumn": 128, + "endOffset": 1607 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5956, + "endColumn": 208, + "endOffset": 6160 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2131, + "endColumn": 212, + "endOffset": 2339 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6165, + "endColumn": 135, + "endOffset": 6296 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1995, + "endColumn": 135, + "endOffset": 2126 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6301, + "endColumn": 188, + "endOffset": 6485 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1806, + "endColumn": 188, + "endOffset": 1990 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6490, + "endColumn": 96, + "endOffset": 6582 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3464, + "endColumn": 96, + "endOffset": 3556 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6587, + "endColumn": 104, + "endOffset": 6687 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4482, + "endColumn": 104, + "endOffset": 4582 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6692, + "endColumn": 125, + "endOffset": 6813 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-sw\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4587, + "endColumn": 125, + "endOffset": 4708 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6818, + "endColumn": 104, + "endOffset": 6918 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 104, + "endOffset": 378 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6923, + "endColumn": 109, + "endOffset": 7028 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 383, + "endColumn": 109, + "endOffset": 488 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7033, + "endColumn": 109, + "endOffset": 7138 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 493, + "endColumn": 109, + "endOffset": 598 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7143, + "endColumn": 104, + "endOffset": 7243 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 603, + "endColumn": 104, + "endOffset": 703 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7248, + "endColumn": 131, + "endOffset": 7375 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 131, + "endOffset": 835 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7380, + "endColumn": 97, + "endOffset": 7473 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 840, + "endColumn": 97, + "endOffset": 933 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7478, + "endColumn": 100, + "endOffset": 7574 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 938, + "endColumn": 100, + "endOffset": 1034 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7579, + "endColumn": 122, + "endOffset": 7697 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1039, + "endColumn": 122, + "endOffset": 1157 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7702, + "endColumn": 100, + "endOffset": 7798 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1162, + "endColumn": 100, + "endOffset": 1258 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7803, + "endColumn": 84, + "endOffset": 7883 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1263, + "endColumn": 84, + "endOffset": 1343 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7888, + "endColumn": 91, + "endOffset": 7975 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1348, + "endColumn": 91, + "endOffset": 1435 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7980, + "endColumn": 104, + "endOffset": 8080 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-sw\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 326, + "endColumn": 104, + "endOffset": 426 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8085, + "endColumn": 95, + "endOffset": 8176 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-sw\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 95, + "endOffset": 321 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8181, + "endColumn": 100, + "endOffset": 8277 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw\\values-sw.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2174, + "endColumn": 100, + "endOffset": 2270 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8282, + "endColumn": 117, + "endOffset": 8395 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-sw\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 117, + "endOffset": 343 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json new file mode 100644 index 0000000..b3d5c5e --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json @@ -0,0 +1,351 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-sw600dp-v13\\values-sw600dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 68, + "endOffset": 119 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 68, + "endOffset": 297 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 124, + "endColumn": 69, + "endOffset": 189 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 302, + "endColumn": 69, + "endOffset": 367 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 194, + "endColumn": 73, + "endOffset": 263 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 372, + "endColumn": 73, + "endOffset": 441 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 268, + "endColumn": 75, + "endOffset": 339 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 446, + "endColumn": 75, + "endOffset": 517 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 344, + "endColumn": 58, + "endOffset": 398 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 700, + "endColumn": 58, + "endOffset": 754 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 403, + "endColumn": 70, + "endOffset": 469 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 937, + "endColumn": 70, + "endOffset": 1003 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 474, + "endColumn": 67, + "endOffset": 537 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1008, + "endColumn": 67, + "endOffset": 1071 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 542, + "endColumn": 69, + "endOffset": 607 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 227, + "endColumn": 69, + "endOffset": 292 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 612, + "endColumn": 70, + "endOffset": 678 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 297, + "endColumn": 70, + "endOffset": 363 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 683, + "endColumn": 71, + "endOffset": 750 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 368, + "endColumn": 71, + "endOffset": 435 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 755, + "endColumn": 57, + "endOffset": 808 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 440, + "endColumn": 57, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 813, + "endColumn": 57, + "endOffset": 866 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 498, + "endColumn": 57, + "endOffset": 551 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 871, + "endColumn": 105, + "endOffset": 972 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 556, + "endColumn": 105, + "endOffset": 657 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 977, + "endColumn": 63, + "endOffset": 1036 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 662, + "endColumn": 63, + "endOffset": 721 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1041, + "endColumn": 72, + "endOffset": 1109 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 72, + "endOffset": 350 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1114, + "endColumn": 54, + "endOffset": 1164 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1076, + "endColumn": 54, + "endOffset": 1126 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1169, + "endColumn": 62, + "endOffset": 1227 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 898, + "endColumn": 62, + "endOffset": 956 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1232, + "endLine": 22, + "endColumn": 12, + "endOffset": 1409 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values-sw600dp\\values-sw600dp.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1133, + "endLine": 19, + "endColumn": 12, + "endOffset": 1310 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-ta-rIN.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-ta-rIN.json new file mode 100644 index 0000000..48d8905 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-ta-rIN.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-ta-rIN\\values-ta-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 113, + "endOffset": 214 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 113, + "endOffset": 342 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 219, + "endColumn": 107, + "endOffset": 322 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 347, + "endColumn": 107, + "endOffset": 450 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 327, + "endColumn": 122, + "endOffset": 445 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 455, + "endColumn": 122, + "endOffset": 573 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 450, + "endColumn": 104, + "endOffset": 550 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 104, + "endOffset": 678 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 555, + "endColumn": 114, + "endOffset": 665 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 683, + "endColumn": 114, + "endOffset": 793 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 670, + "endColumn": 88, + "endOffset": 754 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 88, + "endOffset": 882 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 759, + "endColumn": 106, + "endOffset": 861 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 887, + "endColumn": 106, + "endOffset": 989 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 866, + "endColumn": 125, + "endOffset": 987 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 994, + "endColumn": 125, + "endOffset": 1115 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 992, + "endColumn": 80, + "endOffset": 1068 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1120, + "endColumn": 80, + "endOffset": 1196 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 79, + "endOffset": 1148 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1201, + "endColumn": 79, + "endOffset": 1276 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1153, + "endColumn": 81, + "endOffset": 1230 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1281, + "endColumn": 81, + "endOffset": 1358 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 101, + "endOffset": 1332 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1363, + "endColumn": 101, + "endOffset": 1460 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1337, + "endColumn": 103, + "endOffset": 1436 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1465, + "endColumn": 103, + "endOffset": 1564 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1441, + "endColumn": 96, + "endOffset": 1533 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1569, + "endColumn": 96, + "endOffset": 1661 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1538, + "endColumn": 109, + "endOffset": 1643 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1666, + "endColumn": 109, + "endOffset": 1771 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1648, + "endColumn": 101, + "endOffset": 1745 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1776, + "endColumn": 101, + "endOffset": 1873 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 106, + "endOffset": 1852 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1878, + "endColumn": 106, + "endOffset": 1980 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1857, + "endColumn": 118, + "endOffset": 1971 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1985, + "endColumn": 118, + "endOffset": 2099 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1976, + "endColumn": 99, + "endOffset": 2071 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2104, + "endColumn": 99, + "endOffset": 2199 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2076, + "endColumn": 261, + "endOffset": 2333 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3474, + "endColumn": 265, + "endOffset": 3735 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2338, + "endColumn": 126, + "endOffset": 2460 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1340, + "endColumn": 126, + "endOffset": 1462 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2465, + "endColumn": 183, + "endOffset": 2644 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1152, + "endColumn": 187, + "endOffset": 1335 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2649, + "endColumn": 128, + "endOffset": 2773 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1023, + "endColumn": 128, + "endOffset": 1147 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2778, + "endColumn": 128, + "endOffset": 2902 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 894, + "endColumn": 128, + "endOffset": 1018 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2907, + "endColumn": 224, + "endOffset": 3127 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 431, + "endColumn": 228, + "endOffset": 655 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3132, + "endColumn": 229, + "endOffset": 3357 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 660, + "endColumn": 233, + "endOffset": 889 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3362, + "endColumn": 129, + "endOffset": 3487 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 301, + "endColumn": 129, + "endOffset": 426 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3492, + "endColumn": 185, + "endOffset": 3673 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2729, + "endColumn": 185, + "endOffset": 2910 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3678, + "endColumn": 117, + "endOffset": 3791 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2611, + "endColumn": 117, + "endOffset": 2724 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3796, + "endColumn": 154, + "endOffset": 3946 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2456, + "endColumn": 154, + "endOffset": 2606 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3951, + "endColumn": 121, + "endOffset": 4068 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2334, + "endColumn": 121, + "endOffset": 2451 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4073, + "endColumn": 130, + "endOffset": 4199 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 130, + "endOffset": 296 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4204, + "endColumn": 180, + "endOffset": 4380 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4183, + "endColumn": 180, + "endOffset": 4359 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4385, + "endColumn": 136, + "endOffset": 4517 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4046, + "endColumn": 136, + "endOffset": 4178 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4522, + "endColumn": 178, + "endOffset": 4696 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3867, + "endColumn": 178, + "endOffset": 4041 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4701, + "endColumn": 126, + "endOffset": 4823 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3740, + "endColumn": 126, + "endOffset": 3862 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4828, + "endColumn": 237, + "endOffset": 5061 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-ta-rIN\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 241, + "endOffset": 407 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5066, + "endColumn": 231, + "endOffset": 5293 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3038, + "endColumn": 235, + "endOffset": 3269 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5298, + "endColumn": 122, + "endOffset": 5416 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2915, + "endColumn": 122, + "endOffset": 3033 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5421, + "endColumn": 108, + "endOffset": 5525 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3274, + "endColumn": 108, + "endOffset": 3378 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5530, + "endColumn": 183, + "endOffset": 5709 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1604, + "endColumn": 187, + "endOffset": 1787 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5714, + "endColumn": 136, + "endOffset": 5846 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1467, + "endColumn": 136, + "endOffset": 1599 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5851, + "endColumn": 212, + "endOffset": 6059 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2117, + "endColumn": 216, + "endOffset": 2329 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6064, + "endColumn": 138, + "endOffset": 6198 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1978, + "endColumn": 138, + "endOffset": 2112 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6203, + "endColumn": 185, + "endOffset": 6384 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1792, + "endColumn": 185, + "endOffset": 1973 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6389, + "endColumn": 90, + "endOffset": 6475 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3383, + "endColumn": 90, + "endOffset": 3469 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6480, + "endColumn": 92, + "endOffset": 6568 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4364, + "endColumn": 92, + "endOffset": 4452 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6573, + "endColumn": 110, + "endOffset": 6679 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ta-rIN\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4457, + "endColumn": 110, + "endOffset": 4563 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6684, + "endColumn": 107, + "endOffset": 6787 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 107, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6792, + "endColumn": 115, + "endOffset": 6903 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 115, + "endOffset": 501 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6908, + "endColumn": 109, + "endOffset": 7013 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 506, + "endColumn": 109, + "endOffset": 611 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7018, + "endColumn": 100, + "endOffset": 7114 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 616, + "endColumn": 100, + "endOffset": 712 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7119, + "endColumn": 119, + "endOffset": 7234 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 119, + "endOffset": 832 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7239, + "endColumn": 101, + "endOffset": 7336 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 837, + "endColumn": 101, + "endOffset": 934 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7341, + "endColumn": 95, + "endOffset": 7432 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 939, + "endColumn": 95, + "endOffset": 1030 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7437, + "endColumn": 118, + "endOffset": 7551 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1035, + "endColumn": 118, + "endOffset": 1149 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7556, + "endColumn": 108, + "endOffset": 7660 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1154, + "endColumn": 108, + "endOffset": 1258 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7665, + "endColumn": 86, + "endOffset": 7747 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1263, + "endColumn": 86, + "endOffset": 1345 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7752, + "endColumn": 95, + "endOffset": 7843 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1350, + "endColumn": 95, + "endOffset": 1441 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7848, + "endColumn": 99, + "endOffset": 7943 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ta-rIN\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 99, + "endOffset": 420 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7948, + "endColumn": 94, + "endOffset": 8038 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ta-rIN\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8043, + "endColumn": 100, + "endOffset": 8139 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ta-rIN\\values-ta-rIN.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2204, + "endColumn": 100, + "endOffset": 2300 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-te-rIN.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-te-rIN.json new file mode 100644 index 0000000..82ade22 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-te-rIN.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-te-rIN\\values-te-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 113, + "endOffset": 214 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 113, + "endOffset": 342 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 219, + "endColumn": 107, + "endOffset": 322 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 347, + "endColumn": 107, + "endOffset": 450 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 327, + "endColumn": 122, + "endOffset": 445 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 455, + "endColumn": 122, + "endOffset": 573 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 450, + "endColumn": 108, + "endOffset": 554 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 108, + "endOffset": 682 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 559, + "endColumn": 110, + "endOffset": 665 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 687, + "endColumn": 110, + "endOffset": 793 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 670, + "endColumn": 89, + "endOffset": 755 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 89, + "endOffset": 883 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 760, + "endColumn": 104, + "endOffset": 860 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 888, + "endColumn": 104, + "endOffset": 988 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 865, + "endColumn": 124, + "endOffset": 985 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 993, + "endColumn": 124, + "endOffset": 1113 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 990, + "endColumn": 81, + "endOffset": 1067 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1118, + "endColumn": 81, + "endOffset": 1195 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1072, + "endColumn": 81, + "endOffset": 1149 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1200, + "endColumn": 81, + "endOffset": 1277 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1154, + "endColumn": 84, + "endOffset": 1234 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1282, + "endColumn": 84, + "endOffset": 1362 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1239, + "endColumn": 112, + "endOffset": 1347 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1367, + "endColumn": 112, + "endOffset": 1475 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1352, + "endColumn": 107, + "endOffset": 1455 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1480, + "endColumn": 107, + "endOffset": 1583 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1460, + "endColumn": 99, + "endOffset": 1555 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1588, + "endColumn": 99, + "endOffset": 1683 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1560, + "endColumn": 110, + "endOffset": 1666 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1688, + "endColumn": 110, + "endOffset": 1794 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1671, + "endColumn": 101, + "endOffset": 1768 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1799, + "endColumn": 101, + "endOffset": 1896 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1773, + "endColumn": 116, + "endOffset": 1885 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1901, + "endColumn": 116, + "endOffset": 2013 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1890, + "endColumn": 126, + "endOffset": 2012 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2018, + "endColumn": 126, + "endOffset": 2140 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2017, + "endColumn": 100, + "endOffset": 2113 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2145, + "endColumn": 100, + "endOffset": 2241 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2118, + "endColumn": 261, + "endOffset": 2375 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3433, + "endColumn": 265, + "endOffset": 3694 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2380, + "endColumn": 130, + "endOffset": 2506 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1300, + "endColumn": 130, + "endOffset": 1426 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2511, + "endColumn": 185, + "endOffset": 2692 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1110, + "endColumn": 189, + "endOffset": 1295 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2697, + "endColumn": 131, + "endOffset": 2824 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 978, + "endColumn": 131, + "endOffset": 1105 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2829, + "endColumn": 127, + "endOffset": 2952 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 850, + "endColumn": 127, + "endOffset": 973 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2957, + "endColumn": 200, + "endOffset": 3153 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 435, + "endColumn": 204, + "endOffset": 635 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3158, + "endColumn": 205, + "endOffset": 3359 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 640, + "endColumn": 209, + "endOffset": 845 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3364, + "endColumn": 126, + "endOffset": 3486 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 308, + "endColumn": 126, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3491, + "endColumn": 169, + "endOffset": 3656 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2704, + "endColumn": 169, + "endOffset": 2869 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3661, + "endColumn": 117, + "endOffset": 3774 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2586, + "endColumn": 117, + "endOffset": 2699 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3779, + "endColumn": 162, + "endOffset": 3937 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2423, + "endColumn": 162, + "endOffset": 2581 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3942, + "endColumn": 131, + "endOffset": 4069 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2291, + "endColumn": 131, + "endOffset": 2418 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4074, + "endColumn": 137, + "endOffset": 4207 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 137, + "endOffset": 303 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4212, + "endColumn": 174, + "endOffset": 4382 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4139, + "endColumn": 174, + "endOffset": 4309 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4387, + "endColumn": 129, + "endOffset": 4512 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4009, + "endColumn": 129, + "endOffset": 4134 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4517, + "endColumn": 183, + "endOffset": 4696 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3825, + "endColumn": 183, + "endOffset": 4004 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4701, + "endColumn": 125, + "endOffset": 4822 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3699, + "endColumn": 125, + "endOffset": 3820 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4827, + "endColumn": 226, + "endOffset": 5049 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-te-rIN\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 230, + "endOffset": 396 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5054, + "endColumn": 230, + "endOffset": 5280 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2995, + "endColumn": 234, + "endOffset": 3225 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5285, + "endColumn": 120, + "endOffset": 5401 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2874, + "endColumn": 120, + "endOffset": 2990 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5406, + "endColumn": 109, + "endOffset": 5511 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3230, + "endColumn": 109, + "endOffset": 3335 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5516, + "endColumn": 183, + "endOffset": 5695 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1561, + "endColumn": 187, + "endOffset": 1744 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5700, + "endColumn": 129, + "endOffset": 5825 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1431, + "endColumn": 129, + "endOffset": 1556 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5830, + "endColumn": 209, + "endOffset": 6035 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2077, + "endColumn": 213, + "endOffset": 2286 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6040, + "endColumn": 138, + "endOffset": 6174 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1938, + "endColumn": 138, + "endOffset": 2072 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6179, + "endColumn": 188, + "endOffset": 6363 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1749, + "endColumn": 188, + "endOffset": 1933 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6368, + "endColumn": 92, + "endOffset": 6456 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3340, + "endColumn": 92, + "endOffset": 3428 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6461, + "endColumn": 97, + "endOffset": 6554 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4314, + "endColumn": 97, + "endOffset": 4407 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6559, + "endColumn": 111, + "endOffset": 6666 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-te-rIN\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4412, + "endColumn": 111, + "endOffset": 4519 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6671, + "endColumn": 114, + "endOffset": 6781 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 114, + "endOffset": 392 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6786, + "endColumn": 116, + "endOffset": 6898 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 116, + "endOffset": 509 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6903, + "endColumn": 112, + "endOffset": 7011 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 514, + "endColumn": 112, + "endOffset": 622 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7016, + "endColumn": 111, + "endOffset": 7123 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 627, + "endColumn": 111, + "endOffset": 734 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7128, + "endColumn": 125, + "endOffset": 7249 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 739, + "endColumn": 125, + "endOffset": 860 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7254, + "endColumn": 99, + "endOffset": 7349 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 865, + "endColumn": 99, + "endOffset": 960 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7354, + "endColumn": 98, + "endOffset": 7448 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 965, + "endColumn": 98, + "endOffset": 1059 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7453, + "endColumn": 122, + "endOffset": 7571 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1064, + "endColumn": 122, + "endOffset": 1182 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7576, + "endColumn": 108, + "endOffset": 7680 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1187, + "endColumn": 108, + "endOffset": 1291 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7685, + "endColumn": 86, + "endOffset": 7767 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1296, + "endColumn": 86, + "endOffset": 1378 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7772, + "endColumn": 94, + "endOffset": 7862 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1383, + "endColumn": 94, + "endOffset": 1473 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7867, + "endColumn": 110, + "endOffset": 7973 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-te-rIN\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 110, + "endOffset": 435 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7978, + "endColumn": 98, + "endOffset": 8072 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-te-rIN\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 98, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8077, + "endColumn": 100, + "endOffset": 8173 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-te-rIN\\values-te-rIN.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2246, + "endColumn": 100, + "endOffset": 2342 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-th.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-th.json new file mode 100644 index 0000000..0b4c3df --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-th.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-th\\values-th.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 104, + "endOffset": 205 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 104, + "endOffset": 329 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 210, + "endColumn": 107, + "endOffset": 313 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 334, + "endColumn": 107, + "endOffset": 437 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 318, + "endColumn": 122, + "endOffset": 436 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 442, + "endColumn": 122, + "endOffset": 560 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 441, + "endColumn": 97, + "endOffset": 534 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 565, + "endColumn": 97, + "endOffset": 658 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 539, + "endColumn": 107, + "endOffset": 642 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 663, + "endColumn": 107, + "endOffset": 766 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 647, + "endColumn": 88, + "endOffset": 731 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 771, + "endColumn": 88, + "endOffset": 855 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 736, + "endColumn": 101, + "endOffset": 833 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 860, + "endColumn": 101, + "endOffset": 957 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 838, + "endColumn": 109, + "endOffset": 943 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 962, + "endColumn": 109, + "endOffset": 1067 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 948, + "endColumn": 76, + "endOffset": 1020 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1072, + "endColumn": 76, + "endOffset": 1144 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1025, + "endColumn": 77, + "endOffset": 1098 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1149, + "endColumn": 77, + "endOffset": 1222 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1103, + "endColumn": 80, + "endOffset": 1179 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1227, + "endColumn": 80, + "endOffset": 1303 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1184, + "endColumn": 107, + "endOffset": 1287 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1308, + "endColumn": 107, + "endOffset": 1411 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1292, + "endColumn": 103, + "endOffset": 1391 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1416, + "endColumn": 103, + "endOffset": 1515 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 97, + "endOffset": 1489 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1520, + "endColumn": 97, + "endOffset": 1613 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1494, + "endColumn": 107, + "endOffset": 1597 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1618, + "endColumn": 107, + "endOffset": 1721 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1602, + "endColumn": 104, + "endOffset": 1702 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1726, + "endColumn": 104, + "endOffset": 1826 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1707, + "endColumn": 100, + "endOffset": 1803 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1831, + "endColumn": 100, + "endOffset": 1927 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1808, + "endColumn": 115, + "endOffset": 1919 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1932, + "endColumn": 115, + "endOffset": 2043 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1924, + "endColumn": 94, + "endOffset": 2014 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2048, + "endColumn": 94, + "endOffset": 2138 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2019, + "endColumn": 262, + "endOffset": 2277 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3360, + "endColumn": 266, + "endOffset": 3622 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2282, + "endColumn": 125, + "endOffset": 2403 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1282, + "endColumn": 125, + "endOffset": 1403 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2408, + "endColumn": 178, + "endOffset": 2582 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1099, + "endColumn": 182, + "endOffset": 1277 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2587, + "endColumn": 124, + "endOffset": 2707 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 974, + "endColumn": 124, + "endOffset": 1094 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2712, + "endColumn": 126, + "endOffset": 2834 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 847, + "endColumn": 126, + "endOffset": 969 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2839, + "endColumn": 201, + "endOffset": 3036 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 434, + "endColumn": 205, + "endOffset": 635 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3041, + "endColumn": 202, + "endOffset": 3239 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 640, + "endColumn": 206, + "endOffset": 842 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3244, + "endColumn": 125, + "endOffset": 3365 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 308, + "endColumn": 125, + "endOffset": 429 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3370, + "endColumn": 159, + "endOffset": 3525 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2644, + "endColumn": 159, + "endOffset": 2799 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3530, + "endColumn": 120, + "endOffset": 3646 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2523, + "endColumn": 120, + "endOffset": 2639 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3651, + "endColumn": 164, + "endOffset": 3811 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2358, + "endColumn": 164, + "endOffset": 2518 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3816, + "endColumn": 128, + "endOffset": 3940 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2229, + "endColumn": 128, + "endOffset": 2353 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 3945, + "endColumn": 137, + "endOffset": 4078 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 137, + "endOffset": 303 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4083, + "endColumn": 157, + "endOffset": 4236 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4056, + "endColumn": 157, + "endOffset": 4209 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4241, + "endColumn": 129, + "endOffset": 4366 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3926, + "endColumn": 129, + "endOffset": 4051 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4371, + "endColumn": 167, + "endOffset": 4534 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3758, + "endColumn": 167, + "endOffset": 3921 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4539, + "endColumn": 130, + "endOffset": 4665 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3627, + "endColumn": 130, + "endOffset": 3753 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4670, + "endColumn": 239, + "endOffset": 4905 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-th\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 243, + "endOffset": 409 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4910, + "endColumn": 229, + "endOffset": 5135 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2926, + "endColumn": 233, + "endOffset": 3155 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5140, + "endColumn": 121, + "endOffset": 5257 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2804, + "endColumn": 121, + "endOffset": 2921 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5262, + "endColumn": 106, + "endOffset": 5364 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3160, + "endColumn": 106, + "endOffset": 3262 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5369, + "endColumn": 177, + "endOffset": 5542 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1532, + "endColumn": 181, + "endOffset": 1709 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5547, + "endColumn": 123, + "endOffset": 5666 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1408, + "endColumn": 123, + "endOffset": 1527 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5671, + "endColumn": 198, + "endOffset": 5865 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2026, + "endColumn": 202, + "endOffset": 2224 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5870, + "endColumn": 130, + "endOffset": 5996 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1895, + "endColumn": 130, + "endOffset": 2021 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6001, + "endColumn": 180, + "endOffset": 6177 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1714, + "endColumn": 180, + "endOffset": 1890 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6182, + "endColumn": 92, + "endOffset": 6270 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3267, + "endColumn": 92, + "endOffset": 3355 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6275, + "endColumn": 97, + "endOffset": 6368 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4214, + "endColumn": 97, + "endOffset": 4307 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6373, + "endColumn": 113, + "endOffset": 6482 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-th\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4312, + "endColumn": 113, + "endOffset": 4421 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6487, + "endColumn": 105, + "endOffset": 6588 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-th\\values-th.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 105, + "endOffset": 379 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6593, + "endColumn": 109, + "endOffset": 6698 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-th\\values-th.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 384, + "endColumn": 109, + "endOffset": 489 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6703, + "endColumn": 106, + "endOffset": 6805 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-th\\values-th.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 106, + "endOffset": 596 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6810, + "endColumn": 112, + "endOffset": 6918 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-th\\values-th.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 601, + "endColumn": 112, + "endOffset": 709 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 6923, + "endColumn": 113, + "endOffset": 7032 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-th\\values-th.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 714, + "endColumn": 113, + "endOffset": 823 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7037, + "endColumn": 102, + "endOffset": 7135 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-th\\values-th.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 828, + "endColumn": 102, + "endOffset": 926 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7140, + "endColumn": 93, + "endOffset": 7229 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-th\\values-th.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 931, + "endColumn": 93, + "endOffset": 1020 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7234, + "endColumn": 121, + "endOffset": 7351 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-th\\values-th.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1025, + "endColumn": 121, + "endOffset": 1142 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7356, + "endColumn": 99, + "endOffset": 7451 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-th\\values-th.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 99, + "endOffset": 1242 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7456, + "endColumn": 83, + "endOffset": 7535 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-th\\values-th.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1247, + "endColumn": 83, + "endOffset": 1326 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7540, + "endColumn": 93, + "endOffset": 7629 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-th\\values-th.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1331, + "endColumn": 93, + "endOffset": 1420 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7634, + "endColumn": 102, + "endOffset": 7732 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-th\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 102, + "endOffset": 423 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7737, + "endColumn": 94, + "endOffset": 7827 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-th\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 7832, + "endColumn": 100, + "endOffset": 7928 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-th\\values-th.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2143, + "endColumn": 100, + "endOffset": 2239 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 7933, + "endColumn": 104, + "endOffset": 8033 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-th\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 104, + "endOffset": 330 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-tl.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-tl.json new file mode 100644 index 0000000..1c9f8f3 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-tl.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-tl\\values-tl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 118, + "endOffset": 219 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 118, + "endOffset": 343 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 224, + "endColumn": 107, + "endOffset": 327 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 348, + "endColumn": 107, + "endOffset": 451 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 332, + "endColumn": 122, + "endOffset": 450 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 456, + "endColumn": 122, + "endOffset": 574 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 455, + "endColumn": 107, + "endOffset": 558 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 579, + "endColumn": 107, + "endOffset": 682 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 563, + "endColumn": 116, + "endOffset": 675 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 687, + "endColumn": 116, + "endOffset": 799 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 680, + "endColumn": 87, + "endOffset": 763 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 804, + "endColumn": 87, + "endOffset": 887 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 768, + "endColumn": 105, + "endOffset": 869 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 892, + "endColumn": 105, + "endOffset": 993 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 874, + "endColumn": 120, + "endOffset": 990 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 998, + "endColumn": 120, + "endOffset": 1114 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 995, + "endColumn": 78, + "endOffset": 1069 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1119, + "endColumn": 78, + "endOffset": 1193 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1074, + "endColumn": 77, + "endOffset": 1147 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1198, + "endColumn": 77, + "endOffset": 1271 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1152, + "endColumn": 83, + "endOffset": 1231 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1276, + "endColumn": 83, + "endOffset": 1355 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1236, + "endColumn": 108, + "endOffset": 1340 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1360, + "endColumn": 108, + "endOffset": 1464 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1345, + "endColumn": 110, + "endOffset": 1451 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1469, + "endColumn": 110, + "endOffset": 1575 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1456, + "endColumn": 100, + "endOffset": 1552 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1580, + "endColumn": 100, + "endOffset": 1676 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1557, + "endColumn": 109, + "endOffset": 1662 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1681, + "endColumn": 109, + "endOffset": 1786 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1667, + "endColumn": 116, + "endOffset": 1779 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1791, + "endColumn": 116, + "endOffset": 1903 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 107, + "endOffset": 1887 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1908, + "endColumn": 107, + "endOffset": 2011 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1892, + "endColumn": 122, + "endOffset": 2010 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2016, + "endColumn": 122, + "endOffset": 2134 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2015, + "endColumn": 101, + "endOffset": 2112 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2139, + "endColumn": 101, + "endOffset": 2236 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2117, + "endColumn": 290, + "endOffset": 2403 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3711, + "endColumn": 294, + "endOffset": 4001 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2408, + "endColumn": 140, + "endOffset": 2544 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1399, + "endColumn": 140, + "endOffset": 1535 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2549, + "endColumn": 207, + "endOffset": 2752 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1187, + "endColumn": 211, + "endOffset": 1394 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2757, + "endColumn": 139, + "endOffset": 2892 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1047, + "endColumn": 139, + "endOffset": 1182 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2897, + "endColumn": 138, + "endOffset": 3031 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 908, + "endColumn": 138, + "endOffset": 1042 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3036, + "endColumn": 224, + "endOffset": 3256 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 451, + "endColumn": 228, + "endOffset": 675 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3261, + "endColumn": 223, + "endOffset": 3480 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 680, + "endColumn": 227, + "endOffset": 903 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3485, + "endColumn": 137, + "endOffset": 3618 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 313, + "endColumn": 137, + "endOffset": 446 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3623, + "endColumn": 197, + "endOffset": 3816 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2899, + "endColumn": 197, + "endOffset": 3092 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3821, + "endColumn": 123, + "endOffset": 3940 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2775, + "endColumn": 123, + "endOffset": 2894 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3945, + "endColumn": 185, + "endOffset": 4126 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2589, + "endColumn": 185, + "endOffset": 2770 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4131, + "endColumn": 122, + "endOffset": 4249 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2466, + "endColumn": 122, + "endOffset": 2584 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4254, + "endColumn": 142, + "endOffset": 4392 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 142, + "endOffset": 308 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4397, + "endColumn": 202, + "endOffset": 4595 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4470, + "endColumn": 202, + "endOffset": 4668 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4600, + "endColumn": 135, + "endOffset": 4731 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4334, + "endColumn": 135, + "endOffset": 4465 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4736, + "endColumn": 198, + "endOffset": 4930 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4135, + "endColumn": 198, + "endOffset": 4329 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4935, + "endColumn": 128, + "endOffset": 5059 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 4006, + "endColumn": 128, + "endOffset": 4130 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 5064, + "endColumn": 281, + "endOffset": 5341 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-tl\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 285, + "endOffset": 451 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5346, + "endColumn": 272, + "endOffset": 5614 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3228, + "endColumn": 276, + "endOffset": 3500 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5619, + "endColumn": 130, + "endOffset": 5745 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 3097, + "endColumn": 130, + "endOffset": 3223 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5750, + "endColumn": 108, + "endOffset": 5854 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3505, + "endColumn": 108, + "endOffset": 3609 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5859, + "endColumn": 207, + "endOffset": 6062 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1680, + "endColumn": 211, + "endOffset": 1887 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 6067, + "endColumn": 139, + "endOffset": 6202 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1540, + "endColumn": 139, + "endOffset": 1675 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6207, + "endColumn": 220, + "endOffset": 6423 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2241, + "endColumn": 224, + "endOffset": 2461 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6428, + "endColumn": 139, + "endOffset": 6563 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2101, + "endColumn": 139, + "endOffset": 2236 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6568, + "endColumn": 208, + "endOffset": 6772 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1892, + "endColumn": 208, + "endOffset": 2096 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6777, + "endColumn": 96, + "endOffset": 6869 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3614, + "endColumn": 96, + "endOffset": 3706 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6874, + "endColumn": 95, + "endOffset": 6965 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4673, + "endColumn": 95, + "endOffset": 4764 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6970, + "endColumn": 110, + "endOffset": 7076 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tl\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4769, + "endColumn": 110, + "endOffset": 4875 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 7081, + "endColumn": 106, + "endOffset": 7183 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 106, + "endOffset": 380 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 7188, + "endColumn": 116, + "endOffset": 7300 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 385, + "endColumn": 116, + "endOffset": 497 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7305, + "endColumn": 106, + "endOffset": 7407 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 502, + "endColumn": 106, + "endOffset": 604 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7412, + "endColumn": 105, + "endOffset": 7513 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 609, + "endColumn": 105, + "endOffset": 710 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7518, + "endColumn": 133, + "endOffset": 7647 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 715, + "endColumn": 133, + "endOffset": 844 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7652, + "endColumn": 97, + "endOffset": 7745 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 849, + "endColumn": 97, + "endOffset": 942 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7750, + "endColumn": 95, + "endOffset": 7841 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 947, + "endColumn": 95, + "endOffset": 1038 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7846, + "endColumn": 123, + "endOffset": 7965 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1043, + "endColumn": 123, + "endOffset": 1162 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7970, + "endColumn": 110, + "endOffset": 8076 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1167, + "endColumn": 110, + "endOffset": 1273 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 8081, + "endColumn": 85, + "endOffset": 8162 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 85, + "endOffset": 1359 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 8167, + "endColumn": 96, + "endOffset": 8259 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 96, + "endOffset": 1456 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8264, + "endColumn": 112, + "endOffset": 8372 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-tl\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 328, + "endColumn": 112, + "endOffset": 436 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8377, + "endColumn": 97, + "endOffset": 8470 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-tl\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 97, + "endOffset": 323 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8475, + "endColumn": 100, + "endOffset": 8571 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tl\\values-tl.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2241, + "endColumn": 100, + "endOffset": 2337 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8576, + "endColumn": 112, + "endOffset": 8684 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-tl\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 112, + "endOffset": 338 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-tr.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-tr.json new file mode 100644 index 0000000..fc00707 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-tr.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-tr\\values-tr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 104, + "endOffset": 205 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 104, + "endOffset": 329 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 210, + "endColumn": 107, + "endOffset": 313 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 334, + "endColumn": 107, + "endOffset": 437 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 318, + "endColumn": 122, + "endOffset": 436 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 442, + "endColumn": 122, + "endOffset": 560 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 441, + "endColumn": 98, + "endOffset": 535 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 565, + "endColumn": 98, + "endOffset": 659 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 540, + "endColumn": 111, + "endOffset": 647 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 664, + "endColumn": 111, + "endOffset": 771 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 652, + "endColumn": 89, + "endOffset": 737 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 776, + "endColumn": 89, + "endOffset": 861 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 742, + "endColumn": 105, + "endOffset": 843 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 866, + "endColumn": 105, + "endOffset": 967 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 848, + "endColumn": 119, + "endOffset": 963 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 972, + "endColumn": 119, + "endOffset": 1087 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 968, + "endColumn": 78, + "endOffset": 1042 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 78, + "endOffset": 1166 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1047, + "endColumn": 75, + "endOffset": 1118 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1171, + "endColumn": 75, + "endOffset": 1242 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1123, + "endColumn": 78, + "endOffset": 1197 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1247, + "endColumn": 78, + "endOffset": 1321 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1202, + "endColumn": 106, + "endOffset": 1304 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1326, + "endColumn": 106, + "endOffset": 1428 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1309, + "endColumn": 104, + "endOffset": 1409 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1433, + "endColumn": 104, + "endOffset": 1533 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1414, + "endColumn": 95, + "endOffset": 1505 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1538, + "endColumn": 95, + "endOffset": 1629 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1510, + "endColumn": 106, + "endOffset": 1612 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1634, + "endColumn": 106, + "endOffset": 1736 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1617, + "endColumn": 101, + "endOffset": 1714 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1741, + "endColumn": 101, + "endOffset": 1838 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1719, + "endColumn": 107, + "endOffset": 1822 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1843, + "endColumn": 107, + "endOffset": 1946 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1827, + "endColumn": 118, + "endOffset": 1941 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1951, + "endColumn": 118, + "endOffset": 2065 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1946, + "endColumn": 97, + "endOffset": 2039 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2070, + "endColumn": 97, + "endOffset": 2163 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2044, + "endColumn": 270, + "endOffset": 2310 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3516, + "endColumn": 274, + "endOffset": 3786 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2315, + "endColumn": 136, + "endOffset": 2447 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1335, + "endColumn": 136, + "endOffset": 1467 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2452, + "endColumn": 186, + "endOffset": 2634 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1144, + "endColumn": 190, + "endOffset": 1330 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2639, + "endColumn": 137, + "endOffset": 2772 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1006, + "endColumn": 137, + "endOffset": 1139 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2777, + "endColumn": 131, + "endOffset": 2904 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 874, + "endColumn": 131, + "endOffset": 1001 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2909, + "endColumn": 213, + "endOffset": 3118 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 438, + "endColumn": 217, + "endOffset": 651 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3123, + "endColumn": 213, + "endOffset": 3332 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 656, + "endColumn": 217, + "endOffset": 869 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3337, + "endColumn": 131, + "endOffset": 3464 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 306, + "endColumn": 131, + "endOffset": 433 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3469, + "endColumn": 179, + "endOffset": 3644 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2751, + "endColumn": 179, + "endOffset": 2926 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3649, + "endColumn": 119, + "endOffset": 3764 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2631, + "endColumn": 119, + "endOffset": 2746 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3769, + "endColumn": 175, + "endOffset": 3940 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2455, + "endColumn": 175, + "endOffset": 2626 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3945, + "endColumn": 115, + "endOffset": 4056 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2339, + "endColumn": 115, + "endOffset": 2450 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4061, + "endColumn": 135, + "endOffset": 4192 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 135, + "endOffset": 301 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4197, + "endColumn": 164, + "endOffset": 4357 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4225, + "endColumn": 164, + "endOffset": 4385 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4362, + "endColumn": 125, + "endOffset": 4483 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4099, + "endColumn": 125, + "endOffset": 4220 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4488, + "endColumn": 183, + "endOffset": 4667 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3915, + "endColumn": 183, + "endOffset": 4094 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4672, + "endColumn": 123, + "endOffset": 4791 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3791, + "endColumn": 123, + "endOffset": 3910 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4796, + "endColumn": 251, + "endOffset": 5043 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-tr\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 255, + "endOffset": 421 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5048, + "endColumn": 254, + "endOffset": 5298 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3057, + "endColumn": 258, + "endOffset": 3311 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5303, + "endColumn": 125, + "endOffset": 5424 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2931, + "endColumn": 125, + "endOffset": 3052 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5429, + "endColumn": 108, + "endOffset": 5533 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3316, + "endColumn": 108, + "endOffset": 3420 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5538, + "endColumn": 183, + "endOffset": 5717 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1608, + "endColumn": 187, + "endOffset": 1791 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5722, + "endColumn": 135, + "endOffset": 5853 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1472, + "endColumn": 135, + "endOffset": 1603 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5858, + "endColumn": 203, + "endOffset": 6057 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2131, + "endColumn": 207, + "endOffset": 2334 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6062, + "endColumn": 137, + "endOffset": 6195 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1993, + "endColumn": 137, + "endOffset": 2126 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6200, + "endColumn": 196, + "endOffset": 6392 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1796, + "endColumn": 196, + "endOffset": 1988 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6397, + "endColumn": 90, + "endOffset": 6483 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3425, + "endColumn": 90, + "endOffset": 3511 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6488, + "endColumn": 93, + "endOffset": 6577 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4390, + "endColumn": 93, + "endOffset": 4479 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6582, + "endColumn": 109, + "endOffset": 6687 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-tr\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4484, + "endColumn": 109, + "endOffset": 4589 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6692, + "endColumn": 107, + "endOffset": 6795 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 107, + "endOffset": 381 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6800, + "endColumn": 104, + "endOffset": 6900 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 386, + "endColumn": 104, + "endOffset": 486 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6905, + "endColumn": 102, + "endOffset": 7003 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 491, + "endColumn": 102, + "endOffset": 589 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7008, + "endColumn": 108, + "endOffset": 7112 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 594, + "endColumn": 108, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7117, + "endColumn": 111, + "endOffset": 7224 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 111, + "endOffset": 810 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7229, + "endColumn": 98, + "endOffset": 7323 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 815, + "endColumn": 98, + "endOffset": 909 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7328, + "endColumn": 94, + "endOffset": 7418 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 914, + "endColumn": 94, + "endOffset": 1004 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7423, + "endColumn": 117, + "endOffset": 7536 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1009, + "endColumn": 117, + "endOffset": 1122 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7541, + "endColumn": 102, + "endOffset": 7639 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1127, + "endColumn": 102, + "endOffset": 1225 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7644, + "endColumn": 85, + "endOffset": 7725 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1230, + "endColumn": 85, + "endOffset": 1311 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7730, + "endColumn": 94, + "endOffset": 7820 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1316, + "endColumn": 94, + "endOffset": 1406 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7825, + "endColumn": 105, + "endOffset": 7926 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-tr\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 323, + "endColumn": 105, + "endOffset": 424 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7931, + "endColumn": 92, + "endOffset": 8019 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-tr\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 92, + "endOffset": 318 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8024, + "endColumn": 100, + "endOffset": 8120 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-tr\\values-tr.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2168, + "endColumn": 100, + "endOffset": 2264 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8125, + "endColumn": 108, + "endOffset": 8229 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-tr\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 108, + "endOffset": 334 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-uk.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-uk.json new file mode 100644 index 0000000..7d36610 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-uk.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-uk\\values-uk.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 109, + "endOffset": 210 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 109, + "endOffset": 334 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 215, + "endColumn": 107, + "endOffset": 318 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 339, + "endColumn": 107, + "endOffset": 442 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 323, + "endColumn": 122, + "endOffset": 441 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 447, + "endColumn": 122, + "endOffset": 565 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 446, + "endColumn": 101, + "endOffset": 543 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 570, + "endColumn": 101, + "endOffset": 667 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 548, + "endColumn": 105, + "endOffset": 649 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 672, + "endColumn": 105, + "endOffset": 773 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 654, + "endColumn": 85, + "endOffset": 735 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 778, + "endColumn": 85, + "endOffset": 859 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 740, + "endColumn": 107, + "endOffset": 843 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 864, + "endColumn": 107, + "endOffset": 967 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 848, + "endColumn": 117, + "endOffset": 961 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 972, + "endColumn": 117, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 966, + "endColumn": 78, + "endOffset": 1040 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 78, + "endOffset": 1164 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1045, + "endColumn": 79, + "endOffset": 1120 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1169, + "endColumn": 79, + "endOffset": 1244 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1125, + "endColumn": 80, + "endOffset": 1201 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1249, + "endColumn": 80, + "endOffset": 1325 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1206, + "endColumn": 105, + "endOffset": 1307 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1330, + "endColumn": 105, + "endOffset": 1431 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1312, + "endColumn": 106, + "endOffset": 1414 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1436, + "endColumn": 106, + "endOffset": 1538 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1419, + "endColumn": 97, + "endOffset": 1512 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1543, + "endColumn": 97, + "endOffset": 1636 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1517, + "endColumn": 107, + "endOffset": 1620 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1641, + "endColumn": 107, + "endOffset": 1744 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1625, + "endColumn": 105, + "endOffset": 1726 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1749, + "endColumn": 105, + "endOffset": 1850 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1731, + "endColumn": 108, + "endOffset": 1835 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1855, + "endColumn": 108, + "endOffset": 1959 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1840, + "endColumn": 123, + "endOffset": 1959 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1964, + "endColumn": 123, + "endOffset": 2083 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1964, + "endColumn": 99, + "endOffset": 2059 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2088, + "endColumn": 99, + "endOffset": 2183 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2064, + "endColumn": 268, + "endOffset": 2328 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3510, + "endColumn": 272, + "endOffset": 3778 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2333, + "endColumn": 129, + "endOffset": 2458 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1343, + "endColumn": 129, + "endOffset": 1468 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2463, + "endColumn": 194, + "endOffset": 2653 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1144, + "endColumn": 198, + "endOffset": 1338 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2658, + "endColumn": 128, + "endOffset": 2782 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1015, + "endColumn": 128, + "endOffset": 1139 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2787, + "endColumn": 131, + "endOffset": 2914 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 883, + "endColumn": 131, + "endOffset": 1010 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2919, + "endColumn": 218, + "endOffset": 3133 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 436, + "endColumn": 222, + "endOffset": 654 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3138, + "endColumn": 219, + "endOffset": 3353 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 659, + "endColumn": 223, + "endOffset": 878 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3358, + "endColumn": 130, + "endOffset": 3484 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 305, + "endColumn": 130, + "endOffset": 431 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3489, + "endColumn": 175, + "endOffset": 3660 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2740, + "endColumn": 175, + "endOffset": 2911 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3665, + "endColumn": 130, + "endOffset": 3791 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2609, + "endColumn": 130, + "endOffset": 2735 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3796, + "endColumn": 175, + "endOffset": 3967 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2433, + "endColumn": 175, + "endOffset": 2604 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3972, + "endColumn": 120, + "endOffset": 4088 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2312, + "endColumn": 120, + "endOffset": 2428 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4093, + "endColumn": 134, + "endOffset": 4223 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 134, + "endOffset": 300 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4228, + "endColumn": 176, + "endOffset": 4400 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4211, + "endColumn": 176, + "endOffset": 4383 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4405, + "endColumn": 132, + "endOffset": 4533 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4078, + "endColumn": 132, + "endOffset": 4206 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4538, + "endColumn": 165, + "endOffset": 4699 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3912, + "endColumn": 165, + "endOffset": 4073 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4704, + "endColumn": 128, + "endOffset": 4828 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3783, + "endColumn": 128, + "endOffset": 3907 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4833, + "endColumn": 249, + "endOffset": 5078 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-uk\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 253, + "endOffset": 419 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5083, + "endColumn": 259, + "endOffset": 5338 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3039, + "endColumn": 263, + "endOffset": 3298 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5343, + "endColumn": 122, + "endOffset": 5461 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2916, + "endColumn": 122, + "endOffset": 3034 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5466, + "endColumn": 107, + "endOffset": 5569 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3303, + "endColumn": 107, + "endOffset": 3406 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5574, + "endColumn": 192, + "endOffset": 5762 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1600, + "endColumn": 196, + "endOffset": 1792 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5767, + "endColumn": 126, + "endOffset": 5889 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1473, + "endColumn": 126, + "endOffset": 1595 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5894, + "endColumn": 205, + "endOffset": 6095 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2102, + "endColumn": 209, + "endOffset": 2307 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6100, + "endColumn": 132, + "endOffset": 6228 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 132, + "endOffset": 2097 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6233, + "endColumn": 171, + "endOffset": 6400 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1797, + "endColumn": 171, + "endOffset": 1964 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6405, + "endColumn": 98, + "endOffset": 6499 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3411, + "endColumn": 98, + "endOffset": 3505 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6504, + "endColumn": 90, + "endOffset": 6590 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4388, + "endColumn": 90, + "endOffset": 4474 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6595, + "endColumn": 117, + "endOffset": 6708 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uk\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4479, + "endColumn": 117, + "endOffset": 4592 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6713, + "endColumn": 111, + "endOffset": 6820 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 111, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6825, + "endColumn": 107, + "endOffset": 6928 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 107, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6933, + "endColumn": 111, + "endOffset": 7040 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 111, + "endOffset": 605 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7045, + "endColumn": 106, + "endOffset": 7147 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 610, + "endColumn": 106, + "endOffset": 712 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7152, + "endColumn": 113, + "endOffset": 7261 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 113, + "endOffset": 826 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7266, + "endColumn": 101, + "endOffset": 7363 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 831, + "endColumn": 101, + "endOffset": 928 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7368, + "endColumn": 99, + "endOffset": 7463 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 99, + "endOffset": 1028 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7468, + "endColumn": 125, + "endOffset": 7589 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1033, + "endColumn": 125, + "endOffset": 1154 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7594, + "endColumn": 108, + "endOffset": 7698 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1159, + "endColumn": 108, + "endOffset": 1263 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7703, + "endColumn": 86, + "endOffset": 7785 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1268, + "endColumn": 86, + "endOffset": 1350 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7790, + "endColumn": 94, + "endOffset": 7880 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1355, + "endColumn": 94, + "endOffset": 1445 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7885, + "endColumn": 110, + "endOffset": 7991 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-uk\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 110, + "endOffset": 431 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7996, + "endColumn": 94, + "endOffset": 8086 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-uk\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8091, + "endColumn": 100, + "endOffset": 8187 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uk\\values-uk.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2188, + "endColumn": 100, + "endOffset": 2284 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8192, + "endColumn": 115, + "endOffset": 8303 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-uk\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 115, + "endOffset": 341 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-ur-rPK.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-ur-rPK.json new file mode 100644 index 0000000..ec447e1 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-ur-rPK.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-ur-rPK\\values-ur-rPK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 109, + "endOffset": 210 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 109, + "endOffset": 338 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 215, + "endColumn": 107, + "endOffset": 318 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 343, + "endColumn": 107, + "endOffset": 446 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 323, + "endColumn": 122, + "endOffset": 441 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 451, + "endColumn": 122, + "endOffset": 569 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 446, + "endColumn": 105, + "endOffset": 547 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 574, + "endColumn": 105, + "endOffset": 675 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 552, + "endColumn": 108, + "endOffset": 656 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 680, + "endColumn": 108, + "endOffset": 784 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 661, + "endColumn": 85, + "endOffset": 742 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 789, + "endColumn": 85, + "endOffset": 870 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 747, + "endColumn": 103, + "endOffset": 846 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 875, + "endColumn": 103, + "endOffset": 974 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 851, + "endColumn": 119, + "endOffset": 966 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 979, + "endColumn": 119, + "endOffset": 1094 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 971, + "endColumn": 75, + "endOffset": 1042 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1099, + "endColumn": 75, + "endOffset": 1170 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1047, + "endColumn": 75, + "endOffset": 1118 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1175, + "endColumn": 75, + "endOffset": 1246 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1123, + "endColumn": 84, + "endOffset": 1203 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1251, + "endColumn": 84, + "endOffset": 1331 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1208, + "endColumn": 107, + "endOffset": 1311 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1336, + "endColumn": 107, + "endOffset": 1439 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1316, + "endColumn": 108, + "endOffset": 1420 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1444, + "endColumn": 108, + "endOffset": 1548 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1425, + "endColumn": 101, + "endOffset": 1522 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1553, + "endColumn": 101, + "endOffset": 1650 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1527, + "endColumn": 110, + "endOffset": 1633 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1655, + "endColumn": 110, + "endOffset": 1761 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1638, + "endColumn": 99, + "endOffset": 1733 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1766, + "endColumn": 99, + "endOffset": 1861 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1738, + "endColumn": 107, + "endOffset": 1841 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1866, + "endColumn": 107, + "endOffset": 1969 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1846, + "endColumn": 128, + "endOffset": 1970 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1974, + "endColumn": 128, + "endOffset": 2098 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1975, + "endColumn": 97, + "endOffset": 2068 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2103, + "endColumn": 97, + "endOffset": 2196 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2073, + "endColumn": 258, + "endOffset": 2327 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3501, + "endColumn": 262, + "endOffset": 3759 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2332, + "endColumn": 128, + "endOffset": 2456 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1313, + "endColumn": 128, + "endOffset": 1437 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2461, + "endColumn": 195, + "endOffset": 2652 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1113, + "endColumn": 199, + "endOffset": 1308 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2657, + "endColumn": 127, + "endOffset": 2780 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 985, + "endColumn": 127, + "endOffset": 1108 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2785, + "endColumn": 129, + "endOffset": 2910 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 855, + "endColumn": 129, + "endOffset": 980 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2915, + "endColumn": 204, + "endOffset": 3115 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 433, + "endColumn": 208, + "endOffset": 637 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3120, + "endColumn": 208, + "endOffset": 3324 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 642, + "endColumn": 212, + "endOffset": 850 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3329, + "endColumn": 128, + "endOffset": 3453 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 304, + "endColumn": 128, + "endOffset": 428 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3458, + "endColumn": 182, + "endOffset": 3636 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2732, + "endColumn": 182, + "endOffset": 2910 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3641, + "endColumn": 115, + "endOffset": 3752 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2616, + "endColumn": 115, + "endOffset": 2727 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3757, + "endColumn": 171, + "endOffset": 3924 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2444, + "endColumn": 171, + "endOffset": 2611 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3929, + "endColumn": 123, + "endOffset": 4048 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2320, + "endColumn": 123, + "endOffset": 2439 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4053, + "endColumn": 133, + "endOffset": 4182 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 133, + "endOffset": 299 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4187, + "endColumn": 173, + "endOffset": 4356 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4210, + "endColumn": 173, + "endOffset": 4379 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4361, + "endColumn": 124, + "endOffset": 4481 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4085, + "endColumn": 124, + "endOffset": 4205 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4486, + "endColumn": 188, + "endOffset": 4670 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3896, + "endColumn": 188, + "endOffset": 4080 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4675, + "endColumn": 131, + "endOffset": 4802 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3764, + "endColumn": 131, + "endOffset": 3891 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4807, + "endColumn": 257, + "endOffset": 5060 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-ur-rPK\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 261, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5065, + "endColumn": 255, + "endOffset": 5316 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3037, + "endColumn": 259, + "endOffset": 3292 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5321, + "endColumn": 121, + "endOffset": 5438 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2915, + "endColumn": 121, + "endOffset": 3032 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5443, + "endColumn": 111, + "endOffset": 5550 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3297, + "endColumn": 111, + "endOffset": 3404 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5555, + "endColumn": 197, + "endOffset": 5748 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1572, + "endColumn": 201, + "endOffset": 1769 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5753, + "endColumn": 129, + "endOffset": 5878 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1442, + "endColumn": 129, + "endOffset": 1567 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5883, + "endColumn": 204, + "endOffset": 6083 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2111, + "endColumn": 208, + "endOffset": 2315 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6088, + "endColumn": 137, + "endOffset": 6221 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1973, + "endColumn": 137, + "endOffset": 2106 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6226, + "endColumn": 198, + "endOffset": 6420 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1774, + "endColumn": 198, + "endOffset": 1968 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6425, + "endColumn": 91, + "endOffset": 6512 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3409, + "endColumn": 91, + "endOffset": 3496 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6517, + "endColumn": 96, + "endOffset": 6609 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4384, + "endColumn": 96, + "endOffset": 4476 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6614, + "endColumn": 117, + "endOffset": 6727 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-ur-rPK\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4481, + "endColumn": 117, + "endOffset": 4594 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6732, + "endColumn": 109, + "endOffset": 6837 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 109, + "endOffset": 387 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6842, + "endColumn": 111, + "endOffset": 6949 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 111, + "endOffset": 499 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6954, + "endColumn": 103, + "endOffset": 7053 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 103, + "endOffset": 603 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7058, + "endColumn": 108, + "endOffset": 7162 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 608, + "endColumn": 108, + "endOffset": 712 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7167, + "endColumn": 126, + "endOffset": 7289 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 126, + "endOffset": 839 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7294, + "endColumn": 100, + "endOffset": 7390 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 844, + "endColumn": 100, + "endOffset": 940 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7395, + "endColumn": 95, + "endOffset": 7486 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 95, + "endOffset": 1036 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7491, + "endColumn": 118, + "endOffset": 7605 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1041, + "endColumn": 118, + "endOffset": 1155 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7610, + "endColumn": 107, + "endOffset": 7713 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1160, + "endColumn": 107, + "endOffset": 1263 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7718, + "endColumn": 83, + "endOffset": 7797 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1268, + "endColumn": 83, + "endOffset": 1347 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7802, + "endColumn": 90, + "endOffset": 7888 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1352, + "endColumn": 90, + "endOffset": 1438 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7893, + "endColumn": 103, + "endOffset": 7992 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ur-rPK\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 324, + "endColumn": 103, + "endOffset": 423 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 7997, + "endColumn": 93, + "endOffset": 8086 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-ur-rPK\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 93, + "endOffset": 319 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8091, + "endColumn": 102, + "endOffset": 8189 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-ur-rPK\\values-ur-rPK.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2201, + "endColumn": 102, + "endOffset": 2299 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json new file mode 100644 index 0000000..0fe0fed --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json @@ -0,0 +1,1166 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-uz-rUZ\\values-uz-rUZ.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 104, + "endOffset": 205 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 104, + "endOffset": 333 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 210, + "endColumn": 107, + "endOffset": 313 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 338, + "endColumn": 107, + "endOffset": 441 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 318, + "endColumn": 122, + "endOffset": 436 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 446, + "endColumn": 122, + "endOffset": 564 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 441, + "endColumn": 103, + "endOffset": 540 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 569, + "endColumn": 103, + "endOffset": 668 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 545, + "endColumn": 116, + "endOffset": 657 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 673, + "endColumn": 116, + "endOffset": 785 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 662, + "endColumn": 85, + "endOffset": 743 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 790, + "endColumn": 85, + "endOffset": 871 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 748, + "endColumn": 110, + "endOffset": 854 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 876, + "endColumn": 110, + "endOffset": 982 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 859, + "endColumn": 115, + "endOffset": 970 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 987, + "endColumn": 115, + "endOffset": 1098 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 975, + "endColumn": 79, + "endOffset": 1050 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1103, + "endColumn": 79, + "endOffset": 1178 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1055, + "endColumn": 78, + "endOffset": 1129 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1183, + "endColumn": 78, + "endOffset": 1257 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1134, + "endColumn": 83, + "endOffset": 1213 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1262, + "endColumn": 83, + "endOffset": 1341 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1218, + "endColumn": 108, + "endOffset": 1322 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 108, + "endOffset": 1450 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1327, + "endColumn": 106, + "endOffset": 1429 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1455, + "endColumn": 106, + "endOffset": 1557 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1434, + "endColumn": 100, + "endOffset": 1530 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1562, + "endColumn": 100, + "endOffset": 1658 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1535, + "endColumn": 107, + "endOffset": 1638 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1663, + "endColumn": 107, + "endOffset": 1766 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1643, + "endColumn": 104, + "endOffset": 1743 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1771, + "endColumn": 104, + "endOffset": 1871 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1748, + "endColumn": 104, + "endOffset": 1848 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1876, + "endColumn": 104, + "endOffset": 1976 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1853, + "endColumn": 98, + "endOffset": 1947 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1981, + "endColumn": 98, + "endOffset": 2075 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1952, + "endColumn": 296, + "endOffset": 2244 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3548, + "endColumn": 300, + "endOffset": 3844 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2249, + "endColumn": 131, + "endOffset": 2376 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1326, + "endColumn": 131, + "endOffset": 1453 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2381, + "endColumn": 181, + "endOffset": 2558 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1140, + "endColumn": 185, + "endOffset": 1321 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2563, + "endColumn": 130, + "endOffset": 2689 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1009, + "endColumn": 130, + "endOffset": 1135 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2694, + "endColumn": 135, + "endOffset": 2825 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 873, + "endColumn": 135, + "endOffset": 1004 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2830, + "endColumn": 210, + "endOffset": 3036 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 441, + "endColumn": 214, + "endOffset": 651 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3041, + "endColumn": 212, + "endOffset": 3249 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 656, + "endColumn": 216, + "endOffset": 868 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3254, + "endColumn": 134, + "endOffset": 3384 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 306, + "endColumn": 134, + "endOffset": 436 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3389, + "endColumn": 164, + "endOffset": 3549 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2747, + "endColumn": 164, + "endOffset": 2907 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3554, + "endColumn": 123, + "endOffset": 3673 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2623, + "endColumn": 123, + "endOffset": 2742 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3678, + "endColumn": 169, + "endOffset": 3843 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2453, + "endColumn": 169, + "endOffset": 2618 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3848, + "endColumn": 119, + "endOffset": 3963 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2333, + "endColumn": 119, + "endOffset": 2448 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3968, + "endColumn": 135, + "endOffset": 4099 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 135, + "endOffset": 301 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4104, + "endColumn": 172, + "endOffset": 4272 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4282, + "endColumn": 172, + "endOffset": 4450 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4277, + "endColumn": 128, + "endOffset": 4401 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4153, + "endColumn": 128, + "endOffset": 4277 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4406, + "endColumn": 174, + "endOffset": 4576 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3978, + "endColumn": 174, + "endOffset": 4148 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4581, + "endColumn": 128, + "endOffset": 4705 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3849, + "endColumn": 128, + "endOffset": 3973 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4710, + "endColumn": 280, + "endOffset": 4986 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-uz-rUZ\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 284, + "endOffset": 450 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4991, + "endColumn": 300, + "endOffset": 5287 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3038, + "endColumn": 304, + "endOffset": 3338 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5292, + "endColumn": 125, + "endOffset": 5413 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2912, + "endColumn": 125, + "endOffset": 3033 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5418, + "endColumn": 109, + "endOffset": 5523 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3343, + "endColumn": 109, + "endOffset": 3448 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5528, + "endColumn": 189, + "endOffset": 5713 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1592, + "endColumn": 193, + "endOffset": 1781 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5718, + "endColumn": 133, + "endOffset": 5847 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1458, + "endColumn": 133, + "endOffset": 1587 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5852, + "endColumn": 212, + "endOffset": 6060 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2116, + "endColumn": 216, + "endOffset": 2328 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6065, + "endColumn": 137, + "endOffset": 6198 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1978, + "endColumn": 137, + "endOffset": 2111 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6203, + "endColumn": 191, + "endOffset": 6390 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1786, + "endColumn": 191, + "endOffset": 1973 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6395, + "endColumn": 94, + "endOffset": 6485 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3453, + "endColumn": 94, + "endOffset": 3543 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6490, + "endColumn": 90, + "endOffset": 6576 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4455, + "endColumn": 90, + "endOffset": 4541 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6581, + "endColumn": 109, + "endOffset": 6686 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-uz-rUZ\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4546, + "endColumn": 109, + "endOffset": 4651 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6691, + "endColumn": 119, + "endOffset": 6806 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 119, + "endOffset": 397 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6811, + "endColumn": 113, + "endOffset": 6920 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 402, + "endColumn": 113, + "endOffset": 511 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6925, + "endColumn": 104, + "endOffset": 7025 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 104, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7030, + "endColumn": 99, + "endOffset": 7125 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 99, + "endOffset": 716 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7130, + "endColumn": 127, + "endOffset": 7253 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 721, + "endColumn": 127, + "endOffset": 844 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7258, + "endColumn": 106, + "endOffset": 7360 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 849, + "endColumn": 106, + "endOffset": 951 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7365, + "endColumn": 100, + "endOffset": 7461 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 956, + "endColumn": 100, + "endOffset": 1052 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7466, + "endColumn": 128, + "endOffset": 7590 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1057, + "endColumn": 128, + "endOffset": 1181 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7595, + "endColumn": 114, + "endOffset": 7705 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 114, + "endOffset": 1296 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7710, + "endColumn": 84, + "endOffset": 7790 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1301, + "endColumn": 84, + "endOffset": 1381 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7795, + "endColumn": 96, + "endOffset": 7887 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1386, + "endColumn": 96, + "endOffset": 1478 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7892, + "endColumn": 108, + "endOffset": 7996 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-uz-rUZ\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 328, + "endColumn": 108, + "endOffset": 432 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8001, + "endColumn": 97, + "endOffset": 8094 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-uz-rUZ\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 97, + "endOffset": 323 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8099, + "endColumn": 100, + "endOffset": 8195 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2080, + "endColumn": 100, + "endOffset": 2176 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-v11.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-v11.json new file mode 100644 index 0000000..9eb4bfe --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-v11.json @@ -0,0 +1,373 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-v11\\values-v11.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 7, + "endColumn": 12, + "endOffset": 469 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v11\\values-v11.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 239, + "endLine": 9, + "endColumn": 12, + "endOffset": 653 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 474, + "endLine": 13, + "endColumn": 12, + "endOffset": 894 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v11\\values-v11.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 658, + "endLine": 15, + "endColumn": 12, + "endOffset": 1078 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 899, + "endLine": 19, + "endColumn": 12, + "endOffset": 1322 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v11\\values-v11.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1083, + "endLine": 21, + "endColumn": 12, + "endOffset": 1506 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1327, + "endLine": 25, + "endColumn": 12, + "endOffset": 1748 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v11\\values-v11.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1511, + "endLine": 27, + "endColumn": 12, + "endOffset": 1932 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1753, + "endLine": 31, + "endColumn": 12, + "endOffset": 2175 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v11\\values-v11.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1937, + "endLine": 33, + "endColumn": 12, + "endOffset": 2359 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2180, + "endLine": 37, + "endColumn": 12, + "endOffset": 2600 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v11\\values-v11.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2364, + "endLine": 39, + "endColumn": 12, + "endOffset": 2784 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2605, + "endColumn": 88, + "endOffset": 2689 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v11\\values-v11.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2968, + "endColumn": 88, + "endOffset": 3052 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2694, + "endColumn": 100, + "endOffset": 2790 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v11\\values-v11.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3057, + "endColumn": 100, + "endOffset": 3153 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2795, + "endLine": 44, + "endColumn": 12, + "endOffset": 3198 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v11\\values-v11.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3158, + "endLine": 48, + "endColumn": 12, + "endOffset": 3561 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3203, + "endLine": 49, + "endColumn": 12, + "endOffset": 3618 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v11\\values-v11.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3566, + "endLine": 53, + "endColumn": 12, + "endOffset": 3981 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3623, + "endLine": 51, + "endColumn": 12, + "endOffset": 3725 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v11\\values-v11.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4165, + "endLine": 57, + "endColumn": 12, + "endOffset": 4267 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3730, + "endLine": 53, + "endColumn": 12, + "endOffset": 3854 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v11\\values-v11.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4272, + "endLine": 59, + "endColumn": 12, + "endOffset": 4396 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3859, + "endColumn": 70, + "endOffset": 3925 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v11\\values-v11.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4580, + "endColumn": 70, + "endOffset": 4646 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3930, + "endColumn": 82, + "endOffset": 4008 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v11\\values-v11.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 4651, + "endColumn": 82, + "endOffset": 4729 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4013, + "endLine": 106, + "endColumn": 12, + "endOffset": 7716 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v11\\values-v11.xml", + "position": { + "startLine": 64, + "startColumn": 4, + "startOffset": 4734, + "endLine": 114, + "endColumn": 12, + "endOffset": 8437 + } + } + }, + { + "to": { + "startLine": 107, + "startColumn": 4, + "startOffset": 7721, + "endLine": 158, + "endColumn": 12, + "endOffset": 11564 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v11\\values-v11.xml", + "position": { + "startLine": 115, + "startColumn": 4, + "startOffset": 8442, + "endLine": 166, + "endColumn": 12, + "endOffset": 12285 + } + } + }, + { + "to": { + "startLine": 159, + "startColumn": 4, + "startOffset": 11569, + "endColumn": 90, + "endOffset": 11655 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v11\\values-v11.xml", + "position": { + "startLine": 169, + "startColumn": 4, + "startOffset": 12469, + "endColumn": 90, + "endOffset": 12555 + } + } + }, + { + "to": { + "startLine": 160, + "startColumn": 4, + "startOffset": 11660, + "endColumn": 117, + "endOffset": 11773 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-appinvite\\8.4.0\\res\\values-v11\\appinvite_styles.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 101, + "endColumn": 117, + "endOffset": 214 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-v12.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-v12.json new file mode 100644 index 0000000..6814169 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-v12.json @@ -0,0 +1,87 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-v12\\values-v12.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 4, + "endColumn": 12, + "endOffset": 274 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v12\\values-v12.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 234, + "endLine": 6, + "endColumn": 12, + "endOffset": 453 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 279, + "endLine": 7, + "endColumn": 12, + "endOffset": 474 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v12\\values-v12.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 458, + "endLine": 9, + "endColumn": 12, + "endOffset": 653 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 479, + "endColumn": 118, + "endOffset": 593 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v12\\values-v12.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 658, + "endColumn": 118, + "endOffset": 772 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 598, + "endColumn": 94, + "endOffset": 688 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v12\\values-v12.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 777, + "endColumn": 94, + "endOffset": 867 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-v14.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-v14.json new file mode 100644 index 0000000..b9b159c --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-v14.json @@ -0,0 +1,205 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-v14\\values-v14.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 6, + "endColumn": 12, + "endOffset": 326 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v14\\values-v14.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 239, + "endLine": 8, + "endColumn": 12, + "endOffset": 510 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 331, + "endColumn": 70, + "endOffset": 397 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v14\\values-v14.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 694, + "endColumn": 70, + "endOffset": 760 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 402, + "endColumn": 82, + "endOffset": 480 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v14\\values-v14.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 765, + "endColumn": 82, + "endOffset": 843 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 485, + "endLine": 14, + "endColumn": 12, + "endOffset": 890 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v14\\values-v14.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 848, + "endLine": 18, + "endColumn": 12, + "endOffset": 1253 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 895, + "endLine": 20, + "endColumn": 12, + "endOffset": 1312 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v14\\values-v14.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1258, + "endLine": 24, + "endColumn": 12, + "endOffset": 1675 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1317, + "endColumn": 119, + "endOffset": 1432 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v14\\values-v14.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1854, + "endColumn": 119, + "endOffset": 1969 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 62, + "endOffset": 1495 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v14\\values-v14.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1974, + "endColumn": 62, + "endOffset": 2032 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1500, + "endLine": 25, + "endColumn": 12, + "endOffset": 1649 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v14\\values-v14.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2037, + "endLine": 31, + "endColumn": 12, + "endOffset": 2186 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1654, + "endColumn": 62, + "endOffset": 1712 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v14\\values-v14.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2191, + "endColumn": 62, + "endOffset": 2249 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1717, + "endColumn": 131, + "endOffset": 1844 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v14\\values-v14.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2254, + "endColumn": 131, + "endOffset": 2381 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-v17.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-v17.json new file mode 100644 index 0000000..422a308 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-v17.json @@ -0,0 +1,301 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-v17\\values-v17.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 4, + "endColumn": 12, + "endOffset": 223 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v17\\values-v17.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endLine": 6, + "endColumn": 12, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 228, + "endLine": 8, + "endColumn": 12, + "endOffset": 451 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v17\\values-v17.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 406, + "endLine": 10, + "endColumn": 12, + "endOffset": 629 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 456, + "endLine": 11, + "endColumn": 12, + "endOffset": 609 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v17\\values-v17.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 634, + "endLine": 13, + "endColumn": 12, + "endOffset": 787 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 614, + "endLine": 14, + "endColumn": 12, + "endOffset": 759 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v17\\values-v17.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 792, + "endLine": 16, + "endColumn": 12, + "endOffset": 937 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 764, + "endLine": 17, + "endColumn": 12, + "endOffset": 931 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v17\\values-v17.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 942, + "endLine": 19, + "endColumn": 12, + "endOffset": 1109 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 936, + "endLine": 21, + "endColumn": 12, + "endOffset": 1159 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v17\\values-v17.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1114, + "endLine": 23, + "endColumn": 12, + "endOffset": 1337 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1164, + "endLine": 25, + "endColumn": 12, + "endOffset": 1401 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v17\\values-v17.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1342, + "endLine": 27, + "endColumn": 12, + "endOffset": 1579 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1406, + "endLine": 28, + "endColumn": 12, + "endOffset": 1572 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v17\\values-v17.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1584, + "endLine": 30, + "endColumn": 12, + "endOffset": 1750 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1577, + "endLine": 31, + "endColumn": 12, + "endOffset": 1746 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v17\\values-v17.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 1755, + "endLine": 33, + "endColumn": 12, + "endOffset": 1924 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 1751, + "endLine": 34, + "endColumn": 12, + "endOffset": 1915 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v17\\values-v17.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 1929, + "endLine": 36, + "endColumn": 12, + "endOffset": 2093 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 1920, + "endLine": 38, + "endColumn": 12, + "endOffset": 2188 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v17\\values-v17.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2098, + "endLine": 40, + "endColumn": 12, + "endOffset": 2366 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2193, + "endLine": 41, + "endColumn": 12, + "endOffset": 2388 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v17\\values-v17.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2371, + "endLine": 43, + "endColumn": 12, + "endOffset": 2566 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2393, + "endLine": 45, + "endColumn": 12, + "endOffset": 2592 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v17\\values-v17.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 2571, + "endLine": 47, + "endColumn": 12, + "endOffset": 2770 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 2597, + "endLine": 49, + "endColumn": 12, + "endOffset": 2921 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v17\\values-v17.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 2775, + "endLine": 51, + "endColumn": 12, + "endOffset": 3099 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-v18.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-v18.json new file mode 100644 index 0000000..ee70bd9 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-v18.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-v18\\values-v18.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 48, + "endOffset": 99 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v18\\values-v18.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 48, + "endOffset": 273 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-v21.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-v21.json new file mode 100644 index 0000000..a915ccf --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-v21.json @@ -0,0 +1,1112 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-v21\\values-v21.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 68, + "endOffset": 119 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 124, + "endLine": 8, + "endColumn": 12, + "endOffset": 420 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values-v21\\styles.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 20, + "endLine": 7, + "endColumn": 12, + "endOffset": 321 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 425, + "endColumn": 90, + "endOffset": 511 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 516, + "endColumn": 102, + "endOffset": 614 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 619, + "endColumn": 102, + "endOffset": 717 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 722, + "endColumn": 104, + "endOffset": 822 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 827, + "endColumn": 106, + "endOffset": 929 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 934, + "endColumn": 108, + "endOffset": 1038 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1043, + "endColumn": 108, + "endOffset": 1147 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1152, + "endColumn": 108, + "endOffset": 1256 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1261, + "endColumn": 108, + "endOffset": 1365 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 108, + "endOffset": 1474 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1479, + "endColumn": 106, + "endOffset": 1581 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1586, + "endColumn": 102, + "endOffset": 1684 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1689, + "endColumn": 118, + "endOffset": 1803 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1808, + "endLine": 23, + "endColumn": 12, + "endOffset": 1958 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1963, + "endLine": 25, + "endColumn": 12, + "endOffset": 2113 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2118, + "endColumn": 104, + "endOffset": 2218 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2223, + "endColumn": 120, + "endOffset": 2339 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2344, + "endColumn": 100, + "endOffset": 2440 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2445, + "endLine": 30, + "endColumn": 12, + "endOffset": 2587 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2592, + "endLine": 32, + "endColumn": 12, + "endOffset": 2728 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2733, + "endColumn": 102, + "endOffset": 2831 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2836, + "endColumn": 118, + "endOffset": 2950 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2955, + "endColumn": 106, + "endOffset": 3057 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3062, + "endColumn": 102, + "endOffset": 3160 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 3165, + "endLine": 38, + "endColumn": 12, + "endOffset": 3307 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3312, + "endLine": 40, + "endColumn": 12, + "endOffset": 3462 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3467, + "endLine": 42, + "endColumn": 12, + "endOffset": 3633 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3638, + "endLine": 44, + "endColumn": 12, + "endOffset": 3782 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3787, + "endLine": 46, + "endColumn": 12, + "endOffset": 3947 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3952, + "endLine": 48, + "endColumn": 12, + "endOffset": 4104 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 4109, + "endLine": 50, + "endColumn": 12, + "endOffset": 4255 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4260, + "endColumn": 118, + "endOffset": 4374 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4379, + "endLine": 53, + "endColumn": 12, + "endOffset": 4523 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4528, + "endLine": 55, + "endColumn": 12, + "endOffset": 4672 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4677, + "endColumn": 111, + "endOffset": 4784 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4789, + "endColumn": 146, + "endOffset": 4931 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4936, + "endLine": 59, + "endColumn": 12, + "endOffset": 5084 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 5089, + "endLine": 61, + "endColumn": 12, + "endOffset": 5231 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 5236, + "endColumn": 74, + "endOffset": 5306 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5311, + "endColumn": 88, + "endOffset": 5395 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 5400, + "endColumn": 86, + "endOffset": 5482 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 5487, + "endColumn": 100, + "endOffset": 5583 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 5588, + "endLine": 109, + "endColumn": 12, + "endOffset": 8651 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 110, + "startColumn": 4, + "startOffset": 8656, + "endLine": 112, + "endColumn": 12, + "endOffset": 8837 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 113, + "startColumn": 4, + "startOffset": 8842, + "endLine": 156, + "endColumn": 12, + "endOffset": 11917 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 157, + "startColumn": 4, + "startOffset": 11922, + "endLine": 159, + "endColumn": 12, + "endOffset": 12115 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 160, + "startColumn": 4, + "startOffset": 12120, + "endLine": 161, + "endColumn": 12, + "endOffset": 12238 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 162, + "startColumn": 4, + "startOffset": 12243, + "endLine": 163, + "endColumn": 12, + "endOffset": 12361 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 164, + "startColumn": 4, + "startOffset": 12366, + "endLine": 165, + "endColumn": 12, + "endOffset": 12474 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 166, + "startColumn": 4, + "startOffset": 12479, + "endLine": 168, + "endColumn": 12, + "endOffset": 12657 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 169, + "startColumn": 4, + "startOffset": 12662, + "endLine": 170, + "endColumn": 12, + "endOffset": 12788 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 171, + "startColumn": 4, + "startOffset": 12793, + "endLine": 173, + "endColumn": 12, + "endOffset": 12989 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 174, + "startColumn": 4, + "startOffset": 12994, + "endColumn": 88, + "endOffset": 13078 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 175, + "startColumn": 4, + "startOffset": 13083, + "endColumn": 110, + "endOffset": 13189 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 176, + "startColumn": 4, + "startOffset": 13194, + "endColumn": 126, + "endOffset": 13316 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 177, + "startColumn": 4, + "startOffset": 13321, + "endColumn": 100, + "endOffset": 13417 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 178, + "startColumn": 4, + "startOffset": 13422, + "endColumn": 94, + "endOffset": 13512 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 179, + "startColumn": 4, + "startOffset": 13517, + "endColumn": 122, + "endOffset": 13635 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 180, + "startColumn": 4, + "startOffset": 13640, + "endColumn": 128, + "endOffset": 13764 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 181, + "startColumn": 4, + "startOffset": 13769, + "endColumn": 116, + "endOffset": 13881 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 182, + "startColumn": 4, + "startOffset": 13886, + "endLine": 184, + "endColumn": 12, + "endOffset": 14058 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 185, + "startColumn": 4, + "startOffset": 14063, + "endColumn": 98, + "endOffset": 14157 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 186, + "startColumn": 4, + "startOffset": 14162, + "endLine": 187, + "endColumn": 12, + "endOffset": 14292 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 188, + "startColumn": 4, + "startOffset": 14297, + "endLine": 189, + "endColumn": 12, + "endOffset": 14435 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 190, + "startColumn": 4, + "startOffset": 14440, + "endLine": 191, + "endColumn": 12, + "endOffset": 14570 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 192, + "startColumn": 4, + "startOffset": 14575, + "endLine": 193, + "endColumn": 12, + "endOffset": 14689 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 194, + "startColumn": 4, + "startOffset": 14694, + "endLine": 197, + "endColumn": 12, + "endOffset": 14890 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 198, + "startColumn": 4, + "startOffset": 14895, + "endLine": 199, + "endColumn": 12, + "endOffset": 15009 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 200, + "startColumn": 4, + "startOffset": 15014, + "endColumn": 92, + "endOffset": 15102 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 201, + "startColumn": 4, + "startOffset": 15107, + "endColumn": 110, + "endOffset": 15213 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 202, + "startColumn": 4, + "startOffset": 15218, + "endColumn": 55, + "endOffset": 15269 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 203, + "startColumn": 4, + "startOffset": 15274, + "endLine": 204, + "endColumn": 12, + "endOffset": 15376 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 205, + "startColumn": 4, + "startOffset": 15381, + "endLine": 208, + "endColumn": 12, + "endOffset": 15571 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 209, + "startColumn": 4, + "startOffset": 15576, + "endLine": 210, + "endColumn": 12, + "endOffset": 15682 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 211, + "startColumn": 4, + "startOffset": 15687, + "endLine": 212, + "endColumn": 12, + "endOffset": 15815 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 213, + "startColumn": 4, + "startOffset": 15820, + "endColumn": 94, + "endOffset": 15910 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 214, + "startColumn": 4, + "startOffset": 15915, + "endColumn": 90, + "endOffset": 16001 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 215, + "startColumn": 4, + "startOffset": 16006, + "endColumn": 90, + "endOffset": 16092 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 216, + "startColumn": 4, + "startOffset": 16097, + "endColumn": 116, + "endOffset": 16209 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 217, + "startColumn": 4, + "startOffset": 16214, + "endLine": 218, + "endColumn": 12, + "endOffset": 16348 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 219, + "startColumn": 4, + "startOffset": 16353, + "endLine": 225, + "endColumn": 12, + "endOffset": 16701 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 226, + "startColumn": 4, + "startOffset": 16706, + "endLine": 232, + "endColumn": 12, + "endOffset": 17066 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 233, + "startColumn": 4, + "startOffset": 17071, + "endLine": 242, + "endColumn": 12, + "endOffset": 17746 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 243, + "startColumn": 4, + "startOffset": 17751, + "endColumn": 56, + "endOffset": 17803 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 244, + "startColumn": 4, + "startOffset": 17808, + "endColumn": 57, + "endOffset": 17861 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v21\\values-v21.xml" + } + }, + { + "to": { + "startLine": 245, + "startColumn": 4, + "startOffset": 17866, + "endColumn": 121, + "endOffset": 17983 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-appinvite\\8.4.0\\res\\values-v21\\appinvite_styles.xml" + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-v22.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-v22.json new file mode 100644 index 0000000..6bfb62c --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-v22.json @@ -0,0 +1,87 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-v22\\values-v22.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 74, + "endOffset": 125 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v22\\values-v22.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 234, + "endColumn": 74, + "endOffset": 304 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 130, + "endColumn": 86, + "endOffset": 212 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v22\\values-v22.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 309, + "endColumn": 86, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 217, + "endLine": 6, + "endColumn": 12, + "endOffset": 393 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v22\\values-v22.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 396, + "endLine": 8, + "endColumn": 12, + "endOffset": 572 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 398, + "endLine": 9, + "endColumn": 12, + "endOffset": 586 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v22\\values-v22.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 577, + "endLine": 11, + "endColumn": 12, + "endOffset": 765 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-v23.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-v23.json new file mode 100644 index 0000000..f912451 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-v23.json @@ -0,0 +1,125 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-v23\\values-v23.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 134, + "endOffset": 185 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v23\\values-v23.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 239, + "endColumn": 134, + "endOffset": 369 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 190, + "endColumn": 74, + "endOffset": 260 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v23\\values-v23.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 553, + "endColumn": 74, + "endOffset": 623 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 265, + "endColumn": 86, + "endOffset": 347 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v23\\values-v23.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 628, + "endColumn": 86, + "endOffset": 710 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 352, + "endLine": 13, + "endColumn": 12, + "endOffset": 905 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v23\\values-v23.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 715, + "endLine": 17, + "endColumn": 12, + "endOffset": 1268 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 910, + "endLine": 22, + "endColumn": 12, + "endOffset": 1475 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v23\\values-v23.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1273, + "endLine": 26, + "endColumn": 12, + "endOffset": 1838 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1480, + "endColumn": 104, + "endOffset": 1580 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v23\\values-v23.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2022, + "endColumn": 104, + "endOffset": 2122 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-vi.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-vi.json new file mode 100644 index 0000000..f4f8c9a --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-vi.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-vi\\values-vi.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 113, + "endOffset": 214 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 113, + "endOffset": 338 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 219, + "endColumn": 107, + "endOffset": 322 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 343, + "endColumn": 107, + "endOffset": 446 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 327, + "endColumn": 122, + "endOffset": 445 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 451, + "endColumn": 122, + "endOffset": 569 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 450, + "endColumn": 107, + "endOffset": 553 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 574, + "endColumn": 107, + "endOffset": 677 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 558, + "endColumn": 108, + "endOffset": 662 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 682, + "endColumn": 108, + "endOffset": 786 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 667, + "endColumn": 83, + "endOffset": 746 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 791, + "endColumn": 83, + "endOffset": 870 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 751, + "endColumn": 102, + "endOffset": 849 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 875, + "endColumn": 102, + "endOffset": 973 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 854, + "endColumn": 118, + "endOffset": 968 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 118, + "endOffset": 1092 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 973, + "endColumn": 76, + "endOffset": 1045 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1097, + "endColumn": 76, + "endOffset": 1169 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 76, + "endOffset": 1122 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1174, + "endColumn": 76, + "endOffset": 1246 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1127, + "endColumn": 83, + "endOffset": 1206 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1251, + "endColumn": 83, + "endOffset": 1330 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1211, + "endColumn": 103, + "endOffset": 1310 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1335, + "endColumn": 103, + "endOffset": 1434 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1315, + "endColumn": 108, + "endOffset": 1419 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1439, + "endColumn": 108, + "endOffset": 1543 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1424, + "endColumn": 100, + "endOffset": 1520 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1548, + "endColumn": 100, + "endOffset": 1644 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1525, + "endColumn": 104, + "endOffset": 1625 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1649, + "endColumn": 104, + "endOffset": 1749 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1630, + "endColumn": 113, + "endOffset": 1739 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1754, + "endColumn": 113, + "endOffset": 1863 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1744, + "endColumn": 104, + "endOffset": 1844 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1868, + "endColumn": 104, + "endOffset": 1968 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1849, + "endColumn": 119, + "endOffset": 1964 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1973, + "endColumn": 119, + "endOffset": 2088 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 98, + "endOffset": 2063 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2093, + "endColumn": 98, + "endOffset": 2187 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2068, + "endColumn": 258, + "endOffset": 2322 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3566, + "endColumn": 262, + "endOffset": 3824 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2327, + "endColumn": 127, + "endOffset": 2450 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 127, + "endOffset": 1493 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2455, + "endColumn": 193, + "endOffset": 2644 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1172, + "endColumn": 197, + "endOffset": 1365 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2649, + "endColumn": 126, + "endOffset": 2771 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1045, + "endColumn": 126, + "endOffset": 1167 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2776, + "endColumn": 132, + "endOffset": 2904 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 912, + "endColumn": 132, + "endOffset": 1040 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2909, + "endColumn": 231, + "endOffset": 3136 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 436, + "endColumn": 235, + "endOffset": 667 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3141, + "endColumn": 235, + "endOffset": 3372 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 672, + "endColumn": 239, + "endOffset": 907 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3377, + "endColumn": 131, + "endOffset": 3504 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 304, + "endColumn": 131, + "endOffset": 431 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3509, + "endColumn": 195, + "endOffset": 3700 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2781, + "endColumn": 195, + "endOffset": 2972 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3705, + "endColumn": 127, + "endOffset": 3828 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2653, + "endColumn": 127, + "endOffset": 2776 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3833, + "endColumn": 171, + "endOffset": 4000 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2481, + "endColumn": 171, + "endOffset": 2648 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4005, + "endColumn": 114, + "endOffset": 4115 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2366, + "endColumn": 114, + "endOffset": 2476 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4120, + "endColumn": 133, + "endOffset": 4249 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 133, + "endOffset": 299 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4254, + "endColumn": 162, + "endOffset": 4412 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4276, + "endColumn": 162, + "endOffset": 4434 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4417, + "endColumn": 127, + "endOffset": 4540 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4148, + "endColumn": 127, + "endOffset": 4271 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4545, + "endColumn": 184, + "endOffset": 4725 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3963, + "endColumn": 184, + "endOffset": 4143 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4730, + "endColumn": 133, + "endOffset": 4859 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3829, + "endColumn": 133, + "endOffset": 3958 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4864, + "endColumn": 260, + "endOffset": 5120 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-vi\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 264, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5125, + "endColumn": 251, + "endOffset": 5372 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3104, + "endColumn": 255, + "endOffset": 3355 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5377, + "endColumn": 126, + "endOffset": 5499 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2977, + "endColumn": 126, + "endOffset": 3099 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5504, + "endColumn": 108, + "endOffset": 5608 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3360, + "endColumn": 108, + "endOffset": 3464 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5613, + "endColumn": 191, + "endOffset": 5800 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1630, + "endColumn": 195, + "endOffset": 1821 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5805, + "endColumn": 131, + "endOffset": 5932 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1498, + "endColumn": 131, + "endOffset": 1625 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5937, + "endColumn": 217, + "endOffset": 6150 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2144, + "endColumn": 221, + "endOffset": 2361 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6155, + "endColumn": 138, + "endOffset": 6289 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2005, + "endColumn": 138, + "endOffset": 2139 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6294, + "endColumn": 178, + "endOffset": 6468 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1826, + "endColumn": 178, + "endOffset": 2000 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6473, + "endColumn": 96, + "endOffset": 6565 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3469, + "endColumn": 96, + "endOffset": 3561 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6570, + "endColumn": 93, + "endOffset": 6659 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4439, + "endColumn": 93, + "endOffset": 4528 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6664, + "endColumn": 110, + "endOffset": 6770 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-vi\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4533, + "endColumn": 110, + "endOffset": 4639 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6775, + "endColumn": 106, + "endOffset": 6877 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 106, + "endOffset": 380 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6882, + "endColumn": 114, + "endOffset": 6992 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 385, + "endColumn": 114, + "endOffset": 495 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 6997, + "endColumn": 107, + "endOffset": 7100 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 500, + "endColumn": 107, + "endOffset": 603 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7105, + "endColumn": 106, + "endOffset": 7207 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 608, + "endColumn": 106, + "endOffset": 710 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7212, + "endColumn": 124, + "endOffset": 7332 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 715, + "endColumn": 124, + "endOffset": 835 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7337, + "endColumn": 98, + "endOffset": 7431 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 840, + "endColumn": 98, + "endOffset": 934 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7436, + "endColumn": 93, + "endOffset": 7525 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 939, + "endColumn": 93, + "endOffset": 1028 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7530, + "endColumn": 123, + "endOffset": 7649 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1033, + "endColumn": 123, + "endOffset": 1152 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7654, + "endColumn": 101, + "endOffset": 7751 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1157, + "endColumn": 101, + "endOffset": 1254 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7756, + "endColumn": 87, + "endOffset": 7839 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1259, + "endColumn": 87, + "endOffset": 1342 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7844, + "endColumn": 94, + "endOffset": 7934 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1347, + "endColumn": 94, + "endOffset": 1437 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 7939, + "endColumn": 102, + "endOffset": 8037 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-vi\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 328, + "endColumn": 102, + "endOffset": 426 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8042, + "endColumn": 97, + "endOffset": 8135 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-vi\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 97, + "endOffset": 323 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8140, + "endColumn": 100, + "endOffset": 8236 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-vi\\values-vi.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2192, + "endColumn": 100, + "endOffset": 2288 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 8241, + "endColumn": 109, + "endOffset": 8346 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-vi\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 109, + "endOffset": 335 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-w360dp-v13.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-w360dp-v13.json new file mode 100644 index 0000000..1817634 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-w360dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-w360dp-v13\\values-w360dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-w360dp\\values-w360dp.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 232, + "endColumn": 54, + "endOffset": 282 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-w480dp-v13.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-w480dp-v13.json new file mode 100644 index 0000000..0737852 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-w480dp-v13.json @@ -0,0 +1,45 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-w480dp-v13\\values-w480dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-w480dp\\values-w480dp.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 231, + "endColumn": 61, + "endOffset": 288 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-w480dp\\values-w480dp.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 470, + "endColumn": 71, + "endOffset": 537 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-w500dp-v13.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-w500dp-v13.json new file mode 100644 index 0000000..cad6736 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-w500dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-w500dp-v13\\values-w500dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-w500dp\\values-w500dp.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 232, + "endColumn": 54, + "endOffset": 282 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-w600dp-v13.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-w600dp-v13.json new file mode 100644 index 0000000..79f2390 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-w600dp-v13.json @@ -0,0 +1,45 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-w600dp-v13\\values-w600dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 63, + "endOffset": 114 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-w600dp\\values-w600dp.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 232, + "endColumn": 63, + "endOffset": 291 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 119, + "endColumn": 54, + "endOffset": 169 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-w600dp\\values-w600dp.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 296, + "endColumn": 54, + "endOffset": 346 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-w720dp-v13.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-w720dp-v13.json new file mode 100644 index 0000000..7eb65cd --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-w720dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-w720dp-v13\\values-w720dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 76, + "endOffset": 127 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-w720dp\\values-w720dp.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 231, + "endColumn": 76, + "endOffset": 303 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-w820dp-v13.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-w820dp-v13.json new file mode 100644 index 0000000..b9ebf3e --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-w820dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-w820dp-v13\\values-w820dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 57, + "endOffset": 108 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values-w820dp\\dimens.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 295, + "endColumn": 57, + "endOffset": 348 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-xlarge-land-v4.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-xlarge-land-v4.json new file mode 100644 index 0000000..42d0f3e --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-xlarge-land-v4.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-xlarge-land-v4\\values-xlarge-land-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 63, + "endOffset": 114 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-xlarge-land\\values-xlarge-land.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 237, + "endColumn": 63, + "endOffset": 296 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json new file mode 100644 index 0000000..6756af6 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json @@ -0,0 +1,178 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-xlarge-v4\\values-xlarge-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 76, + "endOffset": 127 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-xlarge\\values-xlarge.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 231, + "endColumn": 76, + "endOffset": 303 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 132, + "endColumn": 70, + "endOffset": 198 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-xlarge\\values-xlarge.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 485, + "endColumn": 70, + "endOffset": 551 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 203, + "endColumn": 70, + "endOffset": 269 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-xlarge\\values-xlarge.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 556, + "endColumn": 70, + "endOffset": 622 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 274, + "endColumn": 69, + "endOffset": 339 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-xlarge\\values-xlarge.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 627, + "endColumn": 69, + "endOffset": 692 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 344, + "endColumn": 69, + "endOffset": 409 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-xlarge\\values-xlarge.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 697, + "endColumn": 69, + "endOffset": 762 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 414, + "endColumn": 67, + "endOffset": 477 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-xlarge\\values-xlarge.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 767, + "endColumn": 67, + "endOffset": 830 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 482, + "endColumn": 67, + "endOffset": 545 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-xlarge\\values-xlarge.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 835, + "endColumn": 67, + "endOffset": 898 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 550, + "endColumn": 63, + "endOffset": 609 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-xlarge\\values-xlarge.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 903, + "endColumn": 63, + "endOffset": 962 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 614, + "endColumn": 54, + "endOffset": 664 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-xlarge\\values-xlarge.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 967, + "endColumn": 54, + "endOffset": 1017 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-zh-rCN.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-zh-rCN.json new file mode 100644 index 0000000..e29aae9 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-zh-rCN.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-zh-rCN\\values-zh-rCN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 95, + "endOffset": 196 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 95, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 201, + "endColumn": 106, + "endOffset": 303 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 329, + "endColumn": 106, + "endOffset": 431 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 308, + "endColumn": 122, + "endOffset": 426 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 436, + "endColumn": 122, + "endOffset": 554 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 431, + "endColumn": 94, + "endOffset": 521 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 559, + "endColumn": 94, + "endOffset": 649 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 526, + "endColumn": 99, + "endOffset": 621 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 654, + "endColumn": 99, + "endOffset": 749 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 626, + "endColumn": 81, + "endOffset": 703 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 754, + "endColumn": 81, + "endOffset": 831 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 96, + "endOffset": 800 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 836, + "endColumn": 96, + "endOffset": 928 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 805, + "endColumn": 105, + "endOffset": 906 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 933, + "endColumn": 105, + "endOffset": 1034 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 911, + "endColumn": 75, + "endOffset": 982 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1039, + "endColumn": 75, + "endOffset": 1110 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 987, + "endColumn": 75, + "endOffset": 1058 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1115, + "endColumn": 75, + "endOffset": 1186 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1063, + "endColumn": 77, + "endOffset": 1136 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1191, + "endColumn": 77, + "endOffset": 1264 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1141, + "endColumn": 95, + "endOffset": 1232 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1269, + "endColumn": 95, + "endOffset": 1360 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1237, + "endColumn": 95, + "endOffset": 1328 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1365, + "endColumn": 95, + "endOffset": 1456 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1333, + "endColumn": 94, + "endOffset": 1423 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1461, + "endColumn": 94, + "endOffset": 1551 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1428, + "endColumn": 96, + "endOffset": 1520 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1556, + "endColumn": 96, + "endOffset": 1648 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1525, + "endColumn": 94, + "endOffset": 1615 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1653, + "endColumn": 94, + "endOffset": 1743 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1620, + "endColumn": 97, + "endOffset": 1713 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1748, + "endColumn": 97, + "endOffset": 1841 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1718, + "endColumn": 111, + "endOffset": 1825 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1846, + "endColumn": 111, + "endOffset": 1953 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1830, + "endColumn": 93, + "endOffset": 1919 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1958, + "endColumn": 93, + "endOffset": 2047 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1924, + "endColumn": 188, + "endOffset": 2108 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2974, + "endColumn": 192, + "endOffset": 3162 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2113, + "endColumn": 117, + "endOffset": 2226 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 117, + "endOffset": 1276 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2231, + "endColumn": 160, + "endOffset": 2387 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 998, + "endColumn": 164, + "endOffset": 1158 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2392, + "endColumn": 116, + "endOffset": 2504 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 881, + "endColumn": 116, + "endOffset": 993 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2509, + "endColumn": 118, + "endOffset": 2623 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 762, + "endColumn": 118, + "endOffset": 876 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2628, + "endColumn": 169, + "endOffset": 2793 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 411, + "endColumn": 173, + "endOffset": 580 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2798, + "endColumn": 172, + "endOffset": 2966 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 585, + "endColumn": 176, + "endOffset": 757 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2971, + "endColumn": 117, + "endOffset": 3084 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 293, + "endColumn": 117, + "endOffset": 406 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3089, + "endColumn": 128, + "endOffset": 3213 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2345, + "endColumn": 128, + "endOffset": 2469 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3218, + "endColumn": 109, + "endOffset": 3323 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2235, + "endColumn": 109, + "endOffset": 2340 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3328, + "endColumn": 135, + "endOffset": 3459 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2099, + "endColumn": 135, + "endOffset": 2230 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3464, + "endColumn": 110, + "endOffset": 3570 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1988, + "endColumn": 110, + "endOffset": 2094 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 3575, + "endColumn": 122, + "endOffset": 3693 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 122, + "endOffset": 288 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 3698, + "endColumn": 128, + "endOffset": 3822 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3520, + "endColumn": 128, + "endOffset": 3644 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 3827, + "endColumn": 117, + "endOffset": 3940 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3402, + "endColumn": 117, + "endOffset": 3515 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3945, + "endColumn": 122, + "endOffset": 4063 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3279, + "endColumn": 122, + "endOffset": 3397 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4068, + "endColumn": 111, + "endOffset": 4175 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3167, + "endColumn": 111, + "endOffset": 3274 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4180, + "endColumn": 175, + "endOffset": 4351 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-zh-rCN\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 179, + "endOffset": 345 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4356, + "endColumn": 189, + "endOffset": 4541 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2592, + "endColumn": 193, + "endOffset": 2781 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 4546, + "endColumn": 117, + "endOffset": 4659 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2474, + "endColumn": 117, + "endOffset": 2587 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 4664, + "endColumn": 102, + "endOffset": 4762 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2786, + "endColumn": 102, + "endOffset": 2884 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 4767, + "endColumn": 160, + "endOffset": 4923 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1398, + "endColumn": 164, + "endOffset": 1558 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 4928, + "endColumn": 116, + "endOffset": 5040 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1281, + "endColumn": 116, + "endOffset": 1393 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5045, + "endColumn": 162, + "endOffset": 5203 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1821, + "endColumn": 166, + "endOffset": 1983 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5208, + "endColumn": 119, + "endOffset": 5323 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1701, + "endColumn": 119, + "endOffset": 1816 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 5328, + "endColumn": 137, + "endOffset": 5461 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1563, + "endColumn": 137, + "endOffset": 1696 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 5466, + "endColumn": 84, + "endOffset": 5546 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2889, + "endColumn": 84, + "endOffset": 2969 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 5551, + "endColumn": 86, + "endOffset": 5633 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3649, + "endColumn": 86, + "endOffset": 3731 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 5638, + "endColumn": 103, + "endOffset": 5737 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rCN\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3736, + "endColumn": 103, + "endOffset": 3835 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 5742, + "endColumn": 102, + "endOffset": 5840 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 102, + "endOffset": 380 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 5845, + "endColumn": 98, + "endOffset": 5939 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 385, + "endColumn": 98, + "endOffset": 479 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 5944, + "endColumn": 92, + "endOffset": 6032 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 484, + "endColumn": 92, + "endOffset": 572 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6037, + "endColumn": 98, + "endOffset": 6131 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 577, + "endColumn": 98, + "endOffset": 671 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 6136, + "endColumn": 110, + "endOffset": 6242 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 676, + "endColumn": 110, + "endOffset": 782 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 6247, + "endColumn": 92, + "endOffset": 6335 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 787, + "endColumn": 92, + "endOffset": 875 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 6340, + "endColumn": 91, + "endOffset": 6427 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 880, + "endColumn": 91, + "endOffset": 967 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 6432, + "endColumn": 108, + "endOffset": 6536 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 972, + "endColumn": 108, + "endOffset": 1076 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 6541, + "endColumn": 93, + "endOffset": 6630 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1081, + "endColumn": 93, + "endOffset": 1170 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 6635, + "endColumn": 81, + "endOffset": 6712 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1175, + "endColumn": 81, + "endOffset": 1252 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 6717, + "endColumn": 88, + "endOffset": 6801 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1257, + "endColumn": 88, + "endOffset": 1341 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 6806, + "endColumn": 96, + "endOffset": 6898 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-zh-rCN\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 322, + "endColumn": 96, + "endOffset": 414 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 6903, + "endColumn": 91, + "endOffset": 6990 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-zh-rCN\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 91, + "endOffset": 317 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 6995, + "endColumn": 100, + "endOffset": 7091 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2052, + "endColumn": 100, + "endOffset": 2148 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 7096, + "endColumn": 101, + "endOffset": 7193 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-zh-rCN\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 101, + "endOffset": 327 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-zh-rHK.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-zh-rHK.json new file mode 100644 index 0000000..bf5736b --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-zh-rHK.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-zh-rHK\\values-zh-rHK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 94, + "endOffset": 195 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 94, + "endOffset": 323 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 200, + "endColumn": 106, + "endOffset": 302 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 328, + "endColumn": 106, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 307, + "endColumn": 122, + "endOffset": 425 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 435, + "endColumn": 122, + "endOffset": 553 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 430, + "endColumn": 92, + "endOffset": 518 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 558, + "endColumn": 92, + "endOffset": 646 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 523, + "endColumn": 99, + "endOffset": 618 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 651, + "endColumn": 99, + "endOffset": 746 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 81, + "endOffset": 700 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 751, + "endColumn": 81, + "endOffset": 828 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 705, + "endColumn": 96, + "endOffset": 797 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 833, + "endColumn": 96, + "endOffset": 925 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 802, + "endColumn": 107, + "endOffset": 905 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 930, + "endColumn": 107, + "endOffset": 1033 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 910, + "endColumn": 75, + "endOffset": 981 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1038, + "endColumn": 75, + "endOffset": 1109 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 986, + "endColumn": 75, + "endOffset": 1057 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1114, + "endColumn": 75, + "endOffset": 1185 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 77, + "endOffset": 1135 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1190, + "endColumn": 77, + "endOffset": 1263 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1140, + "endColumn": 95, + "endOffset": 1231 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1268, + "endColumn": 95, + "endOffset": 1359 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1236, + "endColumn": 95, + "endOffset": 1327 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 95, + "endOffset": 1455 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1332, + "endColumn": 94, + "endOffset": 1422 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1460, + "endColumn": 94, + "endOffset": 1550 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1427, + "endColumn": 96, + "endOffset": 1519 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1555, + "endColumn": 96, + "endOffset": 1647 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1524, + "endColumn": 94, + "endOffset": 1614 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1652, + "endColumn": 94, + "endOffset": 1742 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1619, + "endColumn": 97, + "endOffset": 1712 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1747, + "endColumn": 97, + "endOffset": 1840 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1717, + "endColumn": 112, + "endOffset": 1825 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1845, + "endColumn": 112, + "endOffset": 1953 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1830, + "endColumn": 93, + "endOffset": 1919 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1958, + "endColumn": 93, + "endOffset": 2047 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1924, + "endColumn": 184, + "endOffset": 2104 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2973, + "endColumn": 188, + "endOffset": 3157 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2109, + "endColumn": 117, + "endOffset": 2222 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1166, + "endColumn": 117, + "endOffset": 1279 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2227, + "endColumn": 159, + "endOffset": 2382 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1002, + "endColumn": 163, + "endOffset": 1161 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2387, + "endColumn": 116, + "endOffset": 2499 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 885, + "endColumn": 116, + "endOffset": 997 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2504, + "endColumn": 118, + "endOffset": 2618 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 766, + "endColumn": 118, + "endOffset": 880 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2623, + "endColumn": 171, + "endOffset": 2790 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 411, + "endColumn": 175, + "endOffset": 582 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2795, + "endColumn": 174, + "endOffset": 2965 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 587, + "endColumn": 178, + "endOffset": 761 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2970, + "endColumn": 117, + "endOffset": 3083 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 293, + "endColumn": 117, + "endOffset": 406 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3088, + "endColumn": 127, + "endOffset": 3211 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2351, + "endColumn": 127, + "endOffset": 2474 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3216, + "endColumn": 109, + "endOffset": 3321 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2241, + "endColumn": 109, + "endOffset": 2346 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3326, + "endColumn": 135, + "endOffset": 3457 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2105, + "endColumn": 135, + "endOffset": 2236 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3462, + "endColumn": 110, + "endOffset": 3568 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1994, + "endColumn": 110, + "endOffset": 2100 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 3573, + "endColumn": 122, + "endOffset": 3691 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 122, + "endOffset": 288 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 3696, + "endColumn": 127, + "endOffset": 3819 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3519, + "endColumn": 127, + "endOffset": 3642 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 3824, + "endColumn": 119, + "endOffset": 3939 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3399, + "endColumn": 119, + "endOffset": 3514 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3944, + "endColumn": 124, + "endOffset": 4064 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3274, + "endColumn": 124, + "endOffset": 3394 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4069, + "endColumn": 111, + "endOffset": 4176 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3162, + "endColumn": 111, + "endOffset": 3269 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4181, + "endColumn": 177, + "endOffset": 4354 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-zh-rHK\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 181, + "endOffset": 347 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4359, + "endColumn": 184, + "endOffset": 4539 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2597, + "endColumn": 188, + "endOffset": 2781 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 4544, + "endColumn": 117, + "endOffset": 4657 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2479, + "endColumn": 117, + "endOffset": 2592 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 4662, + "endColumn": 102, + "endOffset": 4760 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2786, + "endColumn": 102, + "endOffset": 2884 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 4765, + "endColumn": 159, + "endOffset": 4920 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1401, + "endColumn": 163, + "endOffset": 1560 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 4925, + "endColumn": 116, + "endOffset": 5037 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1284, + "endColumn": 116, + "endOffset": 1396 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5042, + "endColumn": 165, + "endOffset": 5203 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1824, + "endColumn": 169, + "endOffset": 1989 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5208, + "endColumn": 120, + "endOffset": 5324 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1703, + "endColumn": 120, + "endOffset": 1819 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 5329, + "endColumn": 137, + "endOffset": 5462 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1565, + "endColumn": 137, + "endOffset": 1698 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 5467, + "endColumn": 83, + "endOffset": 5546 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2889, + "endColumn": 83, + "endOffset": 2968 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 5551, + "endColumn": 86, + "endOffset": 5633 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3647, + "endColumn": 86, + "endOffset": 3729 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 5638, + "endColumn": 101, + "endOffset": 5735 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rHK\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3734, + "endColumn": 101, + "endOffset": 3831 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 5740, + "endColumn": 102, + "endOffset": 5838 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 102, + "endOffset": 380 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 5843, + "endColumn": 98, + "endOffset": 5937 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 385, + "endColumn": 98, + "endOffset": 479 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 5942, + "endColumn": 92, + "endOffset": 6030 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 484, + "endColumn": 92, + "endOffset": 572 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6035, + "endColumn": 98, + "endOffset": 6129 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 577, + "endColumn": 98, + "endOffset": 671 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 6134, + "endColumn": 108, + "endOffset": 6238 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 676, + "endColumn": 108, + "endOffset": 780 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 6243, + "endColumn": 92, + "endOffset": 6331 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 785, + "endColumn": 92, + "endOffset": 873 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 6336, + "endColumn": 91, + "endOffset": 6423 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 878, + "endColumn": 91, + "endOffset": 965 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 6428, + "endColumn": 108, + "endOffset": 6532 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 970, + "endColumn": 108, + "endOffset": 1074 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 6537, + "endColumn": 93, + "endOffset": 6626 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1079, + "endColumn": 93, + "endOffset": 1168 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 6631, + "endColumn": 81, + "endOffset": 6708 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1173, + "endColumn": 81, + "endOffset": 1250 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 6713, + "endColumn": 88, + "endOffset": 6797 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1255, + "endColumn": 88, + "endOffset": 1339 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 6802, + "endColumn": 94, + "endOffset": 6892 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-zh-rHK\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 322, + "endColumn": 94, + "endOffset": 412 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 6897, + "endColumn": 91, + "endOffset": 6984 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-zh-rHK\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 91, + "endOffset": 317 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 6989, + "endColumn": 101, + "endOffset": 7086 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2052, + "endColumn": 101, + "endOffset": 2149 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 7091, + "endColumn": 101, + "endOffset": 7188 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-zh-rHK\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 101, + "endOffset": 327 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-zh-rTW.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-zh-rTW.json new file mode 100644 index 0000000..7694ccf --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-zh-rTW.json @@ -0,0 +1,1204 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-zh-rTW\\values-zh-rTW.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 94, + "endOffset": 195 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 233, + "endColumn": 94, + "endOffset": 323 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 200, + "endColumn": 106, + "endOffset": 302 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 328, + "endColumn": 106, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 307, + "endColumn": 122, + "endOffset": 425 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 435, + "endColumn": 122, + "endOffset": 553 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 430, + "endColumn": 92, + "endOffset": 518 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 558, + "endColumn": 92, + "endOffset": 646 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 523, + "endColumn": 99, + "endOffset": 618 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 651, + "endColumn": 99, + "endOffset": 746 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 81, + "endOffset": 700 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 751, + "endColumn": 81, + "endOffset": 828 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 705, + "endColumn": 96, + "endOffset": 797 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 833, + "endColumn": 96, + "endOffset": 925 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 802, + "endColumn": 107, + "endOffset": 905 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 930, + "endColumn": 107, + "endOffset": 1033 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 910, + "endColumn": 75, + "endOffset": 981 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1038, + "endColumn": 75, + "endOffset": 1109 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 986, + "endColumn": 75, + "endOffset": 1057 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1114, + "endColumn": 75, + "endOffset": 1185 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 77, + "endOffset": 1135 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1190, + "endColumn": 77, + "endOffset": 1263 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1140, + "endColumn": 95, + "endOffset": 1231 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1268, + "endColumn": 95, + "endOffset": 1359 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1236, + "endColumn": 95, + "endOffset": 1327 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 95, + "endOffset": 1455 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1332, + "endColumn": 94, + "endOffset": 1422 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1460, + "endColumn": 94, + "endOffset": 1550 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1427, + "endColumn": 96, + "endOffset": 1519 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1555, + "endColumn": 96, + "endOffset": 1647 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1524, + "endColumn": 94, + "endOffset": 1614 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1652, + "endColumn": 94, + "endOffset": 1742 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1619, + "endColumn": 99, + "endOffset": 1714 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1747, + "endColumn": 99, + "endOffset": 1842 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1719, + "endColumn": 112, + "endOffset": 1827 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1847, + "endColumn": 112, + "endOffset": 1955 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1832, + "endColumn": 93, + "endOffset": 1921 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1960, + "endColumn": 93, + "endOffset": 2049 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1926, + "endColumn": 192, + "endOffset": 2114 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2975, + "endColumn": 196, + "endOffset": 3167 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2119, + "endColumn": 117, + "endOffset": 2232 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1166, + "endColumn": 117, + "endOffset": 1279 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2237, + "endColumn": 159, + "endOffset": 2392 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1002, + "endColumn": 163, + "endOffset": 1161 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2397, + "endColumn": 116, + "endOffset": 2509 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 885, + "endColumn": 116, + "endOffset": 997 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2514, + "endColumn": 118, + "endOffset": 2628 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 766, + "endColumn": 118, + "endOffset": 880 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2633, + "endColumn": 171, + "endOffset": 2800 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 411, + "endColumn": 175, + "endOffset": 582 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2805, + "endColumn": 174, + "endOffset": 2975 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 587, + "endColumn": 178, + "endOffset": 761 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2980, + "endColumn": 117, + "endOffset": 3093 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 293, + "endColumn": 117, + "endOffset": 406 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3098, + "endColumn": 130, + "endOffset": 3224 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2340, + "endColumn": 130, + "endOffset": 2466 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3229, + "endColumn": 109, + "endOffset": 3334 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2230, + "endColumn": 109, + "endOffset": 2335 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3339, + "endColumn": 131, + "endOffset": 3466 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2098, + "endColumn": 131, + "endOffset": 2225 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 3471, + "endColumn": 110, + "endOffset": 3577 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1987, + "endColumn": 110, + "endOffset": 2093 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 3582, + "endColumn": 122, + "endOffset": 3700 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 122, + "endOffset": 288 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 3705, + "endColumn": 129, + "endOffset": 3830 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3530, + "endColumn": 129, + "endOffset": 3655 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 3835, + "endColumn": 120, + "endOffset": 3951 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3409, + "endColumn": 120, + "endOffset": 3525 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3956, + "endColumn": 124, + "endOffset": 4076 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 3284, + "endColumn": 124, + "endOffset": 3404 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4081, + "endColumn": 111, + "endOffset": 4188 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3172, + "endColumn": 111, + "endOffset": 3279 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4193, + "endColumn": 181, + "endOffset": 4370 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-zh-rTW\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 185, + "endOffset": 351 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 4375, + "endColumn": 193, + "endOffset": 4564 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2589, + "endColumn": 197, + "endOffset": 2782 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 4569, + "endColumn": 117, + "endOffset": 4682 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2471, + "endColumn": 117, + "endOffset": 2584 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 4687, + "endColumn": 102, + "endOffset": 4785 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2787, + "endColumn": 102, + "endOffset": 2885 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 4790, + "endColumn": 159, + "endOffset": 4945 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1401, + "endColumn": 163, + "endOffset": 1560 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 4950, + "endColumn": 116, + "endOffset": 5062 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1284, + "endColumn": 116, + "endOffset": 1396 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 5067, + "endColumn": 160, + "endOffset": 5223 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1822, + "endColumn": 164, + "endOffset": 1982 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 5228, + "endColumn": 118, + "endOffset": 5342 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1703, + "endColumn": 118, + "endOffset": 1817 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 5347, + "endColumn": 137, + "endOffset": 5480 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1565, + "endColumn": 137, + "endOffset": 1698 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 5485, + "endColumn": 84, + "endOffset": 5565 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2890, + "endColumn": 84, + "endOffset": 2970 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 5570, + "endColumn": 86, + "endOffset": 5652 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3660, + "endColumn": 86, + "endOffset": 3742 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 5657, + "endColumn": 103, + "endOffset": 5756 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zh-rTW\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3747, + "endColumn": 103, + "endOffset": 3846 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 5761, + "endColumn": 102, + "endOffset": 5859 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 102, + "endOffset": 380 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 5864, + "endColumn": 100, + "endOffset": 5960 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 385, + "endColumn": 100, + "endOffset": 481 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 5965, + "endColumn": 92, + "endOffset": 6053 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 486, + "endColumn": 92, + "endOffset": 574 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 6058, + "endColumn": 98, + "endOffset": 6152 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 579, + "endColumn": 98, + "endOffset": 673 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 6157, + "endColumn": 109, + "endOffset": 6262 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 678, + "endColumn": 109, + "endOffset": 783 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 6267, + "endColumn": 92, + "endOffset": 6355 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 92, + "endOffset": 876 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 6360, + "endColumn": 91, + "endOffset": 6447 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 881, + "endColumn": 91, + "endOffset": 968 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 6452, + "endColumn": 108, + "endOffset": 6556 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 973, + "endColumn": 108, + "endOffset": 1077 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 6561, + "endColumn": 93, + "endOffset": 6650 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1082, + "endColumn": 93, + "endOffset": 1171 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 6655, + "endColumn": 81, + "endOffset": 6732 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1176, + "endColumn": 81, + "endOffset": 1253 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 6737, + "endColumn": 88, + "endOffset": 6821 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1258, + "endColumn": 88, + "endOffset": 1342 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 6826, + "endColumn": 94, + "endOffset": 6916 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-zh-rTW\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 322, + "endColumn": 94, + "endOffset": 412 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 6921, + "endColumn": 91, + "endOffset": 7008 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-zh-rTW\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 91, + "endOffset": 317 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 7013, + "endColumn": 100, + "endOffset": 7109 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2054, + "endColumn": 100, + "endOffset": 2150 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 7114, + "endColumn": 101, + "endOffset": 7211 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values-zh-rTW\\wallet_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 101, + "endOffset": 327 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values-zu.json b/GPS/app/build/intermediates/blame/res/debug/multi/values-zu.json new file mode 100644 index 0000000..a4b9aa8 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values-zu.json @@ -0,0 +1,1185 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values-zu\\values-zu.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endColumn": 107, + "endOffset": 208 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 229, + "endColumn": 107, + "endOffset": 332 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 213, + "endColumn": 107, + "endOffset": 316 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 337, + "endColumn": 107, + "endOffset": 440 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 321, + "endColumn": 122, + "endOffset": 439 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 445, + "endColumn": 122, + "endOffset": 563 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 444, + "endColumn": 106, + "endOffset": 546 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 568, + "endColumn": 106, + "endOffset": 670 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 551, + "endColumn": 113, + "endOffset": 660 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 675, + "endColumn": 113, + "endOffset": 784 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 665, + "endColumn": 87, + "endOffset": 748 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 789, + "endColumn": 87, + "endOffset": 872 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 753, + "endColumn": 102, + "endOffset": 851 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 877, + "endColumn": 102, + "endOffset": 975 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 856, + "endColumn": 126, + "endOffset": 978 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 980, + "endColumn": 126, + "endOffset": 1102 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 983, + "endColumn": 79, + "endOffset": 1058 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1107, + "endColumn": 79, + "endOffset": 1182 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1063, + "endColumn": 79, + "endOffset": 1138 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1187, + "endColumn": 79, + "endOffset": 1262 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1143, + "endColumn": 85, + "endOffset": 1224 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1267, + "endColumn": 85, + "endOffset": 1348 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1229, + "endColumn": 103, + "endOffset": 1328 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1353, + "endColumn": 103, + "endOffset": 1452 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1333, + "endColumn": 105, + "endOffset": 1434 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1457, + "endColumn": 105, + "endOffset": 1558 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1439, + "endColumn": 97, + "endOffset": 1532 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1563, + "endColumn": 97, + "endOffset": 1656 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1537, + "endColumn": 106, + "endOffset": 1639 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1661, + "endColumn": 106, + "endOffset": 1763 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1644, + "endColumn": 105, + "endOffset": 1745 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1768, + "endColumn": 105, + "endOffset": 1869 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 105, + "endOffset": 1851 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 105, + "endOffset": 1975 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1856, + "endColumn": 119, + "endOffset": 1971 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1980, + "endColumn": 119, + "endOffset": 2095 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1976, + "endColumn": 95, + "endOffset": 2067 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2100, + "endColumn": 95, + "endOffset": 2191 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2072, + "endColumn": 266, + "endOffset": 2334 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 3628, + "endColumn": 270, + "endOffset": 3894 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2339, + "endColumn": 137, + "endOffset": 2472 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1395, + "endColumn": 137, + "endOffset": 1528 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2477, + "endColumn": 207, + "endOffset": 2680 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 1183, + "endColumn": 211, + "endOffset": 1390 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2685, + "endColumn": 136, + "endOffset": 2817 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 136, + "endOffset": 1178 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2822, + "endColumn": 131, + "endOffset": 2949 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 914, + "endColumn": 131, + "endOffset": 1041 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2954, + "endColumn": 228, + "endOffset": 3178 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 441, + "endColumn": 232, + "endOffset": 669 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3183, + "endColumn": 235, + "endOffset": 3414 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 674, + "endColumn": 239, + "endOffset": 909 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3419, + "endColumn": 130, + "endOffset": 3545 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 310, + "endColumn": 130, + "endOffset": 436 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3550, + "endColumn": 187, + "endOffset": 3733 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2861, + "endColumn": 187, + "endOffset": 3044 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 3738, + "endColumn": 131, + "endOffset": 3865 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2729, + "endColumn": 131, + "endOffset": 2856 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 3870, + "endColumn": 179, + "endOffset": 4045 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2549, + "endColumn": 179, + "endOffset": 2724 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 4050, + "endColumn": 126, + "endOffset": 4172 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2422, + "endColumn": 126, + "endOffset": 2544 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 4177, + "endColumn": 139, + "endOffset": 4312 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 139, + "endOffset": 305 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 4317, + "endColumn": 182, + "endOffset": 4495 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 4363, + "endColumn": 182, + "endOffset": 4541 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 4500, + "endColumn": 134, + "endOffset": 4630 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 4228, + "endColumn": 134, + "endOffset": 4358 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 4635, + "endColumn": 191, + "endOffset": 4822 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 4036, + "endColumn": 191, + "endOffset": 4223 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 4827, + "endColumn": 136, + "endOffset": 4959 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 3899, + "endColumn": 136, + "endOffset": 4031 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 4964, + "endColumn": 230, + "endOffset": 5190 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values-zu\\common_strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 234, + "endOffset": 400 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 5195, + "endColumn": 244, + "endOffset": 5435 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 3177, + "endColumn": 248, + "endOffset": 3421 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 5440, + "endColumn": 127, + "endOffset": 5563 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 3049, + "endColumn": 127, + "endOffset": 3172 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 5568, + "endColumn": 111, + "endOffset": 5675 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 3426, + "endColumn": 111, + "endOffset": 3533 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 5680, + "endColumn": 204, + "endOffset": 5880 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1666, + "endColumn": 208, + "endOffset": 1870 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 5885, + "endColumn": 132, + "endOffset": 6013 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1533, + "endColumn": 132, + "endOffset": 1661 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 6018, + "endColumn": 216, + "endOffset": 6230 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2201, + "endColumn": 220, + "endOffset": 2417 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 6235, + "endColumn": 138, + "endOffset": 6369 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 2062, + "endColumn": 138, + "endOffset": 2196 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 6374, + "endColumn": 186, + "endOffset": 6556 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1875, + "endColumn": 186, + "endOffset": 2057 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 6561, + "endColumn": 89, + "endOffset": 6646 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 3538, + "endColumn": 89, + "endOffset": 3623 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 6651, + "endColumn": 98, + "endOffset": 6745 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 4546, + "endColumn": 98, + "endOffset": 4640 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 6750, + "endColumn": 114, + "endOffset": 6860 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values-zu\\base_strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 4645, + "endColumn": 114, + "endOffset": 4755 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 6865, + "endColumn": 110, + "endOffset": 6971 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 110, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 6976, + "endColumn": 112, + "endOffset": 7084 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 112, + "endOffset": 497 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 7089, + "endColumn": 105, + "endOffset": 7190 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 502, + "endColumn": 105, + "endOffset": 603 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 7195, + "endColumn": 101, + "endOffset": 7292 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 608, + "endColumn": 101, + "endOffset": 705 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 7297, + "endColumn": 130, + "endOffset": 7423 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 710, + "endColumn": 130, + "endOffset": 836 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 7428, + "endColumn": 106, + "endOffset": 7530 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 841, + "endColumn": 106, + "endOffset": 943 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 7535, + "endColumn": 94, + "endOffset": 7625 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 948, + "endColumn": 94, + "endOffset": 1038 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 7630, + "endColumn": 126, + "endOffset": 7752 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1043, + "endColumn": 126, + "endOffset": 1165 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 7757, + "endColumn": 103, + "endOffset": 7856 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1170, + "endColumn": 103, + "endOffset": 1269 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 7861, + "endColumn": 87, + "endOffset": 7944 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1274, + "endColumn": 87, + "endOffset": 1357 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 7949, + "endColumn": 97, + "endOffset": 8042 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1362, + "endColumn": 97, + "endOffset": 1455 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 8047, + "endColumn": 101, + "endOffset": 8144 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-zu\\location_strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 325, + "endColumn": 101, + "endOffset": 422 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 8149, + "endColumn": 94, + "endOffset": 8239 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values-zu\\location_strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 230, + "endColumn": 94, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 8244, + "endColumn": 100, + "endOffset": 8340 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-zu\\values-zu.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2196, + "endColumn": 100, + "endOffset": 2292 + } + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/multi/values.json b/GPS/app/build/intermediates/blame/res/debug/multi/values.json new file mode 100644 index 0000000..4df6058 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/multi/values.json @@ -0,0 +1,8258 @@ +[ + { + "outputFile": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\values\\values.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 105, + "endLine": 13, + "endColumn": 19, + "endOffset": 450 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values\\strings.xml" + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 455, + "endColumn": 54, + "endOffset": 505 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 510, + "endColumn": 44, + "endOffset": 550 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 555, + "endColumn": 48, + "endOffset": 599 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 604, + "endColumn": 59, + "endOffset": 659 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 664, + "endColumn": 60, + "endOffset": 720 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 725, + "endColumn": 66, + "endOffset": 787 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 792, + "endColumn": 59, + "endOffset": 847 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 852, + "endColumn": 58, + "endOffset": 906 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 911, + "endColumn": 61, + "endOffset": 968 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 973, + "endColumn": 60, + "endOffset": 1029 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1034, + "endColumn": 64, + "endOffset": 1094 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1099, + "endColumn": 40, + "endOffset": 1135 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1140, + "endColumn": 54, + "endOffset": 1190 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1195, + "endColumn": 62, + "endOffset": 1253 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1258, + "endColumn": 75, + "endOffset": 1329 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1334, + "endColumn": 58, + "endOffset": 1388 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 1393, + "endColumn": 61, + "endOffset": 1450 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 1455, + "endColumn": 72, + "endOffset": 1523 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 1528, + "endColumn": 67, + "endOffset": 1591 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 1596, + "endColumn": 77, + "endOffset": 1669 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 1674, + "endColumn": 80, + "endOffset": 1750 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 1755, + "endColumn": 60, + "endOffset": 1811 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 1816, + "endColumn": 74, + "endOffset": 1886 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 1891, + "endColumn": 75, + "endOffset": 1962 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 1967, + "endColumn": 76, + "endOffset": 2039 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2044, + "endColumn": 77, + "endOffset": 2117 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2122, + "endColumn": 84, + "endOffset": 2202 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2207, + "endColumn": 81, + "endOffset": 2284 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2289, + "endColumn": 75, + "endOffset": 2360 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 2365, + "endColumn": 75, + "endOffset": 2436 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 2441, + "endColumn": 76, + "endOffset": 2513 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 2518, + "endColumn": 77, + "endOffset": 2591 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 2596, + "endColumn": 105, + "endOffset": 2697 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 2702, + "endColumn": 105, + "endOffset": 2803 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 2808, + "endColumn": 78, + "endOffset": 2882 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 2887, + "endColumn": 79, + "endOffset": 2962 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 2967, + "endColumn": 56, + "endOffset": 3019 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3024, + "endColumn": 57, + "endOffset": 3077 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3082, + "endColumn": 45, + "endOffset": 3123 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values\\colors.xml" + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 3128, + "endColumn": 46, + "endOffset": 3170 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values\\colors.xml" + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3175, + "endColumn": 50, + "endOffset": 3221 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values\\colors.xml" + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3226, + "endColumn": 60, + "endOffset": 3282 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_colors.xml" + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 3287, + "endColumn": 89, + "endOffset": 3372 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_colors.xml" + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 3377, + "endColumn": 79, + "endOffset": 3452 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_colors.xml" + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 3457, + "endColumn": 89, + "endOffset": 3542 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_colors.xml" + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 3547, + "endColumn": 89, + "endOffset": 3632 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_colors.xml" + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 3637, + "endColumn": 79, + "endOffset": 3712 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_colors.xml" + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 3717, + "endColumn": 80, + "endOffset": 3793 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_colors.xml" + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 3798, + "endColumn": 79, + "endOffset": 3873 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_colors.xml" + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 3878, + "endColumn": 79, + "endOffset": 3953 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_colors.xml" + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 3958, + "endColumn": 87, + "endOffset": 4041 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_colors.xml" + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 4046, + "endColumn": 77, + "endOffset": 4119 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_colors.xml" + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 4124, + "endColumn": 87, + "endOffset": 4207 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_colors.xml" + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 4212, + "endColumn": 87, + "endOffset": 4295 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_colors.xml" + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 4300, + "endColumn": 77, + "endOffset": 4373 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_colors.xml" + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 4378, + "endColumn": 78, + "endOffset": 4452 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_colors.xml" + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 4457, + "endColumn": 77, + "endOffset": 4530 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_colors.xml" + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 4535, + "endColumn": 77, + "endOffset": 4608 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_colors.xml" + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 4613, + "endColumn": 80, + "endOffset": 4689 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 4694, + "endColumn": 63, + "endOffset": 4753 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 4758, + "endColumn": 65, + "endOffset": 4819 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 4824, + "endColumn": 69, + "endOffset": 4889 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 4894, + "endColumn": 69, + "endOffset": 4959 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 4964, + "endColumn": 69, + "endOffset": 5029 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 5034, + "endColumn": 69, + "endOffset": 5099 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 5104, + "endColumn": 66, + "endOffset": 5166 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 5171, + "endColumn": 64, + "endOffset": 5231 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 5236, + "endColumn": 73, + "endOffset": 5305 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 5310, + "endColumn": 74, + "endOffset": 5380 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 5385, + "endColumn": 64, + "endOffset": 5445 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 5450, + "endColumn": 65, + "endOffset": 5511 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 5516, + "endColumn": 71, + "endOffset": 5583 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 5588, + "endColumn": 72, + "endOffset": 5656 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 87, + "startColumn": 4, + "startOffset": 5661, + "endColumn": 66, + "endOffset": 5723 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 88, + "startColumn": 4, + "startOffset": 5728, + "endColumn": 67, + "endOffset": 5791 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 89, + "startColumn": 4, + "startOffset": 5796, + "endColumn": 103, + "endOffset": 5895 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 5900, + "endColumn": 105, + "endOffset": 6001 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 6006, + "endColumn": 58, + "endOffset": 6060 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 92, + "startColumn": 4, + "startOffset": 6065, + "endColumn": 58, + "endOffset": 6119 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 93, + "startColumn": 4, + "startOffset": 6124, + "endColumn": 58, + "endOffset": 6178 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 94, + "startColumn": 4, + "startOffset": 6183, + "endColumn": 58, + "endOffset": 6237 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 95, + "startColumn": 4, + "startOffset": 6242, + "endColumn": 58, + "endOffset": 6296 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 96, + "startColumn": 4, + "startOffset": 6301, + "endColumn": 53, + "endOffset": 6350 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 97, + "startColumn": 4, + "startOffset": 6355, + "endColumn": 53, + "endOffset": 6404 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 98, + "startColumn": 4, + "startOffset": 6409, + "endColumn": 52, + "endOffset": 6457 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 99, + "startColumn": 4, + "startOffset": 6462, + "endColumn": 53, + "endOffset": 6511 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 100, + "startColumn": 4, + "startOffset": 6516, + "endColumn": 53, + "endOffset": 6565 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 101, + "startColumn": 4, + "startOffset": 6570, + "endColumn": 53, + "endOffset": 6619 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 102, + "startColumn": 4, + "startOffset": 6624, + "endColumn": 53, + "endOffset": 6673 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 103, + "startColumn": 4, + "startOffset": 6678, + "endColumn": 76, + "endOffset": 6750 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_colors.xml" + } + }, + { + "to": { + "startLine": 104, + "startColumn": 4, + "startOffset": 6755, + "endColumn": 86, + "endOffset": 6837 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_colors.xml" + } + }, + { + "to": { + "startLine": 105, + "startColumn": 4, + "startOffset": 6842, + "endColumn": 78, + "endOffset": 6916 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_colors.xml" + } + }, + { + "to": { + "startLine": 106, + "startColumn": 4, + "startOffset": 6921, + "endColumn": 66, + "endOffset": 6983 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_colors.xml" + } + }, + { + "to": { + "startLine": 107, + "startColumn": 4, + "startOffset": 6988, + "endColumn": 66, + "endOffset": 7050 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_colors.xml" + } + }, + { + "to": { + "startLine": 108, + "startColumn": 4, + "startOffset": 7055, + "endColumn": 64, + "endOffset": 7115 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_colors.xml" + } + }, + { + "to": { + "startLine": 109, + "startColumn": 4, + "startOffset": 7120, + "endColumn": 73, + "endOffset": 7189 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 110, + "startColumn": 4, + "startOffset": 7194, + "endColumn": 78, + "endOffset": 7268 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 111, + "startColumn": 4, + "startOffset": 7273, + "endColumn": 72, + "endOffset": 7341 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 112, + "startColumn": 4, + "startOffset": 7346, + "endColumn": 73, + "endOffset": 7415 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 113, + "startColumn": 4, + "startOffset": 7420, + "endColumn": 70, + "endOffset": 7486 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 114, + "startColumn": 4, + "startOffset": 7491, + "endColumn": 71, + "endOffset": 7558 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 115, + "startColumn": 4, + "startOffset": 7563, + "endColumn": 71, + "endOffset": 7630 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 116, + "startColumn": 4, + "startOffset": 7635, + "endColumn": 72, + "endOffset": 7703 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 117, + "startColumn": 4, + "startOffset": 7708, + "endColumn": 56, + "endOffset": 7760 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 118, + "startColumn": 4, + "startOffset": 7765, + "endColumn": 57, + "endOffset": 7818 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 119, + "startColumn": 4, + "startOffset": 7823, + "endColumn": 72, + "endOffset": 7891 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 120, + "startColumn": 4, + "startOffset": 7896, + "endColumn": 73, + "endOffset": 7965 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 121, + "startColumn": 4, + "startOffset": 7970, + "endColumn": 73, + "endOffset": 8039 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 122, + "startColumn": 4, + "startOffset": 8044, + "endColumn": 74, + "endOffset": 8114 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 123, + "startColumn": 4, + "startOffset": 8119, + "endColumn": 71, + "endOffset": 8186 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 124, + "startColumn": 4, + "startOffset": 8191, + "endColumn": 72, + "endOffset": 8259 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 125, + "startColumn": 4, + "startOffset": 8264, + "endColumn": 69, + "endOffset": 8329 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 126, + "startColumn": 4, + "startOffset": 8334, + "endColumn": 70, + "endOffset": 8400 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 127, + "startColumn": 4, + "startOffset": 8405, + "endColumn": 80, + "endOffset": 8481 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_colors.xml" + } + }, + { + "to": { + "startLine": 128, + "startColumn": 4, + "startOffset": 8486, + "endColumn": 70, + "endOffset": 8552 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_colors.xml" + } + }, + { + "to": { + "startLine": 129, + "startColumn": 4, + "startOffset": 8557, + "endColumn": 71, + "endOffset": 8624 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_colors.xml" + } + }, + { + "to": { + "startLine": 130, + "startColumn": 4, + "startOffset": 8629, + "endColumn": 76, + "endOffset": 8701 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_colors.xml" + } + }, + { + "to": { + "startLine": 131, + "startColumn": 4, + "startOffset": 8706, + "endColumn": 65, + "endOffset": 8767 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_colors.xml" + } + }, + { + "to": { + "startLine": 132, + "startColumn": 4, + "startOffset": 8772, + "endColumn": 84, + "endOffset": 8852 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_colors.xml" + } + }, + { + "to": { + "startLine": 133, + "startColumn": 4, + "startOffset": 8857, + "endColumn": 73, + "endOffset": 8926 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_colors.xml" + } + }, + { + "to": { + "startLine": 134, + "startColumn": 4, + "startOffset": 8931, + "endColumn": 69, + "endOffset": 8996 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_colors.xml" + } + }, + { + "to": { + "startLine": 135, + "startColumn": 4, + "startOffset": 9001, + "endColumn": 70, + "endOffset": 9067 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_colors.xml" + } + }, + { + "to": { + "startLine": 136, + "startColumn": 4, + "startOffset": 9072, + "endColumn": 66, + "endOffset": 9134 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_colors.xml" + } + }, + { + "to": { + "startLine": 137, + "startColumn": 4, + "startOffset": 9139, + "endColumn": 67, + "endOffset": 9202 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_colors.xml" + } + }, + { + "to": { + "startLine": 138, + "startColumn": 4, + "startOffset": 9207, + "endColumn": 58, + "endOffset": 9261 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_colors.xml" + } + }, + { + "to": { + "startLine": 139, + "startColumn": 4, + "startOffset": 9266, + "endColumn": 56, + "endOffset": 9318 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_colors.xml" + } + }, + { + "to": { + "startLine": 191, + "startColumn": 4, + "startOffset": 36408, + "endColumn": 68, + "endOffset": 36472 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 192, + "startColumn": 4, + "startOffset": 36477, + "endColumn": 69, + "endOffset": 36542 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 193, + "startColumn": 4, + "startOffset": 36547, + "endColumn": 73, + "endOffset": 36616 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 194, + "startColumn": 4, + "startOffset": 36621, + "endColumn": 75, + "endOffset": 36692 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 195, + "startColumn": 4, + "startOffset": 36697, + "endColumn": 76, + "endOffset": 36769 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 196, + "startColumn": 4, + "startOffset": 36774, + "endColumn": 75, + "endOffset": 36845 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 197, + "startColumn": 4, + "startOffset": 36850, + "endColumn": 76, + "endOffset": 36922 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 198, + "startColumn": 4, + "startOffset": 36927, + "endColumn": 63, + "endOffset": 36986 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 199, + "startColumn": 4, + "startOffset": 36991, + "endColumn": 64, + "endOffset": 37051 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 200, + "startColumn": 4, + "startOffset": 37056, + "endColumn": 68, + "endOffset": 37120 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 201, + "startColumn": 4, + "startOffset": 37125, + "endColumn": 76, + "endOffset": 37197 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 202, + "startColumn": 4, + "startOffset": 37202, + "endColumn": 74, + "endOffset": 37272 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 203, + "startColumn": 4, + "startOffset": 37277, + "endColumn": 68, + "endOffset": 37341 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 204, + "startColumn": 4, + "startOffset": 37346, + "endColumn": 67, + "endOffset": 37409 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 205, + "startColumn": 4, + "startOffset": 37414, + "endColumn": 76, + "endOffset": 37486 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 206, + "startColumn": 4, + "startOffset": 37491, + "endColumn": 65, + "endOffset": 37552 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 207, + "startColumn": 4, + "startOffset": 37557, + "endColumn": 96, + "endOffset": 37649 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 208, + "startColumn": 4, + "startOffset": 37654, + "endColumn": 64, + "endOffset": 37714 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 209, + "startColumn": 4, + "startOffset": 37719, + "endColumn": 68, + "endOffset": 37783 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 210, + "startColumn": 4, + "startOffset": 37788, + "endColumn": 98, + "endOffset": 37882 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 211, + "startColumn": 4, + "startOffset": 37887, + "endColumn": 58, + "endOffset": 37941 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 212, + "startColumn": 4, + "startOffset": 37946, + "endColumn": 57, + "endOffset": 37999 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 213, + "startColumn": 4, + "startOffset": 38004, + "endColumn": 56, + "endOffset": 38056 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 214, + "startColumn": 4, + "startOffset": 38061, + "endColumn": 58, + "endOffset": 38115 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 215, + "startColumn": 4, + "startOffset": 38120, + "endColumn": 70, + "endOffset": 38186 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 216, + "startColumn": 4, + "startOffset": 38191, + "endColumn": 71, + "endOffset": 38258 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 217, + "startColumn": 4, + "startOffset": 38263, + "endColumn": 71, + "endOffset": 38330 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 218, + "startColumn": 4, + "startOffset": 38335, + "endColumn": 71, + "endOffset": 38402 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 219, + "startColumn": 4, + "startOffset": 38407, + "endColumn": 71, + "endOffset": 38474 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 220, + "startColumn": 4, + "startOffset": 38479, + "endColumn": 67, + "endOffset": 38542 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 221, + "startColumn": 4, + "startOffset": 38547, + "endColumn": 67, + "endOffset": 38610 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 222, + "startColumn": 4, + "startOffset": 38615, + "endColumn": 58, + "endOffset": 38669 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 223, + "startColumn": 4, + "startOffset": 38674, + "endColumn": 62, + "endOffset": 38732 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 224, + "startColumn": 4, + "startOffset": 38737, + "endColumn": 89, + "endOffset": 38822 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 225, + "startColumn": 4, + "startOffset": 38827, + "endColumn": 90, + "endOffset": 38913 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 226, + "startColumn": 4, + "startOffset": 38918, + "endColumn": 59, + "endOffset": 38973 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 227, + "startColumn": 4, + "startOffset": 38978, + "endColumn": 65, + "endOffset": 39039 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 228, + "startColumn": 4, + "startOffset": 39044, + "endColumn": 66, + "endOffset": 39106 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 229, + "startColumn": 4, + "startOffset": 39111, + "endColumn": 65, + "endOffset": 39172 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 230, + "startColumn": 4, + "startOffset": 39177, + "endColumn": 69, + "endOffset": 39242 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 231, + "startColumn": 4, + "startOffset": 39247, + "endColumn": 63, + "endOffset": 39306 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 232, + "startColumn": 4, + "startOffset": 39311, + "endColumn": 52, + "endOffset": 39359 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 233, + "startColumn": 4, + "startOffset": 39364, + "endColumn": 112, + "endOffset": 39472 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 234, + "startColumn": 4, + "startOffset": 39477, + "endColumn": 57, + "endOffset": 39530 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 235, + "startColumn": 4, + "startOffset": 39535, + "endColumn": 64, + "endOffset": 39595 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 236, + "startColumn": 4, + "startOffset": 39600, + "endColumn": 63, + "endOffset": 39659 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 237, + "startColumn": 4, + "startOffset": 39664, + "endColumn": 74, + "endOffset": 39734 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 238, + "startColumn": 4, + "startOffset": 39739, + "endColumn": 72, + "endOffset": 39807 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 239, + "startColumn": 4, + "startOffset": 39812, + "endColumn": 71, + "endOffset": 39879 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 240, + "startColumn": 4, + "startOffset": 39884, + "endColumn": 48, + "endOffset": 39928 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 241, + "startColumn": 4, + "startOffset": 39933, + "endColumn": 60, + "endOffset": 39989 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 242, + "startColumn": 4, + "startOffset": 39994, + "endColumn": 60, + "endOffset": 40050 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 243, + "startColumn": 4, + "startOffset": 40055, + "endColumn": 60, + "endOffset": 40111 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 244, + "startColumn": 4, + "startOffset": 40116, + "endColumn": 61, + "endOffset": 40173 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 245, + "startColumn": 4, + "startOffset": 40178, + "endColumn": 63, + "endOffset": 40237 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 246, + "startColumn": 4, + "startOffset": 40242, + "endColumn": 63, + "endOffset": 40301 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 247, + "startColumn": 4, + "startOffset": 40306, + "endColumn": 63, + "endOffset": 40365 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 248, + "startColumn": 4, + "startOffset": 40370, + "endColumn": 64, + "endOffset": 40430 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 249, + "startColumn": 4, + "startOffset": 40435, + "endColumn": 62, + "endOffset": 40493 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 250, + "startColumn": 4, + "startOffset": 40498, + "endColumn": 59, + "endOffset": 40553 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 251, + "startColumn": 4, + "startOffset": 40558, + "endColumn": 60, + "endOffset": 40614 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 252, + "startColumn": 4, + "startOffset": 40619, + "endColumn": 58, + "endOffset": 40673 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 253, + "startColumn": 4, + "startOffset": 40678, + "endColumn": 59, + "endOffset": 40733 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 254, + "startColumn": 4, + "startOffset": 40738, + "endColumn": 61, + "endOffset": 40795 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 255, + "startColumn": 4, + "startOffset": 40800, + "endColumn": 70, + "endOffset": 40866 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 256, + "startColumn": 4, + "startOffset": 40871, + "endColumn": 59, + "endOffset": 40926 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 257, + "startColumn": 4, + "startOffset": 40931, + "endColumn": 67, + "endOffset": 40994 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 258, + "startColumn": 4, + "startOffset": 40999, + "endColumn": 57, + "endOffset": 41052 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values\\dimens.xml" + } + }, + { + "to": { + "startLine": 259, + "startColumn": 4, + "startOffset": 41057, + "endColumn": 55, + "endOffset": 41108 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values\\dimens.xml" + } + }, + { + "to": { + "startLine": 260, + "startColumn": 4, + "startOffset": 41113, + "endColumn": 53, + "endOffset": 41162 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 261, + "startColumn": 4, + "startOffset": 41167, + "endColumn": 55, + "endOffset": 41218 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 262, + "startColumn": 4, + "startOffset": 41223, + "endColumn": 54, + "endOffset": 41273 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 263, + "startColumn": 4, + "startOffset": 41278, + "endColumn": 50, + "endOffset": 41324 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 264, + "startColumn": 4, + "startOffset": 41329, + "endColumn": 51, + "endOffset": 41376 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 265, + "startColumn": 4, + "startOffset": 41381, + "endColumn": 53, + "endOffset": 41430 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 266, + "startColumn": 4, + "startOffset": 41435, + "endColumn": 62, + "endOffset": 41493 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 267, + "startColumn": 4, + "startOffset": 41498, + "endColumn": 58, + "endOffset": 41552 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 268, + "startColumn": 4, + "startOffset": 41557, + "endColumn": 61, + "endOffset": 41614 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 269, + "startColumn": 4, + "startOffset": 41619, + "endColumn": 58, + "endOffset": 41673 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 270, + "startColumn": 4, + "startOffset": 41678, + "endColumn": 59, + "endOffset": 41733 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 271, + "startColumn": 4, + "startOffset": 41738, + "endColumn": 62, + "endOffset": 41796 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 272, + "startColumn": 4, + "startOffset": 41801, + "endColumn": 67, + "endOffset": 41864 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 273, + "startColumn": 4, + "startOffset": 41869, + "endColumn": 74, + "endOffset": 41939 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 274, + "startColumn": 4, + "startOffset": 41944, + "endColumn": 71, + "endOffset": 42011 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 275, + "startColumn": 4, + "startOffset": 42016, + "endColumn": 70, + "endOffset": 42082 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 276, + "startColumn": 4, + "startOffset": 42087, + "endColumn": 55, + "endOffset": 42138 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 277, + "startColumn": 4, + "startOffset": 42143, + "endColumn": 70, + "endOffset": 42209 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 278, + "startColumn": 4, + "startOffset": 42214, + "endColumn": 56, + "endOffset": 42266 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 279, + "startColumn": 4, + "startOffset": 42271, + "endColumn": 56, + "endOffset": 42323 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 280, + "startColumn": 4, + "startOffset": 42328, + "endColumn": 65, + "endOffset": 42389 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 281, + "startColumn": 4, + "startOffset": 42394, + "endColumn": 63, + "endOffset": 42453 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 282, + "startColumn": 4, + "startOffset": 42458, + "endColumn": 70, + "endOffset": 42524 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 283, + "startColumn": 4, + "startOffset": 42529, + "endColumn": 56, + "endOffset": 42581 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 284, + "startColumn": 4, + "startOffset": 42586, + "endColumn": 52, + "endOffset": 42634 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 285, + "startColumn": 4, + "startOffset": 42639, + "endColumn": 62, + "endOffset": 42697 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 286, + "startColumn": 4, + "startOffset": 42702, + "endColumn": 51, + "endOffset": 42749 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 287, + "startColumn": 4, + "startOffset": 42754, + "endColumn": 57, + "endOffset": 42807 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 288, + "startColumn": 4, + "startOffset": 42812, + "endColumn": 85, + "endOffset": 42893 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 289, + "startColumn": 4, + "startOffset": 42898, + "endColumn": 86, + "endOffset": 42980 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 290, + "startColumn": 4, + "startOffset": 42985, + "endColumn": 41, + "endOffset": 43022 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values\\dimens.xml" + } + }, + { + "to": { + "startLine": 291, + "startColumn": 4, + "startOffset": 43027, + "endColumn": 89, + "endOffset": 43112 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 292, + "startColumn": 4, + "startOffset": 43117, + "endColumn": 86, + "endOffset": 43199 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 293, + "startColumn": 4, + "startOffset": 43204, + "endColumn": 87, + "endOffset": 43287 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 294, + "startColumn": 4, + "startOffset": 43292, + "endColumn": 74, + "endOffset": 43362 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\recyclerview-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 295, + "startColumn": 4, + "startOffset": 43367, + "endColumn": 72, + "endOffset": 43435 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 296, + "startColumn": 4, + "startOffset": 43440, + "endColumn": 61, + "endOffset": 43497 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 297, + "startColumn": 4, + "startOffset": 43502, + "endColumn": 60, + "endOffset": 43558 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 298, + "startColumn": 4, + "startOffset": 43563, + "endColumn": 56, + "endOffset": 43615 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 299, + "startColumn": 4, + "startOffset": 43620, + "endColumn": 64, + "endOffset": 43680 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_dimens.xml" + } + }, + { + "to": { + "startLine": 300, + "startColumn": 4, + "startOffset": 43685, + "endColumn": 74, + "endOffset": 43755 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_dimens.xml" + } + }, + { + "to": { + "startLine": 301, + "startColumn": 4, + "startOffset": 43760, + "endColumn": 73, + "endOffset": 43829 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_dimens.xml" + } + }, + { + "to": { + "startLine": 302, + "startColumn": 4, + "startOffset": 43834, + "endColumn": 67, + "endOffset": 43897 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_dimens.xml" + } + }, + { + "to": { + "startLine": 303, + "startColumn": 4, + "startOffset": 43902, + "endColumn": 78, + "endOffset": 43976 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_dimens.xml" + } + }, + { + "to": { + "startLine": 304, + "startColumn": 4, + "startOffset": 43981, + "endColumn": 73, + "endOffset": 44050 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_dimens.xml" + } + }, + { + "to": { + "startLine": 305, + "startColumn": 4, + "startOffset": 44055, + "endColumn": 75, + "endOffset": 44126 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_dimens.xml" + } + }, + { + "to": { + "startLine": 306, + "startColumn": 4, + "startOffset": 44131, + "endColumn": 76, + "endOffset": 44203 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_dimens.xml" + } + }, + { + "to": { + "startLine": 307, + "startColumn": 4, + "startOffset": 44208, + "endColumn": 63, + "endOffset": 44267 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_dimens.xml" + } + }, + { + "to": { + "startLine": 308, + "startColumn": 4, + "startOffset": 44272, + "endColumn": 65, + "endOffset": 44333 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_dimens.xml" + } + }, + { + "to": { + "startLine": 309, + "startColumn": 4, + "startOffset": 44338, + "endColumn": 71, + "endOffset": 44405 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 310, + "startColumn": 4, + "startOffset": 44410, + "endColumn": 56, + "endOffset": 44462 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 311, + "startColumn": 4, + "startOffset": 44467, + "endColumn": 47, + "endOffset": 44510 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 312, + "startColumn": 4, + "startOffset": 44515, + "endColumn": 48, + "endOffset": 44559 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 313, + "startColumn": 4, + "startOffset": 44564, + "endColumn": 50, + "endOffset": 44610 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 314, + "startColumn": 4, + "startOffset": 44615, + "endColumn": 49, + "endOffset": 44660 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\values\\cast_ids.xml" + } + }, + { + "to": { + "startLine": 315, + "startColumn": 4, + "startOffset": 44665, + "endColumn": 33, + "endOffset": 44694 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 316, + "startColumn": 4, + "startOffset": 44699, + "endColumn": 65, + "endOffset": 44760 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\recyclerview-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 317, + "startColumn": 4, + "startOffset": 44765, + "endColumn": 46, + "endOffset": 44807 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 318, + "startColumn": 4, + "startOffset": 44812, + "endColumn": 48, + "endOffset": 44856 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 319, + "startColumn": 4, + "startOffset": 44861, + "endColumn": 45, + "endOffset": 44902 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 320, + "startColumn": 4, + "startOffset": 44907, + "endColumn": 31, + "endOffset": 44934 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 321, + "startColumn": 4, + "startOffset": 44939, + "endColumn": 47, + "endOffset": 44982 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 322, + "startColumn": 4, + "startOffset": 44987, + "endColumn": 63, + "endOffset": 45046 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 323, + "startColumn": 4, + "startOffset": 45051, + "endColumn": 61, + "endOffset": 45108 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 324, + "startColumn": 4, + "startOffset": 45113, + "endColumn": 54, + "endOffset": 45163 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 325, + "startColumn": 4, + "startOffset": 45168, + "endColumn": 59, + "endOffset": 45223 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 326, + "startColumn": 4, + "startOffset": 45228, + "endColumn": 62, + "endOffset": 45286 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 327, + "startColumn": 4, + "startOffset": 45291, + "endColumn": 66, + "endOffset": 45353 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values\\version.xml" + } + }, + { + "to": { + "startLine": 328, + "startColumn": 4, + "startOffset": 45358, + "endColumn": 69, + "endOffset": 45423 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 329, + "startColumn": 4, + "startOffset": 45428, + "endColumn": 73, + "endOffset": 45497 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 330, + "startColumn": 4, + "startOffset": 45502, + "endColumn": 77, + "endOffset": 45575 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 331, + "startColumn": 4, + "startOffset": 45580, + "endColumn": 92, + "endOffset": 45668 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 332, + "startColumn": 4, + "startOffset": 45673, + "endColumn": 69, + "endOffset": 45738 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 333, + "startColumn": 4, + "startOffset": 45743, + "endColumn": 77, + "endOffset": 45816 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 334, + "startColumn": 4, + "startOffset": 45821, + "endColumn": 53, + "endOffset": 45870 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 335, + "startColumn": 4, + "startOffset": 45875, + "endColumn": 69, + "endOffset": 45940 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 336, + "startColumn": 4, + "startOffset": 45945, + "endColumn": 84, + "endOffset": 46025 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 337, + "startColumn": 4, + "startOffset": 46030, + "endColumn": 47, + "endOffset": 46073 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 338, + "startColumn": 4, + "startOffset": 46078, + "endColumn": 45, + "endOffset": 46119 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 339, + "startColumn": 4, + "startOffset": 46124, + "endColumn": 51, + "endOffset": 46171 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 340, + "startColumn": 4, + "startOffset": 46176, + "endColumn": 72, + "endOffset": 46244 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 341, + "startColumn": 4, + "startOffset": 46249, + "endColumn": 73, + "endOffset": 46318 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 342, + "startColumn": 4, + "startOffset": 46323, + "endColumn": 68, + "endOffset": 46387 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 343, + "startColumn": 4, + "startOffset": 46392, + "endColumn": 74, + "endOffset": 46462 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 344, + "startColumn": 4, + "startOffset": 46467, + "endColumn": 73, + "endOffset": 46536 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 345, + "startColumn": 4, + "startOffset": 46541, + "endColumn": 73, + "endOffset": 46610 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 346, + "startColumn": 4, + "startOffset": 46615, + "endColumn": 88, + "endOffset": 46699 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 347, + "startColumn": 4, + "startOffset": 46704, + "endColumn": 69, + "endOffset": 46769 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 348, + "startColumn": 4, + "startOffset": 46774, + "endColumn": 41, + "endOffset": 46811 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-ads\\8.4.0\\res\\values\\admob_strings.xml" + } + }, + { + "to": { + "startLine": 349, + "startColumn": 4, + "startOffset": 46816, + "endColumn": 40, + "endOffset": 46852 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values\\strings.xml" + } + }, + { + "to": { + "startLine": 350, + "startColumn": 4, + "startOffset": 46857, + "endColumn": 144, + "endOffset": 46997 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 351, + "startColumn": 4, + "startOffset": 47002, + "endColumn": 91, + "endOffset": 47089 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values\\auth_strings.xml" + } + }, + { + "to": { + "startLine": 352, + "startColumn": 4, + "startOffset": 47094, + "endColumn": 87, + "endOffset": 47177 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values\\auth_strings.xml" + } + }, + { + "to": { + "startLine": 353, + "startColumn": 4, + "startOffset": 47182, + "endColumn": 106, + "endOffset": 47284 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\values\\cast_strings.xml" + } + }, + { + "to": { + "startLine": 354, + "startColumn": 4, + "startOffset": 47289, + "endColumn": 108, + "endOffset": 47393 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\values\\cast_strings.xml" + } + }, + { + "to": { + "startLine": 355, + "startColumn": 4, + "startOffset": 47398, + "endColumn": 67, + "endOffset": 47461 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\values\\cast_strings.xml" + } + }, + { + "to": { + "startLine": 356, + "startColumn": 4, + "startOffset": 47466, + "endColumn": 86, + "endOffset": 47548 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 357, + "startColumn": 4, + "startOffset": 47553, + "endColumn": 231, + "endOffset": 47780 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 358, + "startColumn": 4, + "startOffset": 47785, + "endColumn": 125, + "endOffset": 47906 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 359, + "startColumn": 4, + "startOffset": 47911, + "endColumn": 180, + "endOffset": 48087 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 360, + "startColumn": 4, + "startOffset": 48092, + "endColumn": 124, + "endOffset": 48212 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 361, + "startColumn": 4, + "startOffset": 48217, + "endColumn": 123, + "endOffset": 48336 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 362, + "startColumn": 4, + "startOffset": 48341, + "endColumn": 212, + "endOffset": 48549 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 363, + "startColumn": 4, + "startOffset": 48554, + "endColumn": 214, + "endOffset": 48764 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 364, + "startColumn": 4, + "startOffset": 48769, + "endColumn": 122, + "endOffset": 48887 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 365, + "startColumn": 4, + "startOffset": 48892, + "endColumn": 164, + "endOffset": 49052 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 366, + "startColumn": 4, + "startOffset": 49057, + "endColumn": 93, + "endOffset": 49146 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 367, + "startColumn": 4, + "startOffset": 49151, + "endColumn": 140, + "endOffset": 49287 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 368, + "startColumn": 4, + "startOffset": 49292, + "endColumn": 89, + "endOffset": 49377 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 369, + "startColumn": 4, + "startOffset": 49382, + "endColumn": 102, + "endOffset": 49480 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 370, + "startColumn": 4, + "startOffset": 49485, + "endColumn": 142, + "endOffset": 49623 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 371, + "startColumn": 4, + "startOffset": 49628, + "endColumn": 99, + "endOffset": 49723 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 372, + "startColumn": 4, + "startOffset": 49728, + "endColumn": 150, + "endOffset": 49874 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 373, + "startColumn": 4, + "startOffset": 49879, + "endColumn": 91, + "endOffset": 49966 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 374, + "startColumn": 4, + "startOffset": 49971, + "endColumn": 218, + "endOffset": 50185 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-basement\\8.4.0\\res\\values\\common_strings.xml" + } + }, + { + "to": { + "startLine": 375, + "startColumn": 4, + "startOffset": 50190, + "endColumn": 218, + "endOffset": 50404 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 376, + "startColumn": 4, + "startOffset": 50409, + "endColumn": 94, + "endOffset": 50499 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 377, + "startColumn": 4, + "startOffset": 50504, + "endColumn": 104, + "endOffset": 50604 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 378, + "startColumn": 4, + "startOffset": 50609, + "endColumn": 180, + "endOffset": 50785 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 379, + "startColumn": 4, + "startOffset": 50790, + "endColumn": 124, + "endOffset": 50910 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 380, + "startColumn": 4, + "startOffset": 50915, + "endColumn": 174, + "endOffset": 51085 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 381, + "startColumn": 4, + "startOffset": 51090, + "endColumn": 104, + "endOffset": 51190 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 382, + "startColumn": 4, + "startOffset": 51195, + "endColumn": 147, + "endOffset": 51338 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 383, + "startColumn": 4, + "startOffset": 51343, + "endColumn": 62, + "endOffset": 51401 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 384, + "startColumn": 4, + "startOffset": 51406, + "endColumn": 61, + "endOffset": 51463 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 385, + "startColumn": 4, + "startOffset": 51468, + "endColumn": 78, + "endOffset": 51542 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\values\\base_strings.xml" + } + }, + { + "to": { + "startLine": 386, + "startColumn": 4, + "startOffset": 51547, + "endColumn": 88, + "endOffset": 51631 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-ads\\8.4.0\\res\\values\\admob_strings.xml" + } + }, + { + "to": { + "startLine": 387, + "startColumn": 4, + "startOffset": 51636, + "endColumn": 71, + "endOffset": 51703 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-ads\\8.4.0\\res\\values\\admob_strings.xml" + } + }, + { + "to": { + "startLine": 388, + "startColumn": 4, + "startOffset": 51708, + "endColumn": 43, + "endOffset": 51747 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-ads\\8.4.0\\res\\values\\admob_strings.xml" + } + }, + { + "to": { + "startLine": 389, + "startColumn": 4, + "startOffset": 51752, + "endColumn": 137, + "endOffset": 51885 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\debug\\res\\values\\google_maps_api.xml" + } + }, + { + "to": { + "startLine": 390, + "startColumn": 4, + "startOffset": 51890, + "endColumn": 56, + "endOffset": 51942 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values\\strings.xml" + } + }, + { + "to": { + "startLine": 391, + "startColumn": 4, + "startOffset": 51947, + "endColumn": 74, + "endOffset": 52017 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 392, + "startColumn": 4, + "startOffset": 52022, + "endColumn": 88, + "endOffset": 52106 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 393, + "startColumn": 4, + "startOffset": 52111, + "endColumn": 74, + "endOffset": 52181 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 394, + "startColumn": 4, + "startOffset": 52186, + "endColumn": 75, + "endOffset": 52257 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 395, + "startColumn": 4, + "startOffset": 52262, + "endColumn": 89, + "endOffset": 52347 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 396, + "startColumn": 4, + "startOffset": 52352, + "endColumn": 65, + "endOffset": 52413 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 397, + "startColumn": 4, + "startOffset": 52418, + "endColumn": 63, + "endOffset": 52477 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 398, + "startColumn": 4, + "startOffset": 52482, + "endColumn": 89, + "endOffset": 52567 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 399, + "startColumn": 4, + "startOffset": 52572, + "endColumn": 71, + "endOffset": 52639 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 400, + "startColumn": 4, + "startOffset": 52644, + "endColumn": 55, + "endOffset": 52695 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 401, + "startColumn": 4, + "startOffset": 52700, + "endColumn": 63, + "endOffset": 52759 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 402, + "startColumn": 4, + "startOffset": 52764, + "endColumn": 72, + "endOffset": 52832 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_strings.xml" + } + }, + { + "to": { + "startLine": 403, + "startColumn": 4, + "startOffset": 52837, + "endColumn": 65, + "endOffset": 52898 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\values\\location_strings.xml" + } + }, + { + "to": { + "startLine": 404, + "startColumn": 4, + "startOffset": 52903, + "endColumn": 70, + "endOffset": 52969 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 405, + "startColumn": 4, + "startOffset": 52974, + "endColumn": 95, + "endOffset": 53065 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-ads\\8.4.0\\res\\values\\admob_strings.xml" + } + }, + { + "to": { + "startLine": 406, + "startColumn": 4, + "startOffset": 53070, + "endColumn": 58, + "endOffset": 53124 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-ads\\8.4.0\\res\\values\\admob_strings.xml" + } + }, + { + "to": { + "startLine": 407, + "startColumn": 4, + "startOffset": 53129, + "endColumn": 53, + "endOffset": 53178 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values\\strings.xml" + } + }, + { + "to": { + "startLine": 408, + "startColumn": 4, + "startOffset": 53183, + "endColumn": 46, + "endOffset": 53225 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values\\strings.xml" + } + }, + { + "to": { + "startLine": 409, + "startColumn": 4, + "startOffset": 53230, + "endColumn": 64, + "endOffset": 53290 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values\\strings.xml" + } + }, + { + "to": { + "startLine": 410, + "startColumn": 4, + "startOffset": 53295, + "endColumn": 67, + "endOffset": 53358 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values\\strings.xml" + } + }, + { + "to": { + "startLine": 411, + "startColumn": 4, + "startOffset": 53363, + "endColumn": 74, + "endOffset": 53433 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_strings.xml" + } + }, + { + "to": { + "startLine": 412, + "startColumn": 4, + "startOffset": 53438, + "endColumn": 77, + "endOffset": 53511 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 413, + "startColumn": 4, + "startOffset": 53516, + "endColumn": 89, + "endOffset": 53601 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 414, + "startColumn": 4, + "startOffset": 53606, + "endColumn": 87, + "endOffset": 53689 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 415, + "startColumn": 4, + "startOffset": 53694, + "endColumn": 95, + "endOffset": 53785 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 416, + "startColumn": 4, + "startOffset": 53790, + "endLine": 424, + "endColumn": 12, + "endOffset": 54321 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values\\styles.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 57, + "endLine": 11, + "endColumn": 12, + "endOffset": 596 + } + } + }, + { + "to": { + "startLine": 425, + "startColumn": 4, + "startOffset": 54326, + "endColumn": 89, + "endOffset": 54411 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values\\styles.xml" + } + }, + { + "to": { + "startLine": 426, + "startColumn": 4, + "startOffset": 54416, + "endColumn": 79, + "endOffset": 54491 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\values\\styles.xml" + } + }, + { + "to": { + "startLine": 427, + "startColumn": 4, + "startOffset": 54496, + "endLine": 433, + "endColumn": 12, + "endOffset": 54992 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 434, + "startColumn": 4, + "startOffset": 54997, + "endColumn": 88, + "endOffset": 55081 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 435, + "startColumn": 4, + "startOffset": 55086, + "endLine": 438, + "endColumn": 12, + "endOffset": 55328 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 439, + "startColumn": 4, + "startOffset": 55333, + "endLine": 442, + "endColumn": 12, + "endOffset": 55609 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 443, + "startColumn": 4, + "startOffset": 55614, + "endLine": 447, + "endColumn": 12, + "endOffset": 55894 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 448, + "startColumn": 4, + "startOffset": 55899, + "endLine": 453, + "endColumn": 12, + "endOffset": 56287 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 454, + "startColumn": 4, + "startOffset": 56292, + "endLine": 460, + "endColumn": 12, + "endOffset": 56764 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 461, + "startColumn": 4, + "startOffset": 56769, + "endLine": 464, + "endColumn": 12, + "endOffset": 56986 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 465, + "startColumn": 4, + "startOffset": 56991, + "endLine": 468, + "endColumn": 12, + "endOffset": 57208 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 469, + "startColumn": 4, + "startOffset": 57213, + "endLine": 473, + "endColumn": 12, + "endOffset": 57476 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 474, + "startColumn": 4, + "startOffset": 57481, + "endLine": 477, + "endColumn": 12, + "endOffset": 57703 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 478, + "startColumn": 4, + "startOffset": 57708, + "endLine": 481, + "endColumn": 12, + "endOffset": 57933 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 482, + "startColumn": 4, + "startOffset": 57938, + "endLine": 485, + "endColumn": 12, + "endOffset": 58163 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 486, + "startColumn": 4, + "startOffset": 58168, + "endLine": 489, + "endColumn": 12, + "endOffset": 58393 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 490, + "startColumn": 4, + "startOffset": 58398, + "endLine": 493, + "endColumn": 12, + "endOffset": 58623 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 494, + "startColumn": 4, + "startOffset": 58628, + "endLine": 497, + "endColumn": 12, + "endOffset": 58850 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 498, + "startColumn": 4, + "startOffset": 58855, + "endLine": 501, + "endColumn": 12, + "endOffset": 59089 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 502, + "startColumn": 4, + "startOffset": 59094, + "endLine": 505, + "endColumn": 12, + "endOffset": 59315 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 506, + "startColumn": 4, + "startOffset": 59320, + "endLine": 509, + "endColumn": 12, + "endOffset": 59560 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 510, + "startColumn": 4, + "startOffset": 59565, + "endLine": 511, + "endColumn": 12, + "endOffset": 59690 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 512, + "startColumn": 4, + "startOffset": 59695, + "endLine": 513, + "endColumn": 12, + "endOffset": 59820 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 514, + "startColumn": 4, + "startOffset": 59825, + "endLine": 517, + "endColumn": 12, + "endOffset": 60050 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 518, + "startColumn": 4, + "startOffset": 60055, + "endLine": 521, + "endColumn": 12, + "endOffset": 60298 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 522, + "startColumn": 4, + "startOffset": 60303, + "endLine": 525, + "endColumn": 12, + "endOffset": 60517 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 526, + "startColumn": 4, + "startOffset": 60522, + "endLine": 530, + "endColumn": 12, + "endOffset": 60800 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 531, + "startColumn": 4, + "startOffset": 60805, + "endLine": 534, + "endColumn": 12, + "endOffset": 61008 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 535, + "startColumn": 4, + "startOffset": 61013, + "endLine": 537, + "endColumn": 12, + "endOffset": 61139 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 538, + "startColumn": 4, + "startOffset": 61144, + "endLine": 541, + "endColumn": 12, + "endOffset": 61366 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 542, + "startColumn": 4, + "startOffset": 61371, + "endLine": 545, + "endColumn": 12, + "endOffset": 61612 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 546, + "startColumn": 4, + "startOffset": 61617, + "endLine": 549, + "endColumn": 12, + "endOffset": 61837 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 550, + "startColumn": 4, + "startOffset": 61842, + "endLine": 553, + "endColumn": 12, + "endOffset": 62084 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 554, + "startColumn": 4, + "startOffset": 62089, + "endLine": 557, + "endColumn": 12, + "endOffset": 62305 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 558, + "startColumn": 4, + "startOffset": 62310, + "endLine": 561, + "endColumn": 12, + "endOffset": 62550 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 562, + "startColumn": 4, + "startOffset": 62555, + "endLine": 565, + "endColumn": 12, + "endOffset": 62824 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 566, + "startColumn": 4, + "startOffset": 62829, + "endLine": 569, + "endColumn": 12, + "endOffset": 63125 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 570, + "startColumn": 4, + "startOffset": 63130, + "endLine": 573, + "endColumn": 12, + "endOffset": 63449 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 574, + "startColumn": 4, + "startOffset": 63454, + "endLine": 577, + "endColumn": 12, + "endOffset": 63740 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 578, + "startColumn": 4, + "startOffset": 63745, + "endLine": 581, + "endColumn": 12, + "endOffset": 64054 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 582, + "startColumn": 4, + "startOffset": 64059, + "endColumn": 136, + "endOffset": 64191 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 583, + "startColumn": 4, + "startOffset": 64196, + "endColumn": 130, + "endOffset": 64322 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 584, + "startColumn": 4, + "startOffset": 64327, + "endColumn": 104, + "endOffset": 64427 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 585, + "startColumn": 4, + "startOffset": 64432, + "endLine": 587, + "endColumn": 12, + "endOffset": 64631 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 588, + "startColumn": 4, + "startOffset": 64636, + "endLine": 590, + "endColumn": 12, + "endOffset": 64839 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 591, + "startColumn": 4, + "startOffset": 64844, + "endLine": 592, + "endColumn": 12, + "endOffset": 64963 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 593, + "startColumn": 4, + "startOffset": 64968, + "endLine": 594, + "endColumn": 12, + "endOffset": 65087 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 595, + "startColumn": 4, + "startOffset": 65092, + "endColumn": 104, + "endOffset": 65192 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 596, + "startColumn": 4, + "startOffset": 65197, + "endColumn": 116, + "endOffset": 65309 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 597, + "startColumn": 4, + "startOffset": 65314, + "endLine": 599, + "endColumn": 12, + "endOffset": 65523 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 600, + "startColumn": 4, + "startOffset": 65528, + "endLine": 601, + "endColumn": 12, + "endOffset": 65669 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 602, + "startColumn": 4, + "startOffset": 65674, + "endLine": 603, + "endColumn": 12, + "endOffset": 65809 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 604, + "startColumn": 4, + "startOffset": 65814, + "endLine": 605, + "endColumn": 12, + "endOffset": 65895 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 606, + "startColumn": 4, + "startOffset": 65900, + "endLine": 610, + "endColumn": 12, + "endOffset": 66243 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 611, + "startColumn": 4, + "startOffset": 66248, + "endColumn": 87, + "endOffset": 66331 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 612, + "startColumn": 4, + "startOffset": 66336, + "endLine": 615, + "endColumn": 12, + "endOffset": 66561 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 616, + "startColumn": 4, + "startOffset": 66566, + "endLine": 621, + "endColumn": 12, + "endOffset": 66979 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 622, + "startColumn": 4, + "startOffset": 66984, + "endLine": 625, + "endColumn": 12, + "endOffset": 67212 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 626, + "startColumn": 4, + "startOffset": 67217, + "endColumn": 81, + "endOffset": 67294 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 627, + "startColumn": 4, + "startOffset": 67299, + "endLine": 628, + "endColumn": 12, + "endOffset": 67392 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 629, + "startColumn": 4, + "startOffset": 67397, + "endLine": 639, + "endColumn": 12, + "endOffset": 68009 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 640, + "startColumn": 4, + "startOffset": 68014, + "endColumn": 99, + "endOffset": 68109 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 641, + "startColumn": 4, + "startOffset": 68114, + "endLine": 644, + "endColumn": 12, + "endOffset": 68345 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 645, + "startColumn": 4, + "startOffset": 68350, + "endLine": 650, + "endColumn": 12, + "endOffset": 68769 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 651, + "startColumn": 4, + "startOffset": 68774, + "endLine": 654, + "endColumn": 12, + "endOffset": 69008 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 655, + "startColumn": 4, + "startOffset": 69013, + "endColumn": 93, + "endOffset": 69102 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 656, + "startColumn": 4, + "startOffset": 69107, + "endColumn": 88, + "endOffset": 69191 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 657, + "startColumn": 4, + "startOffset": 69196, + "endLine": 660, + "endColumn": 12, + "endOffset": 69428 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 661, + "startColumn": 4, + "startOffset": 69433, + "endLine": 686, + "endColumn": 12, + "endOffset": 71379 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 687, + "startColumn": 4, + "startOffset": 71384, + "endLine": 690, + "endColumn": 12, + "endOffset": 71621 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 691, + "startColumn": 4, + "startOffset": 71626, + "endLine": 717, + "endColumn": 12, + "endOffset": 73703 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 718, + "startColumn": 4, + "startOffset": 73708, + "endLine": 870, + "endColumn": 12, + "endOffset": 83385 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 871, + "startColumn": 4, + "startOffset": 83390, + "endLine": 892, + "endColumn": 12, + "endOffset": 84652 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 893, + "startColumn": 4, + "startOffset": 84657, + "endLine": 1045, + "endColumn": 12, + "endOffset": 94444 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1046, + "startColumn": 4, + "startOffset": 94449, + "endLine": 1067, + "endColumn": 12, + "endOffset": 95725 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1068, + "startColumn": 4, + "startOffset": 95730, + "endLine": 1074, + "endColumn": 12, + "endOffset": 96261 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1075, + "startColumn": 4, + "startOffset": 96266, + "endLine": 1079, + "endColumn": 12, + "endOffset": 96591 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1080, + "startColumn": 4, + "startOffset": 96596, + "endLine": 1100, + "endColumn": 12, + "endOffset": 97714 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1101, + "startColumn": 4, + "startOffset": 97719, + "endLine": 1105, + "endColumn": 12, + "endOffset": 97970 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1106, + "startColumn": 4, + "startOffset": 97975, + "endLine": 1110, + "endColumn": 12, + "endOffset": 98206 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1111, + "startColumn": 4, + "startOffset": 98211, + "endLine": 1120, + "endColumn": 12, + "endOffset": 98753 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1121, + "startColumn": 4, + "startOffset": 98758, + "endLine": 1129, + "endColumn": 12, + "endOffset": 99247 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1130, + "startColumn": 4, + "startOffset": 99252, + "endLine": 1138, + "endColumn": 12, + "endOffset": 99852 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1139, + "startColumn": 4, + "startOffset": 99857, + "endLine": 1141, + "endColumn": 12, + "endOffset": 100000 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1142, + "startColumn": 4, + "startOffset": 100005, + "endLine": 1148, + "endColumn": 12, + "endOffset": 100588 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1149, + "startColumn": 4, + "startOffset": 100593, + "endLine": 1156, + "endColumn": 12, + "endOffset": 101152 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1157, + "startColumn": 4, + "startOffset": 101157, + "endLine": 1163, + "endColumn": 12, + "endOffset": 101527 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1164, + "startColumn": 4, + "startOffset": 101532, + "endColumn": 117, + "endOffset": 101645 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1165, + "startColumn": 4, + "startOffset": 101650, + "endLine": 1173, + "endColumn": 12, + "endOffset": 102183 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1174, + "startColumn": 4, + "startOffset": 102188, + "endLine": 1176, + "endColumn": 12, + "endOffset": 102340 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1177, + "startColumn": 4, + "startOffset": 102345, + "endLine": 1179, + "endColumn": 12, + "endOffset": 102484 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1180, + "startColumn": 4, + "startOffset": 102489, + "endLine": 1184, + "endColumn": 12, + "endOffset": 102804 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1185, + "startColumn": 4, + "startOffset": 102809, + "endLine": 1188, + "endColumn": 12, + "endOffset": 103060 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1189, + "startColumn": 4, + "startOffset": 103065, + "endLine": 1192, + "endColumn": 12, + "endOffset": 103230 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1193, + "startColumn": 4, + "startOffset": 103235, + "endLine": 1195, + "endColumn": 12, + "endOffset": 103371 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1196, + "startColumn": 4, + "startOffset": 103376, + "endColumn": 63, + "endOffset": 103435 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1197, + "startColumn": 4, + "startOffset": 103440, + "endLine": 1200, + "endColumn": 12, + "endOffset": 103717 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1201, + "startColumn": 4, + "startOffset": 103722, + "endLine": 1204, + "endColumn": 12, + "endOffset": 104003 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1205, + "startColumn": 4, + "startOffset": 104008, + "endLine": 1214, + "endColumn": 12, + "endOffset": 104679 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1215, + "startColumn": 4, + "startOffset": 104684, + "endLine": 1219, + "endColumn": 12, + "endOffset": 104943 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1220, + "startColumn": 4, + "startOffset": 104948, + "endLine": 1226, + "endColumn": 12, + "endOffset": 105281 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1227, + "startColumn": 4, + "startOffset": 105286, + "endLine": 1232, + "endColumn": 12, + "endOffset": 105634 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1233, + "startColumn": 4, + "startOffset": 105639, + "endColumn": 93, + "endOffset": 105728 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1234, + "startColumn": 4, + "startOffset": 105733, + "endLine": 1236, + "endColumn": 12, + "endOffset": 105914 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1237, + "startColumn": 4, + "startOffset": 105919, + "endLine": 1240, + "endColumn": 12, + "endOffset": 106220 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1241, + "startColumn": 4, + "startOffset": 106225, + "endLine": 1245, + "endColumn": 12, + "endOffset": 106482 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1246, + "startColumn": 4, + "startOffset": 106487, + "endLine": 1247, + "endColumn": 12, + "endOffset": 106607 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1248, + "startColumn": 4, + "startOffset": 106612, + "endLine": 1249, + "endColumn": 12, + "endOffset": 106734 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1250, + "startColumn": 4, + "startOffset": 106739, + "endLine": 1252, + "endColumn": 12, + "endOffset": 106973 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1253, + "startColumn": 4, + "startOffset": 106978, + "endLine": 1255, + "endColumn": 12, + "endOffset": 107184 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1256, + "startColumn": 4, + "startOffset": 107189, + "endLine": 1257, + "endColumn": 12, + "endOffset": 107303 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1258, + "startColumn": 4, + "startOffset": 107308, + "endLine": 1261, + "endColumn": 12, + "endOffset": 107496 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1262, + "startColumn": 4, + "startOffset": 107501, + "endLine": 1268, + "endColumn": 12, + "endOffset": 107951 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1269, + "startColumn": 4, + "startOffset": 107956, + "endLine": 1271, + "endColumn": 12, + "endOffset": 108132 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1272, + "startColumn": 4, + "startOffset": 108137, + "endLine": 1274, + "endColumn": 12, + "endOffset": 108254 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1275, + "startColumn": 4, + "startOffset": 108259, + "endLine": 1278, + "endColumn": 12, + "endOffset": 108513 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1279, + "startColumn": 4, + "startOffset": 108518, + "endLine": 1280, + "endColumn": 12, + "endOffset": 108626 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1281, + "startColumn": 4, + "startOffset": 108631, + "endLine": 1284, + "endColumn": 12, + "endOffset": 108813 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1285, + "startColumn": 4, + "startOffset": 108818, + "endLine": 1286, + "endColumn": 12, + "endOffset": 108915 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1287, + "startColumn": 4, + "startOffset": 108920, + "endLine": 1292, + "endColumn": 12, + "endOffset": 109359 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1293, + "startColumn": 4, + "startOffset": 109364, + "endLine": 1294, + "endColumn": 12, + "endOffset": 109483 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1295, + "startColumn": 4, + "startOffset": 109488, + "endLine": 1298, + "endColumn": 12, + "endOffset": 109768 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1299, + "startColumn": 4, + "startOffset": 109773, + "endLine": 1310, + "endColumn": 12, + "endOffset": 110655 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1311, + "startColumn": 4, + "startOffset": 110660, + "endLine": 1316, + "endColumn": 12, + "endOffset": 110949 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1317, + "startColumn": 4, + "startOffset": 110954, + "endLine": 1325, + "endColumn": 12, + "endOffset": 111519 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1326, + "startColumn": 4, + "startOffset": 111524, + "endLine": 1336, + "endColumn": 12, + "endOffset": 112251 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1337, + "startColumn": 4, + "startOffset": 112256, + "endLine": 1339, + "endColumn": 12, + "endOffset": 112423 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1340, + "startColumn": 4, + "startOffset": 112428, + "endLine": 1344, + "endColumn": 12, + "endOffset": 112759 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1345, + "startColumn": 4, + "startOffset": 112764, + "endLine": 1356, + "endColumn": 12, + "endOffset": 113626 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1357, + "startColumn": 4, + "startOffset": 113631, + "endLine": 1361, + "endColumn": 12, + "endOffset": 113904 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1362, + "startColumn": 4, + "startOffset": 113909, + "endLine": 1371, + "endColumn": 12, + "endOffset": 114495 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1372, + "startColumn": 4, + "startOffset": 114500, + "endLine": 1409, + "endColumn": 12, + "endOffset": 117357 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1410, + "startColumn": 4, + "startOffset": 117362, + "endLine": 1448, + "endColumn": 12, + "endOffset": 120359 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1449, + "startColumn": 4, + "startOffset": 120364, + "endColumn": 61, + "endOffset": 120421 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1450, + "startColumn": 4, + "startOffset": 120426, + "endLine": 1459, + "endColumn": 12, + "endOffset": 121051 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1460, + "startColumn": 4, + "startOffset": 121056, + "endLine": 1468, + "endColumn": 12, + "endOffset": 121665 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1469, + "startColumn": 4, + "startOffset": 121670, + "endColumn": 85, + "endOffset": 121751 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1470, + "startColumn": 4, + "startOffset": 121756, + "endLine": 1471, + "endColumn": 12, + "endOffset": 121864 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1472, + "startColumn": 4, + "startOffset": 121869, + "endLine": 1475, + "endColumn": 12, + "endOffset": 122093 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1476, + "startColumn": 4, + "startOffset": 122098, + "endLine": 1478, + "endColumn": 12, + "endOffset": 122253 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1479, + "startColumn": 4, + "startOffset": 122258, + "endLine": 1481, + "endColumn": 12, + "endOffset": 122405 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1482, + "startColumn": 4, + "startOffset": 122410, + "endLine": 1484, + "endColumn": 12, + "endOffset": 122576 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1485, + "startColumn": 4, + "startOffset": 122581, + "endLine": 1487, + "endColumn": 12, + "endOffset": 122743 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1488, + "startColumn": 4, + "startOffset": 122748, + "endLine": 1491, + "endColumn": 12, + "endOffset": 122986 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1492, + "startColumn": 4, + "startOffset": 122991, + "endLine": 1494, + "endColumn": 12, + "endOffset": 123156 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1495, + "startColumn": 4, + "startOffset": 123161, + "endLine": 1497, + "endColumn": 12, + "endOffset": 123329 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1498, + "startColumn": 4, + "startOffset": 123334, + "endLine": 1500, + "endColumn": 12, + "endOffset": 123500 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1501, + "startColumn": 4, + "startOffset": 123505, + "endLine": 1504, + "endColumn": 12, + "endOffset": 123774 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1505, + "startColumn": 4, + "startOffset": 123779, + "endLine": 1507, + "endColumn": 12, + "endOffset": 123973 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1508, + "startColumn": 4, + "startOffset": 123978, + "endLine": 1511, + "endColumn": 12, + "endOffset": 124178 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1512, + "startColumn": 4, + "startOffset": 124183, + "endLine": 1515, + "endColumn": 12, + "endOffset": 124508 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1516, + "startColumn": 4, + "startOffset": 124513, + "endColumn": 83, + "endOffset": 124592 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1517, + "startColumn": 4, + "startOffset": 124597, + "endColumn": 95, + "endOffset": 124688 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1518, + "startColumn": 4, + "startOffset": 124693, + "endColumn": 95, + "endOffset": 124784 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1519, + "startColumn": 4, + "startOffset": 124789, + "endColumn": 97, + "endOffset": 124882 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1520, + "startColumn": 4, + "startOffset": 124887, + "endColumn": 99, + "endOffset": 124982 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1521, + "startColumn": 4, + "startOffset": 124987, + "endColumn": 101, + "endOffset": 125084 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1522, + "startColumn": 4, + "startOffset": 125089, + "endColumn": 101, + "endOffset": 125186 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1523, + "startColumn": 4, + "startOffset": 125191, + "endColumn": 101, + "endOffset": 125288 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1524, + "startColumn": 4, + "startOffset": 125293, + "endColumn": 101, + "endOffset": 125390 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1525, + "startColumn": 4, + "startOffset": 125395, + "endColumn": 101, + "endOffset": 125492 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1526, + "startColumn": 4, + "startOffset": 125497, + "endColumn": 99, + "endOffset": 125592 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1527, + "startColumn": 4, + "startOffset": 125597, + "endColumn": 95, + "endOffset": 125688 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1528, + "startColumn": 4, + "startOffset": 125693, + "endColumn": 111, + "endOffset": 125800 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1529, + "startColumn": 4, + "startOffset": 125805, + "endColumn": 128, + "endOffset": 125929 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1530, + "startColumn": 4, + "startOffset": 125934, + "endColumn": 122, + "endOffset": 126052 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1531, + "startColumn": 4, + "startOffset": 126057, + "endLine": 1532, + "endColumn": 12, + "endOffset": 126206 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1533, + "startColumn": 4, + "startOffset": 126211, + "endLine": 1534, + "endColumn": 12, + "endOffset": 126360 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1535, + "startColumn": 4, + "startOffset": 126365, + "endColumn": 97, + "endOffset": 126458 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1536, + "startColumn": 4, + "startOffset": 126463, + "endColumn": 113, + "endOffset": 126572 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1537, + "startColumn": 4, + "startOffset": 126577, + "endColumn": 93, + "endOffset": 126666 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1538, + "startColumn": 4, + "startOffset": 126671, + "endLine": 1539, + "endColumn": 12, + "endOffset": 126806 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1540, + "startColumn": 4, + "startOffset": 126811, + "endLine": 1541, + "endColumn": 12, + "endOffset": 126940 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1542, + "startColumn": 4, + "startOffset": 126945, + "endColumn": 95, + "endOffset": 127036 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1543, + "startColumn": 4, + "startOffset": 127041, + "endColumn": 111, + "endOffset": 127148 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1544, + "startColumn": 4, + "startOffset": 127153, + "endColumn": 99, + "endOffset": 127248 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1545, + "startColumn": 4, + "startOffset": 127253, + "endColumn": 115, + "endOffset": 127364 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1546, + "startColumn": 4, + "startOffset": 127369, + "endColumn": 95, + "endOffset": 127460 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1547, + "startColumn": 4, + "startOffset": 127465, + "endColumn": 111, + "endOffset": 127572 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1548, + "startColumn": 4, + "startOffset": 127577, + "endLine": 1549, + "endColumn": 12, + "endOffset": 127712 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1550, + "startColumn": 4, + "startOffset": 127717, + "endColumn": 135, + "endOffset": 127848 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1551, + "startColumn": 4, + "startOffset": 127853, + "endLine": 1552, + "endColumn": 12, + "endOffset": 128012 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1553, + "startColumn": 4, + "startOffset": 128017, + "endColumn": 129, + "endOffset": 128142 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1554, + "startColumn": 4, + "startOffset": 128147, + "endLine": 1555, + "endColumn": 12, + "endOffset": 128300 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1556, + "startColumn": 4, + "startOffset": 128305, + "endLine": 1557, + "endColumn": 12, + "endOffset": 128450 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1558, + "startColumn": 4, + "startOffset": 128455, + "endColumn": 140, + "endOffset": 128591 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1559, + "startColumn": 4, + "startOffset": 128596, + "endLine": 1560, + "endColumn": 12, + "endOffset": 128735 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1561, + "startColumn": 4, + "startOffset": 128740, + "endColumn": 134, + "endOffset": 128870 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1562, + "startColumn": 4, + "startOffset": 128875, + "endColumn": 111, + "endOffset": 128982 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1563, + "startColumn": 4, + "startOffset": 128987, + "endColumn": 127, + "endOffset": 129110 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1564, + "startColumn": 4, + "startOffset": 129115, + "endLine": 1565, + "endColumn": 12, + "endOffset": 129246 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1566, + "startColumn": 4, + "startOffset": 129251, + "endLine": 1567, + "endColumn": 12, + "endOffset": 129388 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1568, + "startColumn": 4, + "startOffset": 129393, + "endLine": 1569, + "endColumn": 12, + "endOffset": 129530 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1570, + "startColumn": 4, + "startOffset": 129535, + "endColumn": 111, + "endOffset": 129642 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1571, + "startColumn": 4, + "startOffset": 129647, + "endColumn": 139, + "endOffset": 129782 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1572, + "startColumn": 4, + "startOffset": 129787, + "endLine": 1574, + "endColumn": 12, + "endOffset": 129983 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1575, + "startColumn": 4, + "startOffset": 129988, + "endColumn": 91, + "endOffset": 130075 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1576, + "startColumn": 4, + "startOffset": 130080, + "endLine": 1578, + "endColumn": 12, + "endOffset": 130270 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1579, + "startColumn": 4, + "startOffset": 130275, + "endLine": 1581, + "endColumn": 12, + "endOffset": 130454 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1582, + "startColumn": 4, + "startOffset": 130459, + "endLine": 1584, + "endColumn": 12, + "endOffset": 130629 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1585, + "startColumn": 4, + "startOffset": 130634, + "endLine": 1588, + "endColumn": 12, + "endOffset": 130882 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1589, + "startColumn": 4, + "startOffset": 130887, + "endLine": 1593, + "endColumn": 12, + "endOffset": 131173 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1594, + "startColumn": 4, + "startOffset": 131178, + "endColumn": 67, + "endOffset": 131241 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1595, + "startColumn": 4, + "startOffset": 131246, + "endColumn": 72, + "endOffset": 131314 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1596, + "startColumn": 4, + "startOffset": 131319, + "endColumn": 73, + "endOffset": 131388 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1597, + "startColumn": 4, + "startOffset": 131393, + "endColumn": 72, + "endOffset": 131461 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1598, + "startColumn": 4, + "startOffset": 131466, + "endColumn": 73, + "endOffset": 131535 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1599, + "startColumn": 4, + "startOffset": 131540, + "endLine": 1600, + "endColumn": 12, + "endOffset": 131681 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1601, + "startColumn": 4, + "startOffset": 131686, + "endLine": 1602, + "endColumn": 12, + "endOffset": 131825 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1603, + "startColumn": 4, + "startOffset": 131830, + "endLine": 1604, + "endColumn": 12, + "endOffset": 131963 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1605, + "startColumn": 4, + "startOffset": 131968, + "endColumn": 65, + "endOffset": 132029 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1606, + "startColumn": 4, + "startOffset": 132034, + "endColumn": 89, + "endOffset": 132119 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1607, + "startColumn": 4, + "startOffset": 132124, + "endColumn": 79, + "endOffset": 132199 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1608, + "startColumn": 4, + "startOffset": 132204, + "endColumn": 91, + "endOffset": 132291 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1609, + "startColumn": 4, + "startOffset": 132296, + "endColumn": 97, + "endOffset": 132389 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1610, + "startColumn": 4, + "startOffset": 132394, + "endLine": 1611, + "endColumn": 12, + "endOffset": 132499 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1612, + "startColumn": 4, + "startOffset": 132504, + "endColumn": 77, + "endOffset": 132577 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1613, + "startColumn": 4, + "startOffset": 132582, + "endColumn": 105, + "endOffset": 132683 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1614, + "startColumn": 4, + "startOffset": 132688, + "endColumn": 91, + "endOffset": 132775 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1615, + "startColumn": 4, + "startOffset": 132780, + "endColumn": 103, + "endOffset": 132879 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1616, + "startColumn": 4, + "startOffset": 132884, + "endColumn": 109, + "endOffset": 132989 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1617, + "startColumn": 4, + "startOffset": 132994, + "endLine": 1618, + "endColumn": 12, + "endOffset": 133111 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1619, + "startColumn": 4, + "startOffset": 133116, + "endLine": 1622, + "endColumn": 12, + "endOffset": 133274 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1623, + "startColumn": 4, + "startOffset": 133279, + "endLine": 1626, + "endColumn": 12, + "endOffset": 133431 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1627, + "startColumn": 4, + "startOffset": 133436, + "endLine": 1631, + "endColumn": 12, + "endOffset": 133733 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-appinvite\\8.4.0\\res\\values\\appinvite_styles.xml" + } + }, + { + "to": { + "startLine": 1632, + "startColumn": 4, + "startOffset": 133738, + "endColumn": 95, + "endOffset": 133829 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-appinvite\\8.4.0\\res\\values\\appinvite_styles.xml" + } + }, + { + "to": { + "startLine": 1633, + "startColumn": 4, + "startOffset": 133834, + "endLine": 1640, + "endColumn": 10, + "endOffset": 134253 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-ads\\8.4.0\\res\\values\\admob_iap_style.xml" + } + }, + { + "to": { + "startLine": 1641, + "startColumn": 4, + "startOffset": 134258, + "endLine": 1651, + "endColumn": 12, + "endOffset": 135007 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1652, + "startColumn": 4, + "startOffset": 135012, + "endLine": 1662, + "endColumn": 12, + "endOffset": 135756 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1663, + "startColumn": 4, + "startOffset": 135761, + "endColumn": 79, + "endOffset": 135836 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1664, + "startColumn": 4, + "startOffset": 135841, + "endColumn": 99, + "endOffset": 135936 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1665, + "startColumn": 4, + "startOffset": 135941, + "endColumn": 89, + "endOffset": 136026 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1666, + "startColumn": 4, + "startOffset": 136031, + "endColumn": 109, + "endOffset": 136136 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1667, + "startColumn": 4, + "startOffset": 136141, + "endColumn": 91, + "endOffset": 136228 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1668, + "startColumn": 4, + "startOffset": 136233, + "endLine": 1675, + "endColumn": 12, + "endOffset": 136757 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_styles.xml" + } + }, + { + "to": { + "startLine": 1676, + "startColumn": 4, + "startOffset": 136762, + "endLine": 1678, + "endColumn": 12, + "endOffset": 136941 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_styles.xml" + } + }, + { + "to": { + "startLine": 1679, + "startColumn": 4, + "startOffset": 136946, + "endLine": 1686, + "endColumn": 12, + "endOffset": 137470 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_styles.xml" + } + }, + { + "to": { + "startLine": 1687, + "startColumn": 4, + "startOffset": 137475, + "endLine": 1699, + "endColumn": 12, + "endOffset": 138474 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\values\\wallet_styles.xml" + } + }, + { + "to": { + "startLine": 1700, + "startColumn": 4, + "startOffset": 138479, + "endLine": 1701, + "endColumn": 12, + "endOffset": 138574 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1702, + "startColumn": 4, + "startOffset": 138579, + "endLine": 1703, + "endColumn": 12, + "endOffset": 138686 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1704, + "startColumn": 4, + "startOffset": 138691, + "endLine": 1705, + "endColumn": 12, + "endOffset": 138800 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1706, + "startColumn": 4, + "startOffset": 138805, + "endLine": 1707, + "endColumn": 12, + "endOffset": 138916 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1708, + "startColumn": 4, + "startOffset": 138921, + "endLine": 1709, + "endColumn": 12, + "endOffset": 139032 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1710, + "startColumn": 4, + "startOffset": 139037, + "endColumn": 93, + "endOffset": 139126 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1711, + "startColumn": 4, + "startOffset": 139131, + "endColumn": 113, + "endOffset": 139240 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1712, + "startColumn": 4, + "startOffset": 139245, + "endColumn": 111, + "endOffset": 139352 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1713, + "startColumn": 4, + "startOffset": 139357, + "endLine": 1714, + "endColumn": 12, + "endOffset": 139454 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1715, + "startColumn": 4, + "startOffset": 139459, + "endLine": 1716, + "endColumn": 12, + "endOffset": 139574 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1717, + "startColumn": 4, + "startOffset": 139579, + "endLine": 1718, + "endColumn": 12, + "endOffset": 139696 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1719, + "startColumn": 4, + "startOffset": 139701, + "endColumn": 81, + "endOffset": 139778 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1720, + "startColumn": 4, + "startOffset": 139783, + "endColumn": 103, + "endOffset": 139882 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1721, + "startColumn": 4, + "startOffset": 139887, + "endColumn": 119, + "endOffset": 140002 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1722, + "startColumn": 4, + "startOffset": 140007, + "endColumn": 125, + "endOffset": 140128 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1723, + "startColumn": 4, + "startOffset": 140133, + "endColumn": 97, + "endOffset": 140226 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1724, + "startColumn": 4, + "startOffset": 140231, + "endColumn": 93, + "endOffset": 140320 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1725, + "startColumn": 4, + "startOffset": 140325, + "endColumn": 87, + "endOffset": 140408 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1726, + "startColumn": 4, + "startOffset": 140413, + "endColumn": 111, + "endOffset": 140520 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1727, + "startColumn": 4, + "startOffset": 140525, + "endColumn": 115, + "endOffset": 140636 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1728, + "startColumn": 4, + "startOffset": 140641, + "endColumn": 121, + "endOffset": 140758 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1729, + "startColumn": 4, + "startOffset": 140763, + "endColumn": 111, + "endOffset": 140870 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1730, + "startColumn": 4, + "startOffset": 140875, + "endLine": 1732, + "endColumn": 12, + "endOffset": 141045 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1733, + "startColumn": 4, + "startOffset": 141050, + "endColumn": 115, + "endOffset": 141161 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1734, + "startColumn": 4, + "startOffset": 141166, + "endColumn": 85, + "endOffset": 141247 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1735, + "startColumn": 4, + "startOffset": 141252, + "endColumn": 91, + "endOffset": 141339 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1736, + "startColumn": 4, + "startOffset": 141344, + "endLine": 1737, + "endColumn": 12, + "endOffset": 141451 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1738, + "startColumn": 4, + "startOffset": 141456, + "endLine": 1739, + "endColumn": 12, + "endOffset": 141575 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1740, + "startColumn": 4, + "startOffset": 141580, + "endColumn": 66, + "endOffset": 141642 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1741, + "startColumn": 4, + "startOffset": 141647, + "endLine": 1742, + "endColumn": 12, + "endOffset": 141768 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1743, + "startColumn": 4, + "startOffset": 141773, + "endColumn": 67, + "endOffset": 141836 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1744, + "startColumn": 4, + "startOffset": 141841, + "endLine": 1745, + "endColumn": 12, + "endOffset": 141964 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1746, + "startColumn": 4, + "startOffset": 141969, + "endLine": 1747, + "endColumn": 12, + "endOffset": 142108 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1748, + "startColumn": 4, + "startOffset": 142113, + "endLine": 1749, + "endColumn": 12, + "endOffset": 142236 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1750, + "startColumn": 4, + "startOffset": 142241, + "endColumn": 68, + "endOffset": 142305 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1751, + "startColumn": 4, + "startOffset": 142310, + "endColumn": 94, + "endOffset": 142400 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1752, + "startColumn": 4, + "startOffset": 142405, + "endColumn": 114, + "endOffset": 142515 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1753, + "startColumn": 4, + "startOffset": 142520, + "endColumn": 112, + "endOffset": 142628 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1754, + "startColumn": 4, + "startOffset": 142633, + "endColumn": 98, + "endOffset": 142727 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1755, + "startColumn": 4, + "startOffset": 142732, + "endColumn": 108, + "endOffset": 142836 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1756, + "startColumn": 4, + "startOffset": 142841, + "endColumn": 110, + "endOffset": 142947 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1757, + "startColumn": 4, + "startOffset": 142952, + "endColumn": 110, + "endOffset": 143058 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1758, + "startColumn": 4, + "startOffset": 143063, + "endColumn": 100, + "endOffset": 143159 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1759, + "startColumn": 4, + "startOffset": 143164, + "endColumn": 104, + "endOffset": 143264 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1760, + "startColumn": 4, + "startOffset": 143269, + "endLine": 1761, + "endColumn": 12, + "endOffset": 143376 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1762, + "startColumn": 4, + "startOffset": 143381, + "endLine": 1763, + "endColumn": 12, + "endOffset": 143506 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1764, + "startColumn": 4, + "startOffset": 143511, + "endColumn": 90, + "endOffset": 143597 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1765, + "startColumn": 4, + "startOffset": 143602, + "endColumn": 122, + "endOffset": 143720 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1766, + "startColumn": 4, + "startOffset": 143725, + "endLine": 1767, + "endColumn": 12, + "endOffset": 143832 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1768, + "startColumn": 4, + "startOffset": 143837, + "endColumn": 85, + "endOffset": 143918 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1769, + "startColumn": 4, + "startOffset": 143923, + "endColumn": 103, + "endOffset": 144022 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1770, + "startColumn": 4, + "startOffset": 144027, + "endLine": 1771, + "endColumn": 12, + "endOffset": 144130 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1772, + "startColumn": 4, + "startOffset": 144135, + "endLine": 1773, + "endColumn": 12, + "endOffset": 144230 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1774, + "startColumn": 4, + "startOffset": 144235, + "endLine": 1775, + "endColumn": 12, + "endOffset": 144348 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1776, + "startColumn": 4, + "startOffset": 144353, + "endLine": 1777, + "endColumn": 12, + "endOffset": 144452 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1778, + "startColumn": 4, + "startOffset": 144457, + "endLine": 1779, + "endColumn": 12, + "endOffset": 144556 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1780, + "startColumn": 4, + "startOffset": 144561, + "endLine": 1781, + "endColumn": 12, + "endOffset": 144682 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1782, + "startColumn": 4, + "startOffset": 144687, + "endColumn": 87, + "endOffset": 144770 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1783, + "startColumn": 4, + "startOffset": 144775, + "endColumn": 89, + "endOffset": 144860 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1784, + "startColumn": 4, + "startOffset": 144865, + "endColumn": 109, + "endOffset": 144970 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1785, + "startColumn": 4, + "startOffset": 144975, + "endColumn": 83, + "endOffset": 145054 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1786, + "startColumn": 4, + "startOffset": 145059, + "endColumn": 83, + "endOffset": 145138 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1787, + "startColumn": 4, + "startOffset": 145143, + "endColumn": 53, + "endOffset": 145192 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1788, + "startColumn": 4, + "startOffset": 145197, + "endColumn": 63, + "endOffset": 145256 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1789, + "startColumn": 4, + "startOffset": 145261, + "endColumn": 105, + "endOffset": 145362 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1790, + "startColumn": 4, + "startOffset": 145367, + "endColumn": 109, + "endOffset": 145472 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1791, + "startColumn": 4, + "startOffset": 145477, + "endColumn": 83, + "endOffset": 145556 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1792, + "startColumn": 4, + "startOffset": 145561, + "endColumn": 119, + "endOffset": 145676 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1793, + "startColumn": 4, + "startOffset": 145681, + "endLine": 1796, + "endColumn": 12, + "endOffset": 145894 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1797, + "startColumn": 4, + "startOffset": 145899, + "endLine": 1800, + "endColumn": 12, + "endOffset": 146101 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1801, + "startColumn": 4, + "startOffset": 146106, + "endLine": 1803, + "endColumn": 12, + "endOffset": 146260 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1804, + "startColumn": 4, + "startOffset": 146265, + "endLine": 1812, + "endColumn": 12, + "endOffset": 146827 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1813, + "startColumn": 4, + "startOffset": 146832, + "endLine": 1818, + "endColumn": 12, + "endOffset": 147188 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1819, + "startColumn": 4, + "startOffset": 147193, + "endLine": 1821, + "endColumn": 12, + "endOffset": 147317 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1822, + "startColumn": 4, + "startOffset": 147322, + "endLine": 1831, + "endColumn": 12, + "endOffset": 148061 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1832, + "startColumn": 4, + "startOffset": 148066, + "endLine": 1835, + "endColumn": 12, + "endOffset": 148241 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1836, + "startColumn": 4, + "startOffset": 148246, + "endLine": 1841, + "endColumn": 12, + "endOffset": 148682 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1842, + "startColumn": 4, + "startOffset": 148687, + "endLine": 1849, + "endColumn": 12, + "endOffset": 149202 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + }, + { + "to": { + "startLine": 1850, + "startColumn": 4, + "startOffset": 149207, + "endLine": 1857, + "endColumn": 12, + "endOffset": 149709 + }, + "from": { + "file": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\values\\values.xml" + } + } + ] + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/anim.json b/GPS/app/build/intermediates/blame/res/debug/single/anim.json new file mode 100644 index 0000000..4723765 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/anim.json @@ -0,0 +1,58 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\anim\\abc_fade_in.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\anim\\abc_fade_in.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\anim\\abc_popup_enter.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\anim\\abc_popup_enter.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\anim\\abc_shrink_fade_out_from_bottom.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\anim\\abc_shrink_fade_out_from_bottom.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\anim\\design_fab_in.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\anim\\design_fab_in.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\anim\\design_fab_out.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\anim\\design_fab_out.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\anim\\abc_fade_out.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\anim\\abc_fade_out.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\anim\\abc_slide_in_top.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\anim\\abc_slide_in_top.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\anim\\abc_slide_out_top.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\anim\\abc_slide_out_top.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\anim\\abc_grow_fade_in_from_bottom.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\anim\\abc_grow_fade_in_from_bottom.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\anim\\abc_popup_exit.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\anim\\abc_popup_exit.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\anim\\abc_slide_in_bottom.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\anim\\abc_slide_in_bottom.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\anim\\design_snackbar_out.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\anim\\design_snackbar_out.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\anim\\design_snackbar_in.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\anim\\design_snackbar_in.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\anim\\abc_slide_out_bottom.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\anim\\abc_slide_out_bottom.xml" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/color-v11.json b/GPS/app/build/intermediates/blame/res/debug/single/color-v11.json new file mode 100644 index 0000000..de7927f --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/color-v11.json @@ -0,0 +1,10 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color-v11\\abc_background_cache_hint_selector_material_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\color-v11\\abc_background_cache_hint_selector_material_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color-v11\\abc_background_cache_hint_selector_material_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\color-v11\\abc_background_cache_hint_selector_material_dark.xml" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/color-v23.json b/GPS/app/build/intermediates/blame/res/debug/single/color-v23.json new file mode 100644 index 0000000..c77357f --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/color-v23.json @@ -0,0 +1,6 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color-v23\\abc_color_highlight_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\color-v23\\abc_color_highlight_material.xml" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/color.json b/GPS/app/build/intermediates/blame/res/debug/single/color.json new file mode 100644 index 0000000..813dd87 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/color.json @@ -0,0 +1,70 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color\\common_plus_signin_btn_text_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\color\\common_plus_signin_btn_text_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color\\wallet_primary_text_holo_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\color\\wallet_primary_text_holo_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color\\abc_primary_text_material_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\color\\abc_primary_text_material_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color\\abc_background_cache_hint_selector_material_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\color\\abc_background_cache_hint_selector_material_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color\\abc_secondary_text_material_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\color\\abc_secondary_text_material_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color\\common_google_signin_btn_text_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\color\\common_google_signin_btn_text_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color\\switch_thumb_material_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\color\\switch_thumb_material_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color\\abc_primary_text_disable_only_material_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\color\\abc_primary_text_disable_only_material_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color\\abc_primary_text_material_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\color\\abc_primary_text_material_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color\\common_google_signin_btn_text_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\color\\common_google_signin_btn_text_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color\\abc_search_url_text.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\color\\abc_search_url_text.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color\\abc_primary_text_disable_only_material_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\color\\abc_primary_text_disable_only_material_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color\\abc_background_cache_hint_selector_material_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\color\\abc_background_cache_hint_selector_material_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color\\wallet_secondary_text_holo_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-wallet\\8.4.0\\res\\color\\wallet_secondary_text_holo_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color\\switch_thumb_material_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\color\\switch_thumb_material_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color\\common_plus_signin_btn_text_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\color\\common_plus_signin_btn_text_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\color\\abc_secondary_text_material_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\color\\abc_secondary_text_material_dark.xml" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json b/GPS/app/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json new file mode 100644 index 0000000..f7f2f19 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json @@ -0,0 +1,446 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_media_play.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_media_play.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_spinner_mtrl_am_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_go_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_ic_go_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_google_signin_btn_icon_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_google_signin_btn_icon_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_plusone_tall_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-hdpi\\ic_plusone_tall_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_cast_on_2_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_cast_on_2_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_plus_signin_btn_icon_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_plus_signin_btn_icon_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\cast_ic_notification_2.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\drawable-hdpi\\cast_ic_notification_2.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_list_pressed_holo_dark.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_google_signin_btn_text_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_google_signin_btn_text_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_list_focused_holo.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_list_focused_holo.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_dark.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_plus_signin_btn_icon_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_plus_signin_btn_icon_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_menu_share_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_plus_signin_btn_text_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_plus_signin_btn_text_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_media_pause.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_media_pause.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_cast_disabled_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_cast_disabled_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_google_signin_btn_text_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_google_signin_btn_text_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_google_signin_btn_text_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_google_signin_btn_text_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_google_signin_btn_text_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_google_signin_btn_text_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_cast_on_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_cast_on_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_plus_signin_btn_icon_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_plus_signin_btn_icon_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_list_pressed_holo_light.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_list_pressed_holo_light.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_cast_off_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_cast_off_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_menu_moreoverflow_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_ic_menu_moreoverflow_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\cast_ic_notification_1.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\drawable-hdpi\\cast_ic_notification_1.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_google_signin_btn_icon_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_google_signin_btn_icon_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_plus_signin_btn_icon_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_plus_signin_btn_icon_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_cast_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_cast_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_plus_signin_btn_text_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_plus_signin_btn_text_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_google_signin_btn_text_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_google_signin_btn_text_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\cast_ic_notification_on.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\drawable-hdpi\\cast_ic_notification_on.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_light.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_plus_signin_btn_icon_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_plus_signin_btn_icon_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_cast_on_1_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_cast_on_1_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_plusone_medium_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-hdpi\\ic_plusone_medium_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_setting_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_setting_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_google_signin_btn_text_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_google_signin_btn_text_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\places_ic_clear.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-hdpi\\places_ic_clear.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_clear_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_ic_clear_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_media_route_on_0_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_media_route_on_0_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_plus_signin_btn_text_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_plus_signin_btn_text_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_media_route_off_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_media_route_off_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\powered_by_google_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-hdpi\\powered_by_google_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_btn_rating_star_on_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_btn_rating_star_on_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_google_signin_btn_icon_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_google_signin_btn_icon_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_cast_on_0_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_cast_on_0_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_plus_signin_btn_icon_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_plus_signin_btn_icon_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_plus_signin_btn_text_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_plus_signin_btn_text_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_full_open_on_phone.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_full_open_on_phone.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_015.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_voice_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_ic_voice_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_media_route_on_2_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_media_route_on_2_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_plusone_small_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-hdpi\\ic_plusone_small_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\powered_by_google_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-hdpi\\powered_by_google_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_play_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_play_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_switch_track_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_000.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_plus_signin_btn_text_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_plus_signin_btn_text_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_media_route_disabled_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_media_route_disabled_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_ab_back_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_ic_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_google_signin_btn_text_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_google_signin_btn_text_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\places_ic_search.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-hdpi\\places_ic_search.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_setting_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_setting_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_play_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_play_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_cast_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_cast_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_plus_signin_btn_text_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_plus_signin_btn_text_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_plus_signin_btn_text_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_plus_signin_btn_text_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_pause_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_pause_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_google_signin_btn_icon_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_google_signin_btn_icon_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_btn_rating_star_off_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_btn_rating_star_off_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_google_signin_btn_icon_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_google_signin_btn_icon_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\cast_ic_notification_0.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\drawable-hdpi\\cast_ic_notification_0.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_plus_signin_btn_icon_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_plus_signin_btn_icon_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_google_signin_btn_icon_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_google_signin_btn_icon_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_000.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_015.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_plus_signin_btn_icon_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_plus_signin_btn_icon_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_ic_googleplayservices.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_ic_googleplayservices.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_textfield_default_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_pause_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_pause_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_media_route_on_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_media_route_on_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_google_signin_btn_icon_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_google_signin_btn_icon_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_plusone_standard_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-hdpi\\ic_plusone_standard_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_google_signin_btn_text_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_google_signin_btn_text_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_plus_signin_btn_text_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_plus_signin_btn_text_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\ic_media_route_on_1_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-hdpi\\ic_media_route_on_1_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_list_divider_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_popup_background_mtrl_mult.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\common_google_signin_btn_icon_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-hdpi\\common_google_signin_btn_icon_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_list_longpressed_holo.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-hdpi\\abc_list_longpressed_holo.9.png" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-hdpi-v17.json b/GPS/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-hdpi-v17.json new file mode 100644 index 0000000..623fcbe --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-hdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-hdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-hdpi\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-hdpi-v17\\abc_ic_ab_back_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-hdpi\\abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-hdpi-v17\\abc_spinner_mtrl_am_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-hdpi\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-hdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-hdpi\\abc_ic_menu_cut_mtrl_alpha.png" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-mdpi-v17.json b/GPS/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-mdpi-v17.json new file mode 100644 index 0000000..d6ae1a6 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-mdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-mdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-mdpi\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-mdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-mdpi\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-mdpi-v17\\abc_ic_ab_back_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-mdpi\\abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-mdpi-v17\\abc_spinner_mtrl_am_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-mdpi\\abc_spinner_mtrl_am_alpha.9.png" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xhdpi-v17.json b/GPS/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xhdpi-v17.json new file mode 100644 index 0000000..7527c17 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xhdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-xhdpi\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-xhdpi\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xhdpi-v17\\abc_ic_ab_back_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-xhdpi\\abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-xhdpi\\abc_spinner_mtrl_am_alpha.9.png" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxhdpi-v17.json b/GPS/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxhdpi-v17.json new file mode 100644 index 0000000..2664a29 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxhdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17\\abc_ic_ab_back_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-xxhdpi\\abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-xxhdpi\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-xxhdpi\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-xxhdpi\\abc_ic_menu_copy_mtrl_am_alpha.png" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxxhdpi-v17.json b/GPS/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxxhdpi-v17.json new file mode 100644 index 0000000..a39f20b --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxxhdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxxhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-xxxhdpi\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxxhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-xxxhdpi\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-xxxhdpi\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxxhdpi-v17\\abc_ic_ab_back_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-ldrtl-xxxhdpi\\abc_ic_ab_back_mtrl_am_alpha.png" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json b/GPS/app/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json new file mode 100644 index 0000000..62cb68b --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json @@ -0,0 +1,442 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_media_route_off_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_media_route_off_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_menu_share_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_google_signin_btn_text_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_google_signin_btn_text_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_dark.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_clear_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_ic_clear_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_setting_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_setting_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_google_signin_btn_icon_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_google_signin_btn_icon_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_google_signin_btn_text_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_google_signin_btn_text_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_plus_signin_btn_icon_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_plus_signin_btn_icon_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_cast_on_1_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_cast_on_1_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_media_route_disabled_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_media_route_disabled_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_plus_signin_btn_icon_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_plus_signin_btn_icon_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\cast_ic_notification_on.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\drawable-mdpi\\cast_ic_notification_on.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_switch_track_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_full_open_on_phone.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_full_open_on_phone.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_cast_on_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_cast_on_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_google_signin_btn_text_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_google_signin_btn_text_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_spinner_mtrl_am_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_pause_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_pause_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_000.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_plusone_medium_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-mdpi\\ic_plusone_medium_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_plus_signin_btn_text_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_plus_signin_btn_text_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_plus_signin_btn_text_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_plus_signin_btn_text_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_plus_signin_btn_icon_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_plus_signin_btn_icon_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_google_signin_btn_icon_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_google_signin_btn_icon_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_google_signin_btn_icon_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_google_signin_btn_icon_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_ic_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_plusone_tall_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-mdpi\\ic_plusone_tall_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_light.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_plus_signin_btn_text_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_plus_signin_btn_text_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_media_play.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_media_play.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_media_route_on_1_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_media_route_on_1_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_cast_on_0_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_cast_on_0_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\powered_by_google_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-mdpi\\powered_by_google_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\cast_ic_notification_2.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\drawable-mdpi\\cast_ic_notification_2.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_google_signin_btn_text_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_google_signin_btn_text_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_list_divider_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_media_pause.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_media_pause.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_cast_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_cast_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_plus_signin_btn_icon_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_plus_signin_btn_icon_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_plus_signin_btn_text_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_plus_signin_btn_text_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_cast_on_2_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_cast_on_2_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_plus_signin_btn_icon_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_plus_signin_btn_icon_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_google_signin_btn_icon_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_google_signin_btn_icon_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_000.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_media_route_on_0_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_media_route_on_0_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_list_pressed_holo_light.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_list_pressed_holo_light.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_pause_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_pause_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_015.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_media_route_on_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_media_route_on_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_ab_back_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_plus_signin_btn_text_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_plus_signin_btn_text_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\places_ic_search.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-mdpi\\places_ic_search.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_google_signin_btn_icon_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_google_signin_btn_icon_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_setting_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_setting_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_popup_background_mtrl_mult.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\places_ic_clear.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-mdpi\\places_ic_clear.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_cast_disabled_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_cast_disabled_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_google_signin_btn_icon_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_google_signin_btn_icon_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_cast_off_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_cast_off_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_list_focused_holo.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_list_focused_holo.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\cast_ic_notification_1.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\drawable-mdpi\\cast_ic_notification_1.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_plusone_small_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-mdpi\\ic_plusone_small_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_google_signin_btn_text_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_google_signin_btn_text_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_textfield_default_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_google_signin_btn_icon_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_google_signin_btn_icon_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_menu_moreoverflow_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_ic_menu_moreoverflow_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_plus_signin_btn_icon_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_plus_signin_btn_icon_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_voice_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_ic_voice_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_google_signin_btn_text_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_google_signin_btn_text_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\cast_ic_notification_0.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\drawable-mdpi\\cast_ic_notification_0.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_list_longpressed_holo.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_list_longpressed_holo.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_plusone_standard_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-mdpi\\ic_plusone_standard_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_plus_signin_btn_icon_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_plus_signin_btn_icon_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_plus_signin_btn_text_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_plus_signin_btn_text_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_plus_signin_btn_icon_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_plus_signin_btn_icon_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_btn_rating_star_off_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_btn_rating_star_off_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_plus_signin_btn_text_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_plus_signin_btn_text_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_btn_rating_star_on_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_btn_rating_star_on_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_cast_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_cast_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_google_signin_btn_icon_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_google_signin_btn_icon_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_play_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_play_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\powered_by_google_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-mdpi\\powered_by_google_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_015.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_play_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_play_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_google_signin_btn_text_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_google_signin_btn_text_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_plus_signin_btn_text_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_plus_signin_btn_text_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\ic_media_route_on_2_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-mdpi\\ic_media_route_on_2_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\common_google_signin_btn_text_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-mdpi\\common_google_signin_btn_text_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_list_pressed_holo_dark.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_go_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-mdpi\\abc_ic_go_search_api_mtrl_alpha.png" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/drawable-tvdpi-v4.json b/GPS/app/build/intermediates/blame/res/debug/single/drawable-tvdpi-v4.json new file mode 100644 index 0000000..b98a035 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/drawable-tvdpi-v4.json @@ -0,0 +1,150 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_google_signin_btn_icon_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_google_signin_btn_icon_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_plus_signin_btn_icon_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_plus_signin_btn_icon_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_google_signin_btn_text_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_google_signin_btn_text_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_google_signin_btn_text_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_google_signin_btn_text_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_google_signin_btn_text_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_google_signin_btn_text_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_plus_signin_btn_icon_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_plus_signin_btn_icon_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_google_signin_btn_icon_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_google_signin_btn_icon_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_plus_signin_btn_text_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_plus_signin_btn_text_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_google_signin_btn_text_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_google_signin_btn_text_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_plus_signin_btn_text_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_plus_signin_btn_text_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_google_signin_btn_icon_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_google_signin_btn_icon_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_full_open_on_phone.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_full_open_on_phone.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_plus_signin_btn_text_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_plus_signin_btn_text_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_google_signin_btn_text_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_google_signin_btn_text_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_google_signin_btn_text_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_google_signin_btn_text_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_plus_signin_btn_icon_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_plus_signin_btn_icon_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_plus_signin_btn_text_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_plus_signin_btn_text_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_google_signin_btn_icon_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_google_signin_btn_icon_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_google_signin_btn_icon_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_google_signin_btn_icon_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_plus_signin_btn_text_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_plus_signin_btn_text_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_google_signin_btn_icon_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_google_signin_btn_icon_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_plus_signin_btn_text_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_plus_signin_btn_text_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_plus_signin_btn_icon_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_plus_signin_btn_icon_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_plus_signin_btn_text_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_plus_signin_btn_text_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_google_signin_btn_text_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_google_signin_btn_text_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_plus_signin_btn_text_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_plus_signin_btn_text_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_google_signin_btn_icon_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_google_signin_btn_icon_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\ic_plusone_medium_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-tvdpi\\ic_plusone_medium_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_plus_signin_btn_icon_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_plus_signin_btn_icon_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_plus_signin_btn_icon_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_plus_signin_btn_icon_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_google_signin_btn_text_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_google_signin_btn_text_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\ic_plusone_standard_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-tvdpi\\ic_plusone_standard_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_plus_signin_btn_icon_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_plus_signin_btn_icon_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\ic_plusone_small_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-tvdpi\\ic_plusone_small_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_google_signin_btn_icon_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_google_signin_btn_icon_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\common_plus_signin_btn_icon_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-tvdpi\\common_plus_signin_btn_icon_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-tvdpi-v4\\ic_plusone_tall_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-tvdpi\\ic_plusone_tall_off_client.png" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/drawable-v21.json b/GPS/app/build/intermediates/blame/res/debug/single/drawable-v21.json new file mode 100644 index 0000000..43699be --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/drawable-v21.json @@ -0,0 +1,10 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21\\abc_btn_colored_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-v21\\abc_btn_colored_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21\\abc_action_bar_item_background_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-v21\\abc_action_bar_item_background_material.xml" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/drawable-v23.json b/GPS/app/build/intermediates/blame/res/debug/single/drawable-v23.json new file mode 100644 index 0000000..bb1221b --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/drawable-v23.json @@ -0,0 +1,6 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v23\\abc_control_background_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-v23\\abc_control_background_material.xml" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json b/GPS/app/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json new file mode 100644 index 0000000..7cd9e26 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json @@ -0,0 +1,442 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_pause_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_pause_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_switch_track_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_full_open_on_phone.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_full_open_on_phone.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_media_route_on_2_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_media_route_on_2_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_setting_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_setting_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_list_pressed_holo_dark.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_plusone_standard_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-xhdpi\\ic_plusone_standard_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\places_ic_search.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-xhdpi\\places_ic_search.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_btn_rating_star_on_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_btn_rating_star_on_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_ic_voice_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_ic_voice_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_google_signin_btn_text_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_google_signin_btn_text_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_play_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_play_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_btn_rating_star_off_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_btn_rating_star_off_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_pause_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_pause_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_list_longpressed_holo.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_list_longpressed_holo.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_plus_signin_btn_icon_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_plus_signin_btn_icon_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\powered_by_google_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-xhdpi\\powered_by_google_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_plus_signin_btn_text_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_plus_signin_btn_text_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_ic_clear_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_ic_clear_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_ic_ab_back_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_plus_signin_btn_text_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_plus_signin_btn_text_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\places_ic_clear.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-xhdpi\\places_ic_clear.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_google_signin_btn_text_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_google_signin_btn_text_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_cast_off_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_cast_off_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_google_signin_btn_icon_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_google_signin_btn_icon_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\cast_ic_notification_on.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\drawable-xhdpi\\cast_ic_notification_on.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_google_signin_btn_icon_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_google_signin_btn_icon_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_light.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_media_route_on_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_media_route_on_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_ic_menu_moreoverflow_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_ic_menu_moreoverflow_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_plus_signin_btn_text_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_plus_signin_btn_text_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_plus_signin_btn_icon_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_plus_signin_btn_icon_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_plusone_tall_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-xhdpi\\ic_plusone_tall_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_cast_on_1_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_cast_on_1_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_plus_signin_btn_text_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_plus_signin_btn_text_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_015.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_plus_signin_btn_text_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_plus_signin_btn_text_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_cast_on_2_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_cast_on_2_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_google_signin_btn_icon_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_google_signin_btn_icon_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_cast_on_0_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_cast_on_0_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\cast_ic_notification_1.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\drawable-xhdpi\\cast_ic_notification_1.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_list_focused_holo.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_list_focused_holo.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_cast_disabled_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_cast_disabled_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_media_route_on_0_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_media_route_on_0_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_plus_signin_btn_text_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_plus_signin_btn_text_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_media_play.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_media_play.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_google_signin_btn_icon_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_google_signin_btn_icon_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_000.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_plus_signin_btn_icon_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_plus_signin_btn_icon_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_plus_signin_btn_text_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_plus_signin_btn_text_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_google_signin_btn_text_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_google_signin_btn_text_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\cast_ic_notification_0.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\drawable-xhdpi\\cast_ic_notification_0.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_ic_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_ic_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_plusone_medium_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-xhdpi\\ic_plusone_medium_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_list_divider_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_cast_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_cast_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_media_pause.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_media_pause.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_google_signin_btn_icon_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_google_signin_btn_icon_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_google_signin_btn_icon_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_google_signin_btn_icon_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_plus_signin_btn_icon_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_plus_signin_btn_icon_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_plus_signin_btn_icon_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_plus_signin_btn_icon_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_media_route_on_1_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_media_route_on_1_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_media_route_disabled_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_media_route_disabled_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_ic_go_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_ic_go_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_google_signin_btn_text_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_google_signin_btn_text_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_media_route_off_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_media_route_off_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_cast_on_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_cast_on_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_plus_signin_btn_icon_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_plus_signin_btn_icon_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_plus_signin_btn_icon_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_plus_signin_btn_icon_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\powered_by_google_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-xhdpi\\powered_by_google_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_google_signin_btn_text_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_google_signin_btn_text_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_google_signin_btn_icon_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_google_signin_btn_icon_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_google_signin_btn_text_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_google_signin_btn_text_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_google_signin_btn_text_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_google_signin_btn_text_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\cast_ic_notification_2.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\drawable-xhdpi\\cast_ic_notification_2.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_plusone_small_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-xhdpi\\ic_plusone_small_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_play_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_play_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_plus_signin_btn_icon_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_plus_signin_btn_icon_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_cast_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_cast_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\ic_setting_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xhdpi\\ic_setting_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_list_pressed_holo_light.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_list_pressed_holo_light.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_plus_signin_btn_text_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_plus_signin_btn_text_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_google_signin_btn_text_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_google_signin_btn_text_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_popup_background_mtrl_mult.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xhdpi\\abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\common_google_signin_btn_icon_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xhdpi\\common_google_signin_btn_icon_dark_focused.9.png" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json b/GPS/app/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json new file mode 100644 index 0000000..5120f94 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json @@ -0,0 +1,442 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\cast_ic_notification_0.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\drawable-xxhdpi\\cast_ic_notification_0.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_plusone_tall_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-xxhdpi\\ic_plusone_tall_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_menu_moreoverflow_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_ic_menu_moreoverflow_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\cast_ic_notification_on.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\drawable-xxhdpi\\cast_ic_notification_on.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_ic_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_light.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_pause_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_pause_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\places_ic_search.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-xxhdpi\\places_ic_search.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_media_route_on_0_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_media_route_on_0_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_media_route_disabled_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_media_route_disabled_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\cast_ic_notification_2.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\drawable-xxhdpi\\cast_ic_notification_2.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\powered_by_google_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-xxhdpi\\powered_by_google_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_setting_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_setting_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_plus_signin_btn_text_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_plus_signin_btn_text_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_plus_signin_btn_icon_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_plus_signin_btn_icon_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_plus_signin_btn_text_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_plus_signin_btn_text_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_google_signin_btn_text_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_google_signin_btn_text_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_list_longpressed_holo.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_list_longpressed_holo.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_plus_signin_btn_text_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_plus_signin_btn_text_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_plus_signin_btn_icon_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_plus_signin_btn_icon_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_popup_background_mtrl_mult.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_media_pause.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_media_pause.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_cast_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_cast_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_plusone_standard_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-xxhdpi\\ic_plusone_standard_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_list_focused_holo.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_list_focused_holo.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_plusone_small_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-xxhdpi\\ic_plusone_small_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_google_signin_btn_text_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_google_signin_btn_text_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_google_signin_btn_text_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_google_signin_btn_text_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_clear_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_ic_clear_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_google_signin_btn_icon_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_google_signin_btn_icon_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_plus_signin_btn_text_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_plus_signin_btn_text_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_plus_signin_btn_icon_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_plus_signin_btn_icon_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_voice_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_ic_voice_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_google_signin_btn_text_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_google_signin_btn_text_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_google_signin_btn_icon_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_google_signin_btn_icon_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_cast_off_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_cast_off_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\cast_ic_notification_1.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\drawable-xxhdpi\\cast_ic_notification_1.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_media_play.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_media_play.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_google_signin_btn_text_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_google_signin_btn_text_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_google_signin_btn_icon_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_google_signin_btn_icon_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_play_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_play_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_google_signin_btn_icon_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_google_signin_btn_icon_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_go_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_ic_go_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_cast_on_2_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_cast_on_2_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_full_open_on_phone.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_full_open_on_phone.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_google_signin_btn_icon_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_google_signin_btn_icon_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_google_signin_btn_icon_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_google_signin_btn_icon_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_plus_signin_btn_text_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_plus_signin_btn_text_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_google_signin_btn_icon_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_google_signin_btn_icon_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_plus_signin_btn_icon_dark_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_plus_signin_btn_icon_dark_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\places_ic_clear.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-xxhdpi\\places_ic_clear.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_media_route_on_1_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_media_route_on_1_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_google_signin_btn_text_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_google_signin_btn_text_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_list_pressed_holo_dark.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_plus_signin_btn_icon_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_plus_signin_btn_icon_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_google_signin_btn_icon_light_focused.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_google_signin_btn_icon_light_focused.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_media_route_on_2_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_media_route_on_2_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_list_divider_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_media_route_on_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_media_route_on_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_google_signin_btn_text_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_google_signin_btn_text_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_cast_on_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_cast_on_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_pause_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_pause_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_setting_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_setting_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_plus_signin_btn_icon_light_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_plus_signin_btn_icon_light_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_ab_back_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_play_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_play_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_cast_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_cast_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_cast_on_0_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_cast_on_0_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_btn_rating_star_off_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_btn_rating_star_off_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_plus_signin_btn_icon_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_plus_signin_btn_icon_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\powered_by_google_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-xxhdpi\\powered_by_google_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_plus_signin_btn_icon_dark_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_plus_signin_btn_icon_dark_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_media_route_off_mono_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_media_route_off_mono_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_plus_signin_btn_text_dark_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_plus_signin_btn_text_dark_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_cast_on_1_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_cast_on_1_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_plus_signin_btn_text_light_pressed.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_plus_signin_btn_text_light_pressed.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_google_signin_btn_text_light_normal.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_google_signin_btn_text_light_normal.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_btn_rating_star_on_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_btn_rating_star_on_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_cast_disabled_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable-xxhdpi\\ic_cast_disabled_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_list_pressed_holo_light.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_list_pressed_holo_light.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\common_plus_signin_btn_text_dark_disabled.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable-xxhdpi\\common_plus_signin_btn_text_dark_disabled.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\ic_plusone_medium_off_client.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-plus\\8.4.0\\res\\drawable-xxhdpi\\ic_plusone_medium_off_client.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxhdpi\\abc_textfield_activated_mtrl_alpha.9.png" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/drawable-xxxhdpi-v4.json b/GPS/app/build/intermediates/blame/res/debug/single/drawable-xxxhdpi-v4.json new file mode 100644 index 0000000..9e31add --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/drawable-xxxhdpi-v4.json @@ -0,0 +1,102 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\places_ic_search.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-xxxhdpi\\places_ic_search.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\powered_by_google_dark.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-xxxhdpi\\powered_by_google_dark.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_ic_ab_back_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_ic_ab_back_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_ic_voice_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_ic_voice_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_ic_menu_moreoverflow_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_ic_menu_moreoverflow_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_ic_search_api_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_ic_search_api_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_ic_clear_mtrl_alpha.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_ic_clear_mtrl_alpha.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\powered_by_google_light.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-xxxhdpi\\powered_by_google_light.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\places_ic_clear.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\drawable-xxxhdpi\\places_ic_clear.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable-xxxhdpi\\abc_btn_check_to_on_mtrl_000.png" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/drawable.json b/GPS/app/build/intermediates/blame/res/debug/single/drawable.json new file mode 100644 index 0000000..9c2726a --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/drawable.json @@ -0,0 +1,206 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\mr_ic_settings_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable\\mr_ic_settings_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_seekbar_thumb_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_seekbar_thumb_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_switch_thumb_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_switch_thumb_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_edit_text_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_edit_text_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\design_snackbar_background.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\drawable\\design_snackbar_background.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\log.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\drawable\\log.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\mr_ic_media_route_connecting_mono_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable\\mr_ic_media_route_connecting_mono_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\camera.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\drawable\\camera.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_dialog_material_background_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_dialog_material_background_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\mr_ic_media_route_mono_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable\\mr_ic_media_route_mono_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_item_background_holo_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_item_background_holo_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_item_background_holo_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_item_background_holo_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\common_google_signin_btn_icon_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable\\common_google_signin_btn_icon_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\mr_ic_media_route_connecting_mono_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable\\mr_ic_media_route_connecting_mono_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\mr_ic_cast_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable\\mr_ic_cast_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\common_google_signin_btn_icon_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable\\common_google_signin_btn_icon_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_list_selector_holo_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_list_selector_holo_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\common_plus_signin_btn_icon_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable\\common_plus_signin_btn_icon_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_btn_colored_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_btn_colored_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\compass_pointer.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\drawable\\compass_pointer.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_list_selector_background_transition_holo_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_list_selector_background_transition_holo_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\common_plus_signin_btn_text_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable\\common_plus_signin_btn_text_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_text_cursor_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_text_cursor_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\common_plus_signin_btn_text_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable\\common_plus_signin_btn_text_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\mr_ic_media_route_mono_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable\\mr_ic_media_route_mono_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_btn_default_mtrl_shape.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_btn_default_mtrl_shape.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\common_google_signin_btn_text_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable\\common_google_signin_btn_text_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_btn_radio_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_btn_radio_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_tab_indicator_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_tab_indicator_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\mr_ic_play_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable\\mr_ic_play_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_list_selector_background_transition_holo_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_list_selector_background_transition_holo_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\mr_ic_pause_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable\\mr_ic_pause_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_cab_background_top_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_cab_background_top_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_cab_background_internal_bg.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_cab_background_internal_bg.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\common_google_signin_btn_text_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable\\common_google_signin_btn_text_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\mr_ic_play_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable\\mr_ic_play_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\message.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\drawable\\message.png" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_textfield_search_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_textfield_search_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_list_selector_holo_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_list_selector_holo_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\design_fab_background.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\drawable\\design_fab_background.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\mr_ic_settings_light.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable\\mr_ic_settings_light.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_spinner_textfield_background_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_spinner_textfield_background_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_ratingbar_full_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_ratingbar_full_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_btn_borderless_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_btn_borderless_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\common_plus_signin_btn_icon_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-base\\8.4.0\\res\\drawable\\common_plus_signin_btn_icon_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_dialog_material_background_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_dialog_material_background_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_btn_check_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_btn_check_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\mr_ic_pause_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable\\mr_ic_pause_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\cast_ic_notification_connecting.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-cast\\8.4.0\\res\\drawable\\cast_ic_notification_connecting.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\mr_ic_cast_dark.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\drawable\\mr_ic_cast_dark.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_seekbar_track_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\drawable\\abc_seekbar_track_material.xml" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/layout-land.json b/GPS/app/build/intermediates/blame/res/debug/single/layout-land.json new file mode 100644 index 0000000..9c70c13 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/layout-land.json @@ -0,0 +1,10 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout-land\\activity_submit_message.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\layout-land\\activity_submit_message.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout-land\\activity_google_maps.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\layout-land\\activity_google_maps.xml" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/layout-sw600dp-v13.json b/GPS/app/build/intermediates/blame/res/debug/single/layout-sw600dp-v13.json new file mode 100644 index 0000000..163198c --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/layout-sw600dp-v13.json @@ -0,0 +1,6 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout-sw600dp-v13\\design_layout_snackbar.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\layout-sw600dp\\design_layout_snackbar.xml" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/layout-v17.json b/GPS/app/build/intermediates/blame/res/debug/single/layout-v17.json new file mode 100644 index 0000000..b8fefc0 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/layout-v17.json @@ -0,0 +1,6 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout-v17\\mr_media_route_list_item.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\layout-v17\\mr_media_route_list_item.xml" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/layout-v21.json b/GPS/app/build/intermediates/blame/res/debug/single/layout-v21.json new file mode 100644 index 0000000..9a40b09 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/layout-v21.json @@ -0,0 +1,6 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21\\place_autocomplete_fragment.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\layout-v21\\place_autocomplete_fragment.xml" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/layout.json b/GPS/app/build/intermediates/blame/res/debug/single/layout.json new file mode 100644 index 0000000..d97e651 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/layout.json @@ -0,0 +1,234 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\select_dialog_item_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\select_dialog_item_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_expanded_menu_layout.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_expanded_menu_layout.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\design_navigation_item_separator.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\layout\\design_navigation_item_separator.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_activity_chooser_view.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_activity_chooser_view.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\select_dialog_multichoice_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\select_dialog_multichoice_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\select_dialog_singlechoice_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\select_dialog_singlechoice_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_action_mode_bar.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_action_mode_bar.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\design_navigation_item_header.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\layout\\design_navigation_item_header.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_action_bar_title_item.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_action_bar_title_item.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_screen_simple_overlay_action_mode.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_screen_simple_overlay_action_mode.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_list_menu_item_radio.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_list_menu_item_radio.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_dialog_title_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_dialog_title_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\notification_media_cancel_action.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\notification_media_cancel_action.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\activity_submit_message.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\layout\\activity_submit_message.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\support_simple_spinner_dropdown_item.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\support_simple_spinner_dropdown_item.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\design_menu_item_action_area.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\layout\\design_menu_item_action_area.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\design_layout_tab_text.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\layout\\design_layout_tab_text.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\notification_template_media.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\notification_template_media.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\design_navigation_menu.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\layout\\design_navigation_menu.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_action_menu_item_layout.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_action_menu_item_layout.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_alert_dialog_button_bar_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_alert_dialog_button_bar_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\place_autocomplete_item_prediction.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\layout\\place_autocomplete_item_prediction.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\design_layout_snackbar_include.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\layout\\design_layout_snackbar_include.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\notification_template_big_media_narrow.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\notification_template_big_media_narrow.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_alert_dialog_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_alert_dialog_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\design_navigation_menu_item.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\layout\\design_navigation_menu_item.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_action_menu_layout.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_action_menu_layout.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_action_bar_view_list_nav_layout.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_action_bar_view_list_nav_layout.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\design_layout_tab_icon.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\layout\\design_layout_tab_icon.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_screen_content_include.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_screen_content_include.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\content_submit.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\layout\\content_submit.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_popup_menu_item_layout.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_popup_menu_item_layout.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\activity_google_maps.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\layout\\activity_google_maps.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_list_menu_item_icon.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_list_menu_item_icon.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_select_dialog_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_select_dialog_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_action_bar_up_container.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_action_bar_up_container.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\design_navigation_item.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\layout\\design_navigation_item.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_action_mode_close_item_material.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_action_mode_close_item_material.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\notification_template_big_media.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\notification_template_big_media.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\mr_media_route_chooser_dialog.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\layout\\mr_media_route_chooser_dialog.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\design_navigation_item_subheader.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\layout\\design_navigation_item_subheader.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\notification_template_part_chronometer.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\notification_template_part_chronometer.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_search_view.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_search_view.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\notification_template_part_time.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\notification_template_part_time.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_screen_toolbar.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_screen_toolbar.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_search_dropdown_item_icons_2line.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_search_dropdown_item_icons_2line.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\place_autocomplete_item_powered_by_google.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\layout\\place_autocomplete_item_powered_by_google.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\mr_media_route_controller_material_dialog_b.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\layout\\mr_media_route_controller_material_dialog_b.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\place_autocomplete_progress.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\layout\\place_autocomplete_progress.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\design_layout_snackbar.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\design\\23.1.1\\res\\layout\\design_layout_snackbar.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_activity_chooser_view_list_item.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_activity_chooser_view_list_item.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\notification_template_lines.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\notification_template_lines.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_list_menu_item_checkbox.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_list_menu_item_checkbox.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\place_autocomplete_fragment.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-location\\8.4.0\\res\\layout\\place_autocomplete_fragment.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\mr_media_route_list_item.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\mediarouter-v7\\23.0.0\\res\\layout\\mr_media_route_list_item.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_list_menu_item_layout.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_list_menu_item_layout.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_screen_simple.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\abc_screen_simple.xml" + }, + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\layout\\notification_media_action.xml", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\layout\\notification_media_action.xml" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/mipmap-hdpi-v4.json b/GPS/app/build/intermediates/blame/res/debug/single/mipmap-hdpi-v4.json new file mode 100644 index 0000000..106e874 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/mipmap-hdpi-v4.json @@ -0,0 +1,6 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-hdpi-v4\\ic_launcher.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\mipmap-hdpi\\ic_launcher.png" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/mipmap-mdpi-v4.json b/GPS/app/build/intermediates/blame/res/debug/single/mipmap-mdpi-v4.json new file mode 100644 index 0000000..c0eec3c --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/mipmap-mdpi-v4.json @@ -0,0 +1,6 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-mdpi-v4\\ic_launcher.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\mipmap-mdpi\\ic_launcher.png" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/mipmap-xhdpi-v4.json b/GPS/app/build/intermediates/blame/res/debug/single/mipmap-xhdpi-v4.json new file mode 100644 index 0000000..329f734 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/mipmap-xhdpi-v4.json @@ -0,0 +1,6 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xhdpi-v4\\ic_launcher.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\mipmap-xhdpi\\ic_launcher.png" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/mipmap-xxhdpi-v4.json b/GPS/app/build/intermediates/blame/res/debug/single/mipmap-xxhdpi-v4.json new file mode 100644 index 0000000..11aeffa --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/mipmap-xxhdpi-v4.json @@ -0,0 +1,6 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxhdpi-v4\\ic_launcher.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\mipmap-xxhdpi\\ic_launcher.png" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/mipmap-xxxhdpi-v4.json b/GPS/app/build/intermediates/blame/res/debug/single/mipmap-xxxhdpi-v4.json new file mode 100644 index 0000000..24c1836 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/mipmap-xxxhdpi-v4.json @@ -0,0 +1,6 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxxhdpi-v4\\ic_launcher.png", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\src\\main\\res\\mipmap-xxxhdpi\\ic_launcher.png" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/blame/res/debug/single/raw.json b/GPS/app/build/intermediates/blame/res/debug/single/raw.json new file mode 100644 index 0000000..1d7af76 --- /dev/null +++ b/GPS/app/build/intermediates/blame/res/debug/single/raw.json @@ -0,0 +1,6 @@ +[ + { + "merged": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\res\\merged\\debug\\raw\\gtm_analytics", + "source": "C:\\Users\\user\\Documents\\GitHub\\Tubes1-Android\\GPS\\app\\build\\intermediates\\exploded-aar\\com.google.android.gms\\play-services-analytics\\8.4.0\\res\\raw\\gtm_analytics" + } +] \ No newline at end of file diff --git a/GPS/app/build/intermediates/classes/debug/android/support/design/R$anim.class b/GPS/app/build/intermediates/classes/debug/android/support/design/R$anim.class new file mode 100644 index 0000000..593853b Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/design/R$anim.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/design/R$attr.class b/GPS/app/build/intermediates/classes/debug/android/support/design/R$attr.class new file mode 100644 index 0000000..8db0124 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/design/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/design/R$bool.class b/GPS/app/build/intermediates/classes/debug/android/support/design/R$bool.class new file mode 100644 index 0000000..86afa96 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/design/R$bool.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/design/R$color.class b/GPS/app/build/intermediates/classes/debug/android/support/design/R$color.class new file mode 100644 index 0000000..7097e3d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/design/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/design/R$dimen.class b/GPS/app/build/intermediates/classes/debug/android/support/design/R$dimen.class new file mode 100644 index 0000000..c838a5b Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/design/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/design/R$drawable.class b/GPS/app/build/intermediates/classes/debug/android/support/design/R$drawable.class new file mode 100644 index 0000000..56bb5e6 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/design/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/design/R$id.class b/GPS/app/build/intermediates/classes/debug/android/support/design/R$id.class new file mode 100644 index 0000000..216f849 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/design/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/design/R$integer.class b/GPS/app/build/intermediates/classes/debug/android/support/design/R$integer.class new file mode 100644 index 0000000..6090166 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/design/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/design/R$layout.class b/GPS/app/build/intermediates/classes/debug/android/support/design/R$layout.class new file mode 100644 index 0000000..afbcb14 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/design/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/design/R$string.class b/GPS/app/build/intermediates/classes/debug/android/support/design/R$string.class new file mode 100644 index 0000000..df270a4 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/design/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/design/R$style.class b/GPS/app/build/intermediates/classes/debug/android/support/design/R$style.class new file mode 100644 index 0000000..bb60494 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/design/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/design/R$styleable.class b/GPS/app/build/intermediates/classes/debug/android/support/design/R$styleable.class new file mode 100644 index 0000000..c17491a Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/design/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/design/R.class b/GPS/app/build/intermediates/classes/debug/android/support/design/R.class new file mode 100644 index 0000000..9ece9ee Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/design/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class new file mode 100644 index 0000000..f085038 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class new file mode 100644 index 0000000..b463b2c Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class new file mode 100644 index 0000000..e59c98b Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class new file mode 100644 index 0000000..61e85c4 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class new file mode 100644 index 0000000..13fec5a Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class new file mode 100644 index 0000000..80179f0 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class new file mode 100644 index 0000000..9abaac2 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class new file mode 100644 index 0000000..c1ca949 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class new file mode 100644 index 0000000..4ebcdde Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class new file mode 100644 index 0000000..b8f6516 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class new file mode 100644 index 0000000..6e04eee Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class new file mode 100644 index 0000000..5b88428 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R.class new file mode 100644 index 0000000..350c5b6 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/appcompat/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$anim.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$anim.class new file mode 100644 index 0000000..53257bc Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$anim.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$attr.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$attr.class new file mode 100644 index 0000000..8475f79 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$bool.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$bool.class new file mode 100644 index 0000000..330ed65 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$bool.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$color.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$color.class new file mode 100644 index 0000000..430cf2d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$dimen.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$dimen.class new file mode 100644 index 0000000..e29916e Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$drawable.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$drawable.class new file mode 100644 index 0000000..3b6785f Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$id.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$id.class new file mode 100644 index 0000000..4f10ab1 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$integer.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$integer.class new file mode 100644 index 0000000..248228f Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$layout.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$layout.class new file mode 100644 index 0000000..af5b5de Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$string.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$string.class new file mode 100644 index 0000000..d4a32bb Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$style.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$style.class new file mode 100644 index 0000000..ffcc6e7 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$styleable.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$styleable.class new file mode 100644 index 0000000..f9e2338 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R.class new file mode 100644 index 0000000..45ff48d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/mediarouter/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R$attr.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R$attr.class new file mode 100644 index 0000000..e5c3181 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R$dimen.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R$dimen.class new file mode 100644 index 0000000..b4572f5 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R$id.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R$id.class new file mode 100644 index 0000000..ddb1fd1 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R$styleable.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R$styleable.class new file mode 100644 index 0000000..84288d7 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R.class b/GPS/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R.class new file mode 100644 index 0000000..c156ead Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/BuildConfig.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/BuildConfig.class new file mode 100644 index 0000000..163e389 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/BuildConfig.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/Container.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/Container.class new file mode 100644 index 0000000..c60efa3 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/Container.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/GoogleMapsActivity$1.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/GoogleMapsActivity$1.class new file mode 100644 index 0000000..0e25cc9 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/GoogleMapsActivity$1.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/GoogleMapsActivity$2.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/GoogleMapsActivity$2.class new file mode 100644 index 0000000..31559a3 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/GoogleMapsActivity$2.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/GoogleMapsActivity$3.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/GoogleMapsActivity$3.class new file mode 100644 index 0000000..793968c Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/GoogleMapsActivity$3.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/GoogleMapsActivity$requestService.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/GoogleMapsActivity$requestService.class new file mode 100644 index 0000000..a61c067 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/GoogleMapsActivity$requestService.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/GoogleMapsActivity.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/GoogleMapsActivity.class new file mode 100644 index 0000000..b26b17d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/GoogleMapsActivity.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$anim.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$anim.class new file mode 100644 index 0000000..d527f3c Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$anim.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$array.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$array.class new file mode 100644 index 0000000..0e22955 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$array.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$attr.class new file mode 100644 index 0000000..d2778d4 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$bool.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$bool.class new file mode 100644 index 0000000..22791b6 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$bool.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$color.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$color.class new file mode 100644 index 0000000..f51ea92 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$dimen.class new file mode 100644 index 0000000..1d2f693 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$drawable.class new file mode 100644 index 0000000..9f15fa2 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$id.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$id.class new file mode 100644 index 0000000..1ab7572 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$integer.class new file mode 100644 index 0000000..d4b3675 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$layout.class new file mode 100644 index 0000000..a444c9c Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$mipmap.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$mipmap.class new file mode 100644 index 0000000..05f9990 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$mipmap.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$raw.class new file mode 100644 index 0000000..aa45575 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$string.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$string.class new file mode 100644 index 0000000..75f0d5e Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$style.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$style.class new file mode 100644 index 0000000..1855669 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$styleable.class new file mode 100644 index 0000000..ec28012 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R.class new file mode 100644 index 0000000..68b6295 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/SubmitMessage$1.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/SubmitMessage$1.class new file mode 100644 index 0000000..f69e116 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/SubmitMessage$1.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/SubmitMessage$requestService.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/SubmitMessage$requestService.class new file mode 100644 index 0000000..16b8109 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/SubmitMessage$requestService.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/SubmitMessage$sendAnswer.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/SubmitMessage$sendAnswer.class new file mode 100644 index 0000000..2ae1759 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/SubmitMessage$sendAnswer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/example/user/gps/SubmitMessage.class b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/SubmitMessage.class new file mode 100644 index 0000000..2ead4c7 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/example/user/gps/SubmitMessage.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$attr.class new file mode 100644 index 0000000..3e7630f Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$color.class new file mode 100644 index 0000000..fd68151 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$dimen.class new file mode 100644 index 0000000..78fc7b1 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$drawable.class new file mode 100644 index 0000000..2777754 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$id.class new file mode 100644 index 0000000..faae5e0 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$integer.class new file mode 100644 index 0000000..2c8a8f7 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$layout.class new file mode 100644 index 0000000..726080f Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$raw.class new file mode 100644 index 0000000..d2ab1df Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$string.class new file mode 100644 index 0000000..c9bd919 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$style.class new file mode 100644 index 0000000..446f49a Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$styleable.class new file mode 100644 index 0000000..cb054f5 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R.class new file mode 100644 index 0000000..2c4bd16 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$attr.class new file mode 100644 index 0000000..4b5504a Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$color.class new file mode 100644 index 0000000..084f608 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$dimen.class new file mode 100644 index 0000000..be984e9 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$drawable.class new file mode 100644 index 0000000..1ae2051 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$id.class new file mode 100644 index 0000000..0b08f59 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$integer.class new file mode 100644 index 0000000..d9fda4e Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$layout.class new file mode 100644 index 0000000..c8729d6 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$raw.class new file mode 100644 index 0000000..3a16b15 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$string.class new file mode 100644 index 0000000..ab76363 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$style.class new file mode 100644 index 0000000..b15ffb8 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$styleable.class new file mode 100644 index 0000000..f249e1a Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R.class new file mode 100644 index 0000000..1cd49bb Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/ads/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/all/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/all/R.class new file mode 100644 index 0000000..6975ed9 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/all/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$attr.class new file mode 100644 index 0000000..5f93581 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$color.class new file mode 100644 index 0000000..c9cf97d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$dimen.class new file mode 100644 index 0000000..0ccff54 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$drawable.class new file mode 100644 index 0000000..2a5727d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$id.class new file mode 100644 index 0000000..7eaff0f Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$integer.class new file mode 100644 index 0000000..0ec068d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$layout.class new file mode 100644 index 0000000..86dc5a7 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$raw.class new file mode 100644 index 0000000..f162586 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$string.class new file mode 100644 index 0000000..3117a03 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$style.class new file mode 100644 index 0000000..2821725 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$styleable.class new file mode 100644 index 0000000..fcbeec4 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R.class new file mode 100644 index 0000000..4100e32 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/analytics/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$attr.class new file mode 100644 index 0000000..50479fc Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$color.class new file mode 100644 index 0000000..09ff757 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$dimen.class new file mode 100644 index 0000000..76a80dd Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$drawable.class new file mode 100644 index 0000000..845216e Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$id.class new file mode 100644 index 0000000..2cde523 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$integer.class new file mode 100644 index 0000000..fc7a443 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$layout.class new file mode 100644 index 0000000..e1e1149 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$raw.class new file mode 100644 index 0000000..b1cc1c0 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$string.class new file mode 100644 index 0000000..d98cd2d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$style.class new file mode 100644 index 0000000..1ae4173 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$styleable.class new file mode 100644 index 0000000..4fe2e13 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R.class new file mode 100644 index 0000000..68911a4 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appindexing/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$attr.class new file mode 100644 index 0000000..498f1b8 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$color.class new file mode 100644 index 0000000..ed9f020 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$dimen.class new file mode 100644 index 0000000..45e80b8 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$drawable.class new file mode 100644 index 0000000..fece7ed Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$id.class new file mode 100644 index 0000000..0fc1a75 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$integer.class new file mode 100644 index 0000000..2546d9d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$layout.class new file mode 100644 index 0000000..16b5a82 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$raw.class new file mode 100644 index 0000000..4707a09 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$string.class new file mode 100644 index 0000000..0ad6e0b Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$style.class new file mode 100644 index 0000000..5eaa8bc Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$styleable.class new file mode 100644 index 0000000..5cae9a4 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R.class new file mode 100644 index 0000000..0c2b249 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appinvite/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$attr.class new file mode 100644 index 0000000..2b90205 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$color.class new file mode 100644 index 0000000..4355561 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$dimen.class new file mode 100644 index 0000000..7d02e3a Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$drawable.class new file mode 100644 index 0000000..2401573 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$id.class new file mode 100644 index 0000000..3aa4480 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$integer.class new file mode 100644 index 0000000..07991e9 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$layout.class new file mode 100644 index 0000000..d95acca Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$raw.class new file mode 100644 index 0000000..cb9760a Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$string.class new file mode 100644 index 0000000..b80fca2 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$style.class new file mode 100644 index 0000000..1c959c7 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$styleable.class new file mode 100644 index 0000000..2096fcb Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R.class new file mode 100644 index 0000000..fc463fb Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/appstate/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$attr.class new file mode 100644 index 0000000..d87af60 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$color.class new file mode 100644 index 0000000..bfc58bf Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$dimen.class new file mode 100644 index 0000000..e31135e Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$drawable.class new file mode 100644 index 0000000..f90609d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$id.class new file mode 100644 index 0000000..0e51f87 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$integer.class new file mode 100644 index 0000000..93466cf Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$layout.class new file mode 100644 index 0000000..6833182 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$raw.class new file mode 100644 index 0000000..8da91f4 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$string.class new file mode 100644 index 0000000..75f8aed Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$style.class new file mode 100644 index 0000000..aeac128 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$styleable.class new file mode 100644 index 0000000..026bdc1 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R.class new file mode 100644 index 0000000..4a29e54 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/auth/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$attr.class new file mode 100644 index 0000000..c15fd81 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$color.class new file mode 100644 index 0000000..70fad67 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$dimen.class new file mode 100644 index 0000000..2f3620b Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$drawable.class new file mode 100644 index 0000000..7b048f2 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$id.class new file mode 100644 index 0000000..b90910f Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$integer.class new file mode 100644 index 0000000..c84f69b Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$layout.class new file mode 100644 index 0000000..5121127 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$raw.class new file mode 100644 index 0000000..9694931 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$string.class new file mode 100644 index 0000000..7b4088c Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$style.class new file mode 100644 index 0000000..8a6ca2d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$styleable.class new file mode 100644 index 0000000..98aeea3 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R.class new file mode 100644 index 0000000..a45d68d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/base/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$attr.class new file mode 100644 index 0000000..71e31c2 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$color.class new file mode 100644 index 0000000..30170bd Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$dimen.class new file mode 100644 index 0000000..36aa5b5 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$drawable.class new file mode 100644 index 0000000..690042f Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$id.class new file mode 100644 index 0000000..fa42f1d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$integer.class new file mode 100644 index 0000000..218054d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$layout.class new file mode 100644 index 0000000..5a1e166 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$raw.class new file mode 100644 index 0000000..1270f71 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$string.class new file mode 100644 index 0000000..48b21cc Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$style.class new file mode 100644 index 0000000..90bc4e7 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$styleable.class new file mode 100644 index 0000000..da61550 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R.class new file mode 100644 index 0000000..68849e2 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/cast/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$attr.class new file mode 100644 index 0000000..1ca683f Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$color.class new file mode 100644 index 0000000..b36781f Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$dimen.class new file mode 100644 index 0000000..0203754 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$drawable.class new file mode 100644 index 0000000..bc4d9b5 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$id.class new file mode 100644 index 0000000..017b680 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$integer.class new file mode 100644 index 0000000..bf27674 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$layout.class new file mode 100644 index 0000000..2c4c456 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$raw.class new file mode 100644 index 0000000..f661b26 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$string.class new file mode 100644 index 0000000..67ebadc Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$style.class new file mode 100644 index 0000000..ab6f2a3 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$styleable.class new file mode 100644 index 0000000..8f6fa62 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R.class new file mode 100644 index 0000000..b69c690 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/drive/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$attr.class new file mode 100644 index 0000000..baad1c5 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$color.class new file mode 100644 index 0000000..cbf51fb Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$dimen.class new file mode 100644 index 0000000..13b9543 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$drawable.class new file mode 100644 index 0000000..b02ab9e Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$id.class new file mode 100644 index 0000000..7555555 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$integer.class new file mode 100644 index 0000000..45dab26 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$layout.class new file mode 100644 index 0000000..935eba5 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$raw.class new file mode 100644 index 0000000..e6bb68f Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$string.class new file mode 100644 index 0000000..4115507 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$style.class new file mode 100644 index 0000000..3612cc4 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$styleable.class new file mode 100644 index 0000000..ba15854 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R.class new file mode 100644 index 0000000..945e50d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/fitness/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$attr.class new file mode 100644 index 0000000..0b51b60 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$color.class new file mode 100644 index 0000000..619521d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$dimen.class new file mode 100644 index 0000000..6dd6348 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$drawable.class new file mode 100644 index 0000000..9849927 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$id.class new file mode 100644 index 0000000..43152fb Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$integer.class new file mode 100644 index 0000000..666a325 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$layout.class new file mode 100644 index 0000000..62f5446 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$raw.class new file mode 100644 index 0000000..2989645 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$string.class new file mode 100644 index 0000000..7575ab1 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$style.class new file mode 100644 index 0000000..9cd4586 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$styleable.class new file mode 100644 index 0000000..351a136 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R.class new file mode 100644 index 0000000..c4731b1 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/games/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$attr.class new file mode 100644 index 0000000..7273c33 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$color.class new file mode 100644 index 0000000..acd898d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$dimen.class new file mode 100644 index 0000000..c48a06f Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$drawable.class new file mode 100644 index 0000000..9b565ea Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$id.class new file mode 100644 index 0000000..c143c6a Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$integer.class new file mode 100644 index 0000000..8360aed Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$layout.class new file mode 100644 index 0000000..cdc9c06 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$raw.class new file mode 100644 index 0000000..857e409 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$string.class new file mode 100644 index 0000000..1287327 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$style.class new file mode 100644 index 0000000..4ec4280 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$styleable.class new file mode 100644 index 0000000..f0395b5 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R.class new file mode 100644 index 0000000..b2f5cf0 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/gcm/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$attr.class new file mode 100644 index 0000000..6f69f6a Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$color.class new file mode 100644 index 0000000..7702845 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$dimen.class new file mode 100644 index 0000000..7fe30b8 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$drawable.class new file mode 100644 index 0000000..4238de3 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$id.class new file mode 100644 index 0000000..52c98c3 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$integer.class new file mode 100644 index 0000000..67a46a4 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$layout.class new file mode 100644 index 0000000..8fd4417 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$raw.class new file mode 100644 index 0000000..f1ceeb0 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$string.class new file mode 100644 index 0000000..f213985 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$style.class new file mode 100644 index 0000000..a0e822d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$styleable.class new file mode 100644 index 0000000..5b54c88 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R.class new file mode 100644 index 0000000..423fa84 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/identity/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$attr.class new file mode 100644 index 0000000..1278826 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$color.class new file mode 100644 index 0000000..f6820d2 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$dimen.class new file mode 100644 index 0000000..ffb1ef5 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$drawable.class new file mode 100644 index 0000000..efe6de7 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$id.class new file mode 100644 index 0000000..8636320 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$integer.class new file mode 100644 index 0000000..44db01d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$layout.class new file mode 100644 index 0000000..f336979 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$raw.class new file mode 100644 index 0000000..6a0dee8 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$string.class new file mode 100644 index 0000000..d04cff9 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$style.class new file mode 100644 index 0000000..1c14c5f Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$styleable.class new file mode 100644 index 0000000..2ac8a6a Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R.class new file mode 100644 index 0000000..6fca32a Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/location/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$attr.class new file mode 100644 index 0000000..ef59d6e Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$color.class new file mode 100644 index 0000000..2947e7c Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$dimen.class new file mode 100644 index 0000000..4c40af6 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$drawable.class new file mode 100644 index 0000000..f155c9e Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$id.class new file mode 100644 index 0000000..83c9f03 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$integer.class new file mode 100644 index 0000000..dff968c Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$layout.class new file mode 100644 index 0000000..3bbbdde Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$raw.class new file mode 100644 index 0000000..cffeb27 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$string.class new file mode 100644 index 0000000..b0d2b63 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$style.class new file mode 100644 index 0000000..a7a3302 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$styleable.class new file mode 100644 index 0000000..2aa32ee Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R.class new file mode 100644 index 0000000..3592605 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/maps/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$attr.class new file mode 100644 index 0000000..4dc818d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$color.class new file mode 100644 index 0000000..0669c02 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$dimen.class new file mode 100644 index 0000000..1312272 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$drawable.class new file mode 100644 index 0000000..53c19f0 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$id.class new file mode 100644 index 0000000..9215d10 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$integer.class new file mode 100644 index 0000000..227e90c Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$layout.class new file mode 100644 index 0000000..6568e56 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$raw.class new file mode 100644 index 0000000..c12fe2f Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$string.class new file mode 100644 index 0000000..ad061e3 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$style.class new file mode 100644 index 0000000..6eadfb5 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$styleable.class new file mode 100644 index 0000000..b19295e Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R.class new file mode 100644 index 0000000..7fe48a5 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/measurement/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$attr.class new file mode 100644 index 0000000..f0d983d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$color.class new file mode 100644 index 0000000..fb2df1c Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$dimen.class new file mode 100644 index 0000000..b558ec2 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$drawable.class new file mode 100644 index 0000000..6f9901b Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$id.class new file mode 100644 index 0000000..955f968 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$integer.class new file mode 100644 index 0000000..e8b977b Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$layout.class new file mode 100644 index 0000000..6ecaf59 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$raw.class new file mode 100644 index 0000000..27f3679 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$string.class new file mode 100644 index 0000000..9d0ea39 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$style.class new file mode 100644 index 0000000..a9da6ca Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$styleable.class new file mode 100644 index 0000000..360f424 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R.class new file mode 100644 index 0000000..0edc3cf Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/nearby/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$attr.class new file mode 100644 index 0000000..4598ebf Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$color.class new file mode 100644 index 0000000..9a43878 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$dimen.class new file mode 100644 index 0000000..b907175 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$drawable.class new file mode 100644 index 0000000..87e7399 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$id.class new file mode 100644 index 0000000..db5f680 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$integer.class new file mode 100644 index 0000000..8d94de4 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$layout.class new file mode 100644 index 0000000..3001ddc Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$raw.class new file mode 100644 index 0000000..b9a2630 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$string.class new file mode 100644 index 0000000..adf6647 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$style.class new file mode 100644 index 0000000..eba614c Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$styleable.class new file mode 100644 index 0000000..4a1fbc8 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R.class new file mode 100644 index 0000000..633a3c5 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/panorama/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$attr.class new file mode 100644 index 0000000..47f423a Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$color.class new file mode 100644 index 0000000..573b698 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$dimen.class new file mode 100644 index 0000000..bccca8c Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$drawable.class new file mode 100644 index 0000000..120d01d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$id.class new file mode 100644 index 0000000..461b88e Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$integer.class new file mode 100644 index 0000000..954c72f Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$layout.class new file mode 100644 index 0000000..33f3765 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$raw.class new file mode 100644 index 0000000..e9d07f8 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$string.class new file mode 100644 index 0000000..79a5d3e Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$style.class new file mode 100644 index 0000000..49fb1d5 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$styleable.class new file mode 100644 index 0000000..83f7fc7 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R.class new file mode 100644 index 0000000..1315d62 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/plus/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$attr.class new file mode 100644 index 0000000..eef3497 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$color.class new file mode 100644 index 0000000..468dcbc Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$dimen.class new file mode 100644 index 0000000..57a4700 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$drawable.class new file mode 100644 index 0000000..ac01df6 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$id.class new file mode 100644 index 0000000..deee557 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$integer.class new file mode 100644 index 0000000..c63763d Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$layout.class new file mode 100644 index 0000000..6063fb6 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$raw.class new file mode 100644 index 0000000..91b086a Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$string.class new file mode 100644 index 0000000..728fdcd Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$style.class new file mode 100644 index 0000000..ada9a95 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$styleable.class new file mode 100644 index 0000000..0dbb4d3 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R.class new file mode 100644 index 0000000..a4203dc Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/safetynet/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$attr.class new file mode 100644 index 0000000..e6ce547 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$color.class new file mode 100644 index 0000000..45ea0b4 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$dimen.class new file mode 100644 index 0000000..028349f Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$drawable.class new file mode 100644 index 0000000..4df4284 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$id.class new file mode 100644 index 0000000..a1bad95 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$integer.class new file mode 100644 index 0000000..d0ec527 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$layout.class new file mode 100644 index 0000000..f1c7de5 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$raw.class new file mode 100644 index 0000000..64305fe Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$string.class new file mode 100644 index 0000000..4b8ef4c Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$style.class new file mode 100644 index 0000000..5aff91c Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$styleable.class new file mode 100644 index 0000000..8d1958f Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R.class new file mode 100644 index 0000000..569db3a Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/vision/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$attr.class new file mode 100644 index 0000000..2345597 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$color.class new file mode 100644 index 0000000..f261ceb Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$dimen.class new file mode 100644 index 0000000..6502f06 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$drawable.class new file mode 100644 index 0000000..2265df3 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$id.class new file mode 100644 index 0000000..0c3ca00 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$integer.class new file mode 100644 index 0000000..12457de Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$layout.class new file mode 100644 index 0000000..8252fc6 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$raw.class new file mode 100644 index 0000000..2aa9b87 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$string.class new file mode 100644 index 0000000..87e98ba Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$style.class new file mode 100644 index 0000000..e11645e Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$styleable.class new file mode 100644 index 0000000..c7a574c Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R.class new file mode 100644 index 0000000..9e7d732 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wallet/R.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$attr.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$attr.class new file mode 100644 index 0000000..9ff6f74 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$attr.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$color.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$color.class new file mode 100644 index 0000000..95eaab1 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$color.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$dimen.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$dimen.class new file mode 100644 index 0000000..a6eec74 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$dimen.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$drawable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$drawable.class new file mode 100644 index 0000000..0075468 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$drawable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$id.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$id.class new file mode 100644 index 0000000..1dbb112 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$id.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$integer.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$integer.class new file mode 100644 index 0000000..1233b51 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$integer.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$layout.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$layout.class new file mode 100644 index 0000000..de36857 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$layout.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$raw.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$raw.class new file mode 100644 index 0000000..917603b Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$raw.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$string.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$string.class new file mode 100644 index 0000000..42c764f Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$string.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$style.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$style.class new file mode 100644 index 0000000..6430625 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$style.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$styleable.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$styleable.class new file mode 100644 index 0000000..84096f4 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R$styleable.class differ diff --git a/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R.class b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R.class new file mode 100644 index 0000000..b3c79f9 Binary files /dev/null and b/GPS/app/build/intermediates/classes/debug/com/google/android/gms/wearable/R.class differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/AndroidManifest.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/AndroidManifest.xml new file mode 100644 index 0000000..58122b1 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/AndroidManifest.xml @@ -0,0 +1,24 @@ + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/R.txt b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/R.txt new file mode 100644 index 0000000..dc52062 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/R.txt @@ -0,0 +1,1221 @@ +int anim abc_fade_in 0x7f040000 +int anim abc_fade_out 0x7f040001 +int anim abc_grow_fade_in_from_bottom 0x7f040002 +int anim abc_popup_enter 0x7f040003 +int anim abc_popup_exit 0x7f040004 +int anim abc_shrink_fade_out_from_bottom 0x7f040005 +int anim abc_slide_in_bottom 0x7f040006 +int anim abc_slide_in_top 0x7f040007 +int anim abc_slide_out_bottom 0x7f040008 +int anim abc_slide_out_top 0x7f040009 +int attr actionBarDivider 0x7f010063 +int attr actionBarItemBackground 0x7f010064 +int attr actionBarPopupTheme 0x7f01005d +int attr actionBarSize 0x7f010062 +int attr actionBarSplitStyle 0x7f01005f +int attr actionBarStyle 0x7f01005e +int attr actionBarTabBarStyle 0x7f010059 +int attr actionBarTabStyle 0x7f010058 +int attr actionBarTabTextStyle 0x7f01005a +int attr actionBarTheme 0x7f010060 +int attr actionBarWidgetTheme 0x7f010061 +int attr actionButtonStyle 0x7f01007d +int attr actionDropDownStyle 0x7f010079 +int attr actionLayout 0x7f010034 +int attr actionMenuTextAppearance 0x7f010065 +int attr actionMenuTextColor 0x7f010066 +int attr actionModeBackground 0x7f010069 +int attr actionModeCloseButtonStyle 0x7f010068 +int attr actionModeCloseDrawable 0x7f01006b +int attr actionModeCopyDrawable 0x7f01006d +int attr actionModeCutDrawable 0x7f01006c +int attr actionModeFindDrawable 0x7f010071 +int attr actionModePasteDrawable 0x7f01006e +int attr actionModePopupWindowStyle 0x7f010073 +int attr actionModeSelectAllDrawable 0x7f01006f +int attr actionModeShareDrawable 0x7f010070 +int attr actionModeSplitBackground 0x7f01006a +int attr actionModeStyle 0x7f010067 +int attr actionModeWebSearchDrawable 0x7f010072 +int attr actionOverflowButtonStyle 0x7f01005b +int attr actionOverflowMenuStyle 0x7f01005c +int attr actionProviderClass 0x7f010036 +int attr actionViewClass 0x7f010035 +int attr activityChooserViewStyle 0x7f010085 +int attr alertDialogButtonGroupStyle 0x7f0100a8 +int attr alertDialogCenterButtons 0x7f0100a9 +int attr alertDialogStyle 0x7f0100a7 +int attr alertDialogTheme 0x7f0100aa +int attr allowStacking 0x7f010025 +int attr arrowHeadLength 0x7f01002c +int attr arrowShaftLength 0x7f01002d +int attr autoCompleteTextViewStyle 0x7f0100af +int attr background 0x7f01000c +int attr backgroundSplit 0x7f01000e +int attr backgroundStacked 0x7f01000d +int attr backgroundTint 0x7f0100cc +int attr backgroundTintMode 0x7f0100cd +int attr barLength 0x7f01002e +int attr borderlessButtonStyle 0x7f010082 +int attr buttonBarButtonStyle 0x7f01007f +int attr buttonBarNegativeButtonStyle 0x7f0100ad +int attr buttonBarNeutralButtonStyle 0x7f0100ae +int attr buttonBarPositiveButtonStyle 0x7f0100ac +int attr buttonBarStyle 0x7f01007e +int attr buttonPanelSideLayout 0x7f01001f +int attr buttonStyle 0x7f0100b0 +int attr buttonStyleSmall 0x7f0100b1 +int attr buttonTint 0x7f010026 +int attr buttonTintMode 0x7f010027 +int attr checkboxStyle 0x7f0100b2 +int attr checkedTextViewStyle 0x7f0100b3 +int attr closeIcon 0x7f01003e +int attr closeItemLayout 0x7f01001c +int attr collapseContentDescription 0x7f0100c3 +int attr collapseIcon 0x7f0100c2 +int attr color 0x7f010028 +int attr colorAccent 0x7f0100a0 +int attr colorButtonNormal 0x7f0100a4 +int attr colorControlActivated 0x7f0100a2 +int attr colorControlHighlight 0x7f0100a3 +int attr colorControlNormal 0x7f0100a1 +int attr colorPrimary 0x7f01009e +int attr colorPrimaryDark 0x7f01009f +int attr colorSwitchThumbNormal 0x7f0100a5 +int attr commitIcon 0x7f010043 +int attr contentInsetEnd 0x7f010017 +int attr contentInsetLeft 0x7f010018 +int attr contentInsetRight 0x7f010019 +int attr contentInsetStart 0x7f010016 +int attr controlBackground 0x7f0100a6 +int attr customNavigationLayout 0x7f01000f +int attr defaultQueryHint 0x7f01003d +int attr dialogPreferredPadding 0x7f010077 +int attr dialogTheme 0x7f010076 +int attr displayOptions 0x7f010005 +int attr divider 0x7f01000b +int attr dividerHorizontal 0x7f010084 +int attr dividerPadding 0x7f010032 +int attr dividerVertical 0x7f010083 +int attr drawableSize 0x7f01002a +int attr drawerArrowStyle 0x7f010000 +int attr dropDownListViewStyle 0x7f010096 +int attr dropdownListPreferredItemHeight 0x7f01007a +int attr editTextBackground 0x7f01008b +int attr editTextColor 0x7f01008a +int attr editTextStyle 0x7f0100b4 +int attr elevation 0x7f01001a +int attr expandActivityOverflowButtonDrawable 0x7f01001e +int attr gapBetweenBars 0x7f01002b +int attr goIcon 0x7f01003f +int attr height 0x7f010001 +int attr hideOnContentScroll 0x7f010015 +int attr homeAsUpIndicator 0x7f01007c +int attr homeLayout 0x7f010010 +int attr icon 0x7f010009 +int attr iconifiedByDefault 0x7f01003b +int attr imageButtonStyle 0x7f01008c +int attr indeterminateProgressStyle 0x7f010012 +int attr initialActivityCount 0x7f01001d +int attr isLightTheme 0x7f010002 +int attr itemPadding 0x7f010014 +int attr layout 0x7f01003a +int attr listChoiceBackgroundIndicator 0x7f01009d +int attr listDividerAlertDialog 0x7f010078 +int attr listItemLayout 0x7f010023 +int attr listLayout 0x7f010020 +int attr listPopupWindowStyle 0x7f010097 +int attr listPreferredItemHeight 0x7f010091 +int attr listPreferredItemHeightLarge 0x7f010093 +int attr listPreferredItemHeightSmall 0x7f010092 +int attr listPreferredItemPaddingLeft 0x7f010094 +int attr listPreferredItemPaddingRight 0x7f010095 +int attr logo 0x7f01000a +int attr logoDescription 0x7f0100c6 +int attr maxButtonHeight 0x7f0100c1 +int attr measureWithLargestChild 0x7f010030 +int attr multiChoiceItemLayout 0x7f010021 +int attr navigationContentDescription 0x7f0100c5 +int attr navigationIcon 0x7f0100c4 +int attr navigationMode 0x7f010004 +int attr overlapAnchor 0x7f010038 +int attr paddingEnd 0x7f0100ca +int attr paddingStart 0x7f0100c9 +int attr panelBackground 0x7f01009a +int attr panelMenuListTheme 0x7f01009c +int attr panelMenuListWidth 0x7f01009b +int attr popupMenuStyle 0x7f010088 +int attr popupTheme 0x7f01001b +int attr popupWindowStyle 0x7f010089 +int attr preserveIconSpacing 0x7f010037 +int attr progressBarPadding 0x7f010013 +int attr progressBarStyle 0x7f010011 +int attr queryBackground 0x7f010045 +int attr queryHint 0x7f01003c +int attr radioButtonStyle 0x7f0100b5 +int attr ratingBarStyle 0x7f0100b6 +int attr searchHintIcon 0x7f010041 +int attr searchIcon 0x7f010040 +int attr searchViewStyle 0x7f010090 +int attr seekBarStyle 0x7f0100b7 +int attr selectableItemBackground 0x7f010080 +int attr selectableItemBackgroundBorderless 0x7f010081 +int attr showAsAction 0x7f010033 +int attr showDividers 0x7f010031 +int attr showText 0x7f01004d +int attr singleChoiceItemLayout 0x7f010022 +int attr spinBars 0x7f010029 +int attr spinnerDropDownItemStyle 0x7f01007b +int attr spinnerStyle 0x7f0100b8 +int attr splitTrack 0x7f01004c +int attr state_above_anchor 0x7f010039 +int attr submitBackground 0x7f010046 +int attr subtitle 0x7f010006 +int attr subtitleTextAppearance 0x7f0100bb +int attr subtitleTextColor 0x7f0100c8 +int attr subtitleTextStyle 0x7f010008 +int attr suggestionRowLayout 0x7f010044 +int attr switchMinWidth 0x7f01004a +int attr switchPadding 0x7f01004b +int attr switchStyle 0x7f0100b9 +int attr switchTextAppearance 0x7f010049 +int attr textAllCaps 0x7f010024 +int attr textAppearanceLargePopupMenu 0x7f010074 +int attr textAppearanceListItem 0x7f010098 +int attr textAppearanceListItemSmall 0x7f010099 +int attr textAppearanceSearchResultSubtitle 0x7f01008e +int attr textAppearanceSearchResultTitle 0x7f01008d +int attr textAppearanceSmallPopupMenu 0x7f010075 +int attr textColorAlertDialogListItem 0x7f0100ab +int attr textColorSearchUrl 0x7f01008f +int attr theme 0x7f0100cb +int attr thickness 0x7f01002f +int attr thumbTextPadding 0x7f010048 +int attr title 0x7f010003 +int attr titleMarginBottom 0x7f0100c0 +int attr titleMarginEnd 0x7f0100be +int attr titleMarginStart 0x7f0100bd +int attr titleMarginTop 0x7f0100bf +int attr titleMargins 0x7f0100bc +int attr titleTextAppearance 0x7f0100ba +int attr titleTextColor 0x7f0100c7 +int attr titleTextStyle 0x7f010007 +int attr toolbarNavigationButtonStyle 0x7f010087 +int attr toolbarStyle 0x7f010086 +int attr track 0x7f010047 +int attr voiceIcon 0x7f010042 +int attr windowActionBar 0x7f01004e +int attr windowActionBarOverlay 0x7f010050 +int attr windowActionModeOverlay 0x7f010051 +int attr windowFixedHeightMajor 0x7f010055 +int attr windowFixedHeightMinor 0x7f010053 +int attr windowFixedWidthMajor 0x7f010052 +int attr windowFixedWidthMinor 0x7f010054 +int attr windowMinWidthMajor 0x7f010056 +int attr windowMinWidthMinor 0x7f010057 +int attr windowNoTitle 0x7f01004f +int bool abc_action_bar_embed_tabs 0x7f060003 +int bool abc_action_bar_embed_tabs_pre_jb 0x7f060001 +int bool abc_action_bar_expanded_action_views_exclusive 0x7f060004 +int bool abc_allow_stacked_button_bar 0x7f060000 +int bool abc_config_actionMenuItemAllCaps 0x7f060005 +int bool abc_config_allowActionMenuItemTextWithIcon 0x7f060002 +int bool abc_config_closeDialogWhenTouchOutside 0x7f060006 +int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f060007 +int color abc_background_cache_hint_selector_material_dark 0x7f0a003a +int color abc_background_cache_hint_selector_material_light 0x7f0a003b +int color abc_color_highlight_material 0x7f0a003c +int color abc_input_method_navigation_guard 0x7f0a0000 +int color abc_primary_text_disable_only_material_dark 0x7f0a003d +int color abc_primary_text_disable_only_material_light 0x7f0a003e +int color abc_primary_text_material_dark 0x7f0a003f +int color abc_primary_text_material_light 0x7f0a0040 +int color abc_search_url_text 0x7f0a0041 +int color abc_search_url_text_normal 0x7f0a0001 +int color abc_search_url_text_pressed 0x7f0a0002 +int color abc_search_url_text_selected 0x7f0a0003 +int color abc_secondary_text_material_dark 0x7f0a0042 +int color abc_secondary_text_material_light 0x7f0a0043 +int color accent_material_dark 0x7f0a0004 +int color accent_material_light 0x7f0a0005 +int color background_floating_material_dark 0x7f0a0006 +int color background_floating_material_light 0x7f0a0007 +int color background_material_dark 0x7f0a0008 +int color background_material_light 0x7f0a0009 +int color bright_foreground_disabled_material_dark 0x7f0a000a +int color bright_foreground_disabled_material_light 0x7f0a000b +int color bright_foreground_inverse_material_dark 0x7f0a000c +int color bright_foreground_inverse_material_light 0x7f0a000d +int color bright_foreground_material_dark 0x7f0a000e +int color bright_foreground_material_light 0x7f0a000f +int color button_material_dark 0x7f0a0010 +int color button_material_light 0x7f0a0011 +int color dim_foreground_disabled_material_dark 0x7f0a0012 +int color dim_foreground_disabled_material_light 0x7f0a0013 +int color dim_foreground_material_dark 0x7f0a0014 +int color dim_foreground_material_light 0x7f0a0015 +int color foreground_material_dark 0x7f0a0016 +int color foreground_material_light 0x7f0a0017 +int color highlighted_text_material_dark 0x7f0a0018 +int color highlighted_text_material_light 0x7f0a0019 +int color hint_foreground_material_dark 0x7f0a001a +int color hint_foreground_material_light 0x7f0a001b +int color material_blue_grey_800 0x7f0a001c +int color material_blue_grey_900 0x7f0a001d +int color material_blue_grey_950 0x7f0a001e +int color material_deep_teal_200 0x7f0a001f +int color material_deep_teal_500 0x7f0a0020 +int color material_grey_100 0x7f0a0021 +int color material_grey_300 0x7f0a0022 +int color material_grey_50 0x7f0a0023 +int color material_grey_600 0x7f0a0024 +int color material_grey_800 0x7f0a0025 +int color material_grey_850 0x7f0a0026 +int color material_grey_900 0x7f0a0027 +int color primary_dark_material_dark 0x7f0a0028 +int color primary_dark_material_light 0x7f0a0029 +int color primary_material_dark 0x7f0a002a +int color primary_material_light 0x7f0a002b +int color primary_text_default_material_dark 0x7f0a002c +int color primary_text_default_material_light 0x7f0a002d +int color primary_text_disabled_material_dark 0x7f0a002e +int color primary_text_disabled_material_light 0x7f0a002f +int color ripple_material_dark 0x7f0a0030 +int color ripple_material_light 0x7f0a0031 +int color secondary_text_default_material_dark 0x7f0a0032 +int color secondary_text_default_material_light 0x7f0a0033 +int color secondary_text_disabled_material_dark 0x7f0a0034 +int color secondary_text_disabled_material_light 0x7f0a0035 +int color switch_thumb_disabled_material_dark 0x7f0a0036 +int color switch_thumb_disabled_material_light 0x7f0a0037 +int color switch_thumb_material_dark 0x7f0a0044 +int color switch_thumb_material_light 0x7f0a0045 +int color switch_thumb_normal_material_dark 0x7f0a0038 +int color switch_thumb_normal_material_light 0x7f0a0039 +int dimen abc_action_bar_content_inset_material 0x7f07000d +int dimen abc_action_bar_default_height_material 0x7f070001 +int dimen abc_action_bar_default_padding_end_material 0x7f07000e +int dimen abc_action_bar_default_padding_start_material 0x7f07000f +int dimen abc_action_bar_icon_vertical_padding_material 0x7f070011 +int dimen abc_action_bar_overflow_padding_end_material 0x7f070012 +int dimen abc_action_bar_overflow_padding_start_material 0x7f070013 +int dimen abc_action_bar_progress_bar_size 0x7f070002 +int dimen abc_action_bar_stacked_max_height 0x7f070014 +int dimen abc_action_bar_stacked_tab_max_width 0x7f070015 +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f070016 +int dimen abc_action_bar_subtitle_top_margin_material 0x7f070017 +int dimen abc_action_button_min_height_material 0x7f070018 +int dimen abc_action_button_min_width_material 0x7f070019 +int dimen abc_action_button_min_width_overflow_material 0x7f07001a +int dimen abc_alert_dialog_button_bar_height 0x7f070000 +int dimen abc_button_inset_horizontal_material 0x7f07001b +int dimen abc_button_inset_vertical_material 0x7f07001c +int dimen abc_button_padding_horizontal_material 0x7f07001d +int dimen abc_button_padding_vertical_material 0x7f07001e +int dimen abc_config_prefDialogWidth 0x7f070005 +int dimen abc_control_corner_material 0x7f07001f +int dimen abc_control_inset_material 0x7f070020 +int dimen abc_control_padding_material 0x7f070021 +int dimen abc_dialog_fixed_height_major 0x7f070006 +int dimen abc_dialog_fixed_height_minor 0x7f070007 +int dimen abc_dialog_fixed_width_major 0x7f070008 +int dimen abc_dialog_fixed_width_minor 0x7f070009 +int dimen abc_dialog_list_padding_vertical_material 0x7f070022 +int dimen abc_dialog_min_width_major 0x7f07000a +int dimen abc_dialog_min_width_minor 0x7f07000b +int dimen abc_dialog_padding_material 0x7f070023 +int dimen abc_dialog_padding_top_material 0x7f070024 +int dimen abc_disabled_alpha_material_dark 0x7f070025 +int dimen abc_disabled_alpha_material_light 0x7f070026 +int dimen abc_dropdownitem_icon_width 0x7f070027 +int dimen abc_dropdownitem_text_padding_left 0x7f070028 +int dimen abc_dropdownitem_text_padding_right 0x7f070029 +int dimen abc_edit_text_inset_bottom_material 0x7f07002a +int dimen abc_edit_text_inset_horizontal_material 0x7f07002b +int dimen abc_edit_text_inset_top_material 0x7f07002c +int dimen abc_floating_window_z 0x7f07002d +int dimen abc_list_item_padding_horizontal_material 0x7f07002e +int dimen abc_panel_menu_list_width 0x7f07002f +int dimen abc_search_view_preferred_width 0x7f070030 +int dimen abc_search_view_text_min_width 0x7f07000c +int dimen abc_seekbar_track_background_height_material 0x7f070031 +int dimen abc_seekbar_track_progress_height_material 0x7f070032 +int dimen abc_select_dialog_padding_start_material 0x7f070033 +int dimen abc_switch_padding 0x7f070010 +int dimen abc_text_size_body_1_material 0x7f070034 +int dimen abc_text_size_body_2_material 0x7f070035 +int dimen abc_text_size_button_material 0x7f070036 +int dimen abc_text_size_caption_material 0x7f070037 +int dimen abc_text_size_display_1_material 0x7f070038 +int dimen abc_text_size_display_2_material 0x7f070039 +int dimen abc_text_size_display_3_material 0x7f07003a +int dimen abc_text_size_display_4_material 0x7f07003b +int dimen abc_text_size_headline_material 0x7f07003c +int dimen abc_text_size_large_material 0x7f07003d +int dimen abc_text_size_medium_material 0x7f07003e +int dimen abc_text_size_menu_material 0x7f07003f +int dimen abc_text_size_small_material 0x7f070040 +int dimen abc_text_size_subhead_material 0x7f070041 +int dimen abc_text_size_subtitle_material_toolbar 0x7f070003 +int dimen abc_text_size_title_material 0x7f070042 +int dimen abc_text_size_title_material_toolbar 0x7f070004 +int dimen disabled_alpha_material_dark 0x7f070043 +int dimen disabled_alpha_material_light 0x7f070044 +int dimen highlight_alpha_material_colored 0x7f070045 +int dimen highlight_alpha_material_dark 0x7f070046 +int dimen highlight_alpha_material_light 0x7f070047 +int dimen notification_large_icon_height 0x7f070048 +int dimen notification_large_icon_width 0x7f070049 +int dimen notification_subtext_size 0x7f07004a +int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000 +int drawable abc_action_bar_item_background_material 0x7f020001 +int drawable abc_btn_borderless_material 0x7f020002 +int drawable abc_btn_check_material 0x7f020003 +int drawable abc_btn_check_to_on_mtrl_000 0x7f020004 +int drawable abc_btn_check_to_on_mtrl_015 0x7f020005 +int drawable abc_btn_colored_material 0x7f020006 +int drawable abc_btn_default_mtrl_shape 0x7f020007 +int drawable abc_btn_radio_material 0x7f020008 +int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009 +int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a +int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b +int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e +int drawable abc_cab_background_internal_bg 0x7f02000f +int drawable abc_cab_background_top_material 0x7f020010 +int drawable abc_cab_background_top_mtrl_alpha 0x7f020011 +int drawable abc_control_background_material 0x7f020012 +int drawable abc_dialog_material_background_dark 0x7f020013 +int drawable abc_dialog_material_background_light 0x7f020014 +int drawable abc_edit_text_material 0x7f020015 +int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016 +int drawable abc_ic_clear_mtrl_alpha 0x7f020017 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018 +int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019 +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b +int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e +int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f +int drawable abc_ic_search_api_mtrl_alpha 0x7f020020 +int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020021 +int drawable abc_item_background_holo_dark 0x7f020022 +int drawable abc_item_background_holo_light 0x7f020023 +int drawable abc_list_divider_mtrl_alpha 0x7f020024 +int drawable abc_list_focused_holo 0x7f020025 +int drawable abc_list_longpressed_holo 0x7f020026 +int drawable abc_list_pressed_holo_dark 0x7f020027 +int drawable abc_list_pressed_holo_light 0x7f020028 +int drawable abc_list_selector_background_transition_holo_dark 0x7f020029 +int drawable abc_list_selector_background_transition_holo_light 0x7f02002a +int drawable abc_list_selector_disabled_holo_dark 0x7f02002b +int drawable abc_list_selector_disabled_holo_light 0x7f02002c +int drawable abc_list_selector_holo_dark 0x7f02002d +int drawable abc_list_selector_holo_light 0x7f02002e +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f02002f +int drawable abc_popup_background_mtrl_mult 0x7f020030 +int drawable abc_ratingbar_full_material 0x7f020031 +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f020032 +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f020033 +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f020034 +int drawable abc_scrubber_primary_mtrl_alpha 0x7f020035 +int drawable abc_scrubber_track_mtrl_alpha 0x7f020036 +int drawable abc_seekbar_thumb_material 0x7f020037 +int drawable abc_seekbar_track_material 0x7f020038 +int drawable abc_spinner_mtrl_am_alpha 0x7f020039 +int drawable abc_spinner_textfield_background_material 0x7f02003a +int drawable abc_switch_thumb_material 0x7f02003b +int drawable abc_switch_track_mtrl_alpha 0x7f02003c +int drawable abc_tab_indicator_material 0x7f02003d +int drawable abc_tab_indicator_mtrl_alpha 0x7f02003e +int drawable abc_text_cursor_material 0x7f02003f +int drawable abc_textfield_activated_mtrl_alpha 0x7f020040 +int drawable abc_textfield_default_mtrl_alpha 0x7f020041 +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020042 +int drawable abc_textfield_search_default_mtrl_alpha 0x7f020043 +int drawable abc_textfield_search_material 0x7f020044 +int drawable notification_template_icon_bg 0x7f020045 +int id action0 0x7f0b0050 +int id action_bar 0x7f0b0041 +int id action_bar_activity_content 0x7f0b0000 +int id action_bar_container 0x7f0b0040 +int id action_bar_root 0x7f0b003c +int id action_bar_spinner 0x7f0b0001 +int id action_bar_subtitle 0x7f0b0022 +int id action_bar_title 0x7f0b0021 +int id action_context_bar 0x7f0b0042 +int id action_divider 0x7f0b0054 +int id action_menu_divider 0x7f0b0002 +int id action_menu_presenter 0x7f0b0003 +int id action_mode_bar 0x7f0b003e +int id action_mode_bar_stub 0x7f0b003d +int id action_mode_close_button 0x7f0b0023 +int id activity_chooser_view_content 0x7f0b0024 +int id alertTitle 0x7f0b0030 +int id always 0x7f0b001b +int id beginning 0x7f0b0018 +int id buttonPanel 0x7f0b002b +int id cancel_action 0x7f0b0051 +int id checkbox 0x7f0b0039 +int id chronometer 0x7f0b0057 +int id collapseActionView 0x7f0b001c +int id contentPanel 0x7f0b0031 +int id custom 0x7f0b0037 +int id customPanel 0x7f0b0036 +int id decor_content_parent 0x7f0b003f +int id default_activity_button 0x7f0b0027 +int id disableHome 0x7f0b000c +int id edit_query 0x7f0b0043 +int id end 0x7f0b0019 +int id end_padder 0x7f0b005c +int id expand_activities_button 0x7f0b0025 +int id expanded_menu 0x7f0b0038 +int id home 0x7f0b0004 +int id homeAsUp 0x7f0b000d +int id icon 0x7f0b0029 +int id ifRoom 0x7f0b001d +int id image 0x7f0b0026 +int id info 0x7f0b005b +int id line1 0x7f0b0055 +int id line3 0x7f0b0059 +int id listMode 0x7f0b0009 +int id list_item 0x7f0b0028 +int id media_actions 0x7f0b0053 +int id middle 0x7f0b001a +int id multiply 0x7f0b0013 +int id never 0x7f0b001e +int id none 0x7f0b000e +int id normal 0x7f0b000a +int id parentPanel 0x7f0b002d +int id progress_circular 0x7f0b0005 +int id progress_horizontal 0x7f0b0006 +int id radio 0x7f0b003b +int id screen 0x7f0b0014 +int id scrollIndicatorDown 0x7f0b0035 +int id scrollIndicatorUp 0x7f0b0032 +int id scrollView 0x7f0b0033 +int id search_badge 0x7f0b0045 +int id search_bar 0x7f0b0044 +int id search_button 0x7f0b0046 +int id search_close_btn 0x7f0b004b +int id search_edit_frame 0x7f0b0047 +int id search_go_btn 0x7f0b004d +int id search_mag_icon 0x7f0b0048 +int id search_plate 0x7f0b0049 +int id search_src_text 0x7f0b004a +int id search_voice_btn 0x7f0b004e +int id select_dialog_listview 0x7f0b004f +int id shortcut 0x7f0b003a +int id showCustom 0x7f0b000f +int id showHome 0x7f0b0010 +int id showTitle 0x7f0b0011 +int id spacer 0x7f0b002c +int id split_action_bar 0x7f0b0007 +int id src_atop 0x7f0b0015 +int id src_in 0x7f0b0016 +int id src_over 0x7f0b0017 +int id status_bar_latest_event_content 0x7f0b0052 +int id submit_area 0x7f0b004c +int id tabMode 0x7f0b000b +int id text 0x7f0b005a +int id text2 0x7f0b0058 +int id textSpacerNoButtons 0x7f0b0034 +int id time 0x7f0b0056 +int id title 0x7f0b002a +int id title_template 0x7f0b002f +int id topPanel 0x7f0b002e +int id up 0x7f0b0008 +int id useLogo 0x7f0b0012 +int id withText 0x7f0b001f +int id wrap_content 0x7f0b0020 +int integer abc_config_activityDefaultDur 0x7f090001 +int integer abc_config_activityShortDur 0x7f090002 +int integer abc_max_action_buttons 0x7f090000 +int integer cancel_button_image_alpha 0x7f090003 +int integer status_bar_notification_info_maxnum 0x7f090004 +int layout abc_action_bar_title_item 0x7f030000 +int layout abc_action_bar_up_container 0x7f030001 +int layout abc_action_bar_view_list_nav_layout 0x7f030002 +int layout abc_action_menu_item_layout 0x7f030003 +int layout abc_action_menu_layout 0x7f030004 +int layout abc_action_mode_bar 0x7f030005 +int layout abc_action_mode_close_item_material 0x7f030006 +int layout abc_activity_chooser_view 0x7f030007 +int layout abc_activity_chooser_view_list_item 0x7f030008 +int layout abc_alert_dialog_button_bar_material 0x7f030009 +int layout abc_alert_dialog_material 0x7f03000a +int layout abc_dialog_title_material 0x7f03000b +int layout abc_expanded_menu_layout 0x7f03000c +int layout abc_list_menu_item_checkbox 0x7f03000d +int layout abc_list_menu_item_icon 0x7f03000e +int layout abc_list_menu_item_layout 0x7f03000f +int layout abc_list_menu_item_radio 0x7f030010 +int layout abc_popup_menu_item_layout 0x7f030011 +int layout abc_screen_content_include 0x7f030012 +int layout abc_screen_simple 0x7f030013 +int layout abc_screen_simple_overlay_action_mode 0x7f030014 +int layout abc_screen_toolbar 0x7f030015 +int layout abc_search_dropdown_item_icons_2line 0x7f030016 +int layout abc_search_view 0x7f030017 +int layout abc_select_dialog_material 0x7f030018 +int layout notification_media_action 0x7f030019 +int layout notification_media_cancel_action 0x7f03001a +int layout notification_template_big_media 0x7f03001b +int layout notification_template_big_media_narrow 0x7f03001c +int layout notification_template_lines 0x7f03001d +int layout notification_template_media 0x7f03001e +int layout notification_template_part_chronometer 0x7f03001f +int layout notification_template_part_time 0x7f030020 +int layout select_dialog_item_material 0x7f030021 +int layout select_dialog_multichoice_material 0x7f030022 +int layout select_dialog_singlechoice_material 0x7f030023 +int layout support_simple_spinner_dropdown_item 0x7f030024 +int string abc_action_bar_home_description 0x7f050000 +int string abc_action_bar_home_description_format 0x7f050001 +int string abc_action_bar_home_subtitle_description_format 0x7f050002 +int string abc_action_bar_up_description 0x7f050003 +int string abc_action_menu_overflow_description 0x7f050004 +int string abc_action_mode_done 0x7f050005 +int string abc_activity_chooser_view_see_all 0x7f050006 +int string abc_activitychooserview_choose_application 0x7f050007 +int string abc_capital_off 0x7f050008 +int string abc_capital_on 0x7f050009 +int string abc_search_hint 0x7f05000a +int string abc_searchview_description_clear 0x7f05000b +int string abc_searchview_description_query 0x7f05000c +int string abc_searchview_description_search 0x7f05000d +int string abc_searchview_description_submit 0x7f05000e +int string abc_searchview_description_voice 0x7f05000f +int string abc_shareactionprovider_share_with 0x7f050010 +int string abc_shareactionprovider_share_with_application 0x7f050011 +int string abc_toolbar_collapse_description 0x7f050012 +int string status_bar_notification_info_overflow 0x7f050013 +int style AlertDialog_AppCompat 0x7f08007d +int style AlertDialog_AppCompat_Light 0x7f08007e +int style Animation_AppCompat_Dialog 0x7f08007f +int style Animation_AppCompat_DropDownUp 0x7f080080 +int style Base_AlertDialog_AppCompat 0x7f080081 +int style Base_AlertDialog_AppCompat_Light 0x7f080082 +int style Base_Animation_AppCompat_Dialog 0x7f080083 +int style Base_Animation_AppCompat_DropDownUp 0x7f080084 +int style Base_DialogWindowTitle_AppCompat 0x7f080085 +int style Base_DialogWindowTitleBackground_AppCompat 0x7f080086 +int style Base_TextAppearance_AppCompat 0x7f08002f +int style Base_TextAppearance_AppCompat_Body1 0x7f080030 +int style Base_TextAppearance_AppCompat_Body2 0x7f080031 +int style Base_TextAppearance_AppCompat_Button 0x7f080019 +int style Base_TextAppearance_AppCompat_Caption 0x7f080032 +int style Base_TextAppearance_AppCompat_Display1 0x7f080033 +int style Base_TextAppearance_AppCompat_Display2 0x7f080034 +int style Base_TextAppearance_AppCompat_Display3 0x7f080035 +int style Base_TextAppearance_AppCompat_Display4 0x7f080036 +int style Base_TextAppearance_AppCompat_Headline 0x7f080037 +int style Base_TextAppearance_AppCompat_Inverse 0x7f080004 +int style Base_TextAppearance_AppCompat_Large 0x7f080038 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f080005 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f080039 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f08003a +int style Base_TextAppearance_AppCompat_Medium 0x7f08003b +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f080006 +int style Base_TextAppearance_AppCompat_Menu 0x7f08003c +int style Base_TextAppearance_AppCompat_SearchResult 0x7f080087 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f08003d +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f08003e +int style Base_TextAppearance_AppCompat_Small 0x7f08003f +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f080007 +int style Base_TextAppearance_AppCompat_Subhead 0x7f080040 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f080008 +int style Base_TextAppearance_AppCompat_Title 0x7f080041 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f080009 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f080042 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f080043 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f080044 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f080045 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f080046 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f080047 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f080048 +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f080049 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f080079 +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f080088 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f08004a +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f08004b +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f08004c +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f08004d +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f080089 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f08004e +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f08004f +int style Base_Theme_AppCompat 0x7f080050 +int style Base_Theme_AppCompat_CompactMenu 0x7f08008a +int style Base_Theme_AppCompat_Dialog 0x7f08000a +int style Base_Theme_AppCompat_Dialog_Alert 0x7f08008b +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f08008c +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f08008d +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f080001 +int style Base_Theme_AppCompat_Light 0x7f080051 +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f08008e +int style Base_Theme_AppCompat_Light_Dialog 0x7f08000b +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f08008f +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f080090 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f080091 +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f080002 +int style Base_ThemeOverlay_AppCompat 0x7f080092 +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f080093 +int style Base_ThemeOverlay_AppCompat_Dark 0x7f080094 +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f080095 +int style Base_ThemeOverlay_AppCompat_Light 0x7f080096 +int style Base_V11_Theme_AppCompat_Dialog 0x7f08000c +int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f08000d +int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f080015 +int style Base_V12_Widget_AppCompat_EditText 0x7f080016 +int style Base_V21_Theme_AppCompat 0x7f080052 +int style Base_V21_Theme_AppCompat_Dialog 0x7f080053 +int style Base_V21_Theme_AppCompat_Light 0x7f080054 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f080055 +int style Base_V22_Theme_AppCompat 0x7f080077 +int style Base_V22_Theme_AppCompat_Light 0x7f080078 +int style Base_V23_Theme_AppCompat 0x7f08007a +int style Base_V23_Theme_AppCompat_Light 0x7f08007b +int style Base_V7_Theme_AppCompat 0x7f080097 +int style Base_V7_Theme_AppCompat_Dialog 0x7f080098 +int style Base_V7_Theme_AppCompat_Light 0x7f080099 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f08009a +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f08009b +int style Base_V7_Widget_AppCompat_EditText 0x7f08009c +int style Base_Widget_AppCompat_ActionBar 0x7f08009d +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f08009e +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f08009f +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f080056 +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f080057 +int style Base_Widget_AppCompat_ActionButton 0x7f080058 +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f080059 +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f08005a +int style Base_Widget_AppCompat_ActionMode 0x7f0800a0 +int style Base_Widget_AppCompat_ActivityChooserView 0x7f0800a1 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f080017 +int style Base_Widget_AppCompat_Button 0x7f08005b +int style Base_Widget_AppCompat_Button_Borderless 0x7f08005c +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f08005d +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0800a2 +int style Base_Widget_AppCompat_Button_Colored 0x7f08007c +int style Base_Widget_AppCompat_Button_Small 0x7f08005e +int style Base_Widget_AppCompat_ButtonBar 0x7f08005f +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0800a3 +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f080060 +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f080061 +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0800a4 +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f080000 +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0800a5 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f080062 +int style Base_Widget_AppCompat_EditText 0x7f080018 +int style Base_Widget_AppCompat_ImageButton 0x7f080063 +int style Base_Widget_AppCompat_Light_ActionBar 0x7f0800a6 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0800a7 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0800a8 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f080064 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f080065 +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f080066 +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f080067 +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f080068 +int style Base_Widget_AppCompat_ListPopupWindow 0x7f080069 +int style Base_Widget_AppCompat_ListView 0x7f08006a +int style Base_Widget_AppCompat_ListView_DropDown 0x7f08006b +int style Base_Widget_AppCompat_ListView_Menu 0x7f08006c +int style Base_Widget_AppCompat_PopupMenu 0x7f08006d +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f08006e +int style Base_Widget_AppCompat_PopupWindow 0x7f0800a9 +int style Base_Widget_AppCompat_ProgressBar 0x7f08000e +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f08000f +int style Base_Widget_AppCompat_RatingBar 0x7f08006f +int style Base_Widget_AppCompat_SearchView 0x7f0800aa +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0800ab +int style Base_Widget_AppCompat_SeekBar 0x7f080070 +int style Base_Widget_AppCompat_Spinner 0x7f080071 +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f080003 +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f080072 +int style Base_Widget_AppCompat_Toolbar 0x7f0800ac +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f080073 +int style Platform_AppCompat 0x7f080010 +int style Platform_AppCompat_Light 0x7f080011 +int style Platform_ThemeOverlay_AppCompat 0x7f080074 +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f080075 +int style Platform_ThemeOverlay_AppCompat_Light 0x7f080076 +int style Platform_V11_AppCompat 0x7f080012 +int style Platform_V11_AppCompat_Light 0x7f080013 +int style Platform_V14_AppCompat 0x7f08001a +int style Platform_V14_AppCompat_Light 0x7f08001b +int style Platform_Widget_AppCompat_Spinner 0x7f080014 +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f080021 +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f080022 +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f080023 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f080024 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f080025 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f080026 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f080027 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f080028 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f080029 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f08002a +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f08002b +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f08002c +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f08002d +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f08002e +int style TextAppearance_AppCompat 0x7f0800ad +int style TextAppearance_AppCompat_Body1 0x7f0800ae +int style TextAppearance_AppCompat_Body2 0x7f0800af +int style TextAppearance_AppCompat_Button 0x7f0800b0 +int style TextAppearance_AppCompat_Caption 0x7f0800b1 +int style TextAppearance_AppCompat_Display1 0x7f0800b2 +int style TextAppearance_AppCompat_Display2 0x7f0800b3 +int style TextAppearance_AppCompat_Display3 0x7f0800b4 +int style TextAppearance_AppCompat_Display4 0x7f0800b5 +int style TextAppearance_AppCompat_Headline 0x7f0800b6 +int style TextAppearance_AppCompat_Inverse 0x7f0800b7 +int style TextAppearance_AppCompat_Large 0x7f0800b8 +int style TextAppearance_AppCompat_Large_Inverse 0x7f0800b9 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0800ba +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0800bb +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0800bc +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0800bd +int style TextAppearance_AppCompat_Medium 0x7f0800be +int style TextAppearance_AppCompat_Medium_Inverse 0x7f0800bf +int style TextAppearance_AppCompat_Menu 0x7f0800c0 +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0800c1 +int style TextAppearance_AppCompat_SearchResult_Title 0x7f0800c2 +int style TextAppearance_AppCompat_Small 0x7f0800c3 +int style TextAppearance_AppCompat_Small_Inverse 0x7f0800c4 +int style TextAppearance_AppCompat_Subhead 0x7f0800c5 +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0800c6 +int style TextAppearance_AppCompat_Title 0x7f0800c7 +int style TextAppearance_AppCompat_Title_Inverse 0x7f0800c8 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0800c9 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0800ca +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0800cb +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0800cc +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0800cd +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0800ce +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0800cf +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0800d0 +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0800d1 +int style TextAppearance_AppCompat_Widget_Button 0x7f0800d2 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0800d3 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0800d4 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0800d5 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0800d6 +int style TextAppearance_AppCompat_Widget_Switch 0x7f0800d7 +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0800d8 +int style TextAppearance_StatusBar_EventContent 0x7f08001c +int style TextAppearance_StatusBar_EventContent_Info 0x7f08001d +int style TextAppearance_StatusBar_EventContent_Line2 0x7f08001e +int style TextAppearance_StatusBar_EventContent_Time 0x7f08001f +int style TextAppearance_StatusBar_EventContent_Title 0x7f080020 +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0800d9 +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0800da +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0800db +int style Theme_AppCompat 0x7f0800dc +int style Theme_AppCompat_CompactMenu 0x7f0800dd +int style Theme_AppCompat_Dialog 0x7f0800de +int style Theme_AppCompat_Dialog_Alert 0x7f0800df +int style Theme_AppCompat_Dialog_MinWidth 0x7f0800e0 +int style Theme_AppCompat_DialogWhenLarge 0x7f0800e1 +int style Theme_AppCompat_Light 0x7f0800e2 +int style Theme_AppCompat_Light_DarkActionBar 0x7f0800e3 +int style Theme_AppCompat_Light_Dialog 0x7f0800e4 +int style Theme_AppCompat_Light_Dialog_Alert 0x7f0800e5 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0800e6 +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0800e7 +int style Theme_AppCompat_Light_NoActionBar 0x7f0800e8 +int style Theme_AppCompat_NoActionBar 0x7f0800e9 +int style ThemeOverlay_AppCompat 0x7f0800ea +int style ThemeOverlay_AppCompat_ActionBar 0x7f0800eb +int style ThemeOverlay_AppCompat_Dark 0x7f0800ec +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0800ed +int style ThemeOverlay_AppCompat_Light 0x7f0800ee +int style Widget_AppCompat_ActionBar 0x7f0800ef +int style Widget_AppCompat_ActionBar_Solid 0x7f0800f0 +int style Widget_AppCompat_ActionBar_TabBar 0x7f0800f1 +int style Widget_AppCompat_ActionBar_TabText 0x7f0800f2 +int style Widget_AppCompat_ActionBar_TabView 0x7f0800f3 +int style Widget_AppCompat_ActionButton 0x7f0800f4 +int style Widget_AppCompat_ActionButton_CloseMode 0x7f0800f5 +int style Widget_AppCompat_ActionButton_Overflow 0x7f0800f6 +int style Widget_AppCompat_ActionMode 0x7f0800f7 +int style Widget_AppCompat_ActivityChooserView 0x7f0800f8 +int style Widget_AppCompat_AutoCompleteTextView 0x7f0800f9 +int style Widget_AppCompat_Button 0x7f0800fa +int style Widget_AppCompat_Button_Borderless 0x7f0800fb +int style Widget_AppCompat_Button_Borderless_Colored 0x7f0800fc +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0800fd +int style Widget_AppCompat_Button_Colored 0x7f0800fe +int style Widget_AppCompat_Button_Small 0x7f0800ff +int style Widget_AppCompat_ButtonBar 0x7f080100 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f080101 +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f080102 +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f080103 +int style Widget_AppCompat_CompoundButton_Switch 0x7f080104 +int style Widget_AppCompat_DrawerArrowToggle 0x7f080105 +int style Widget_AppCompat_DropDownItem_Spinner 0x7f080106 +int style Widget_AppCompat_EditText 0x7f080107 +int style Widget_AppCompat_ImageButton 0x7f080108 +int style Widget_AppCompat_Light_ActionBar 0x7f080109 +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f08010a +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f08010b +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f08010c +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f08010d +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f08010e +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f08010f +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f080110 +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f080111 +int style Widget_AppCompat_Light_ActionButton 0x7f080112 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f080113 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f080114 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f080115 +int style Widget_AppCompat_Light_ActivityChooserView 0x7f080116 +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f080117 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f080118 +int style Widget_AppCompat_Light_ListPopupWindow 0x7f080119 +int style Widget_AppCompat_Light_ListView_DropDown 0x7f08011a +int style Widget_AppCompat_Light_PopupMenu 0x7f08011b +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f08011c +int style Widget_AppCompat_Light_SearchView 0x7f08011d +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f08011e +int style Widget_AppCompat_ListPopupWindow 0x7f08011f +int style Widget_AppCompat_ListView 0x7f080120 +int style Widget_AppCompat_ListView_DropDown 0x7f080121 +int style Widget_AppCompat_ListView_Menu 0x7f080122 +int style Widget_AppCompat_PopupMenu 0x7f080123 +int style Widget_AppCompat_PopupMenu_Overflow 0x7f080124 +int style Widget_AppCompat_PopupWindow 0x7f080125 +int style Widget_AppCompat_ProgressBar 0x7f080126 +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f080127 +int style Widget_AppCompat_RatingBar 0x7f080128 +int style Widget_AppCompat_SearchView 0x7f080129 +int style Widget_AppCompat_SearchView_ActionBar 0x7f08012a +int style Widget_AppCompat_SeekBar 0x7f08012b +int style Widget_AppCompat_Spinner 0x7f08012c +int style Widget_AppCompat_Spinner_DropDown 0x7f08012d +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f08012e +int style Widget_AppCompat_Spinner_Underlined 0x7f08012f +int style Widget_AppCompat_TextView_SpinnerItem 0x7f080130 +int style Widget_AppCompat_Toolbar 0x7f080131 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f080132 +int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01007c } +int styleable ActionBar_background 10 +int styleable ActionBar_backgroundSplit 12 +int styleable ActionBar_backgroundStacked 11 +int styleable ActionBar_contentInsetEnd 21 +int styleable ActionBar_contentInsetLeft 22 +int styleable ActionBar_contentInsetRight 23 +int styleable ActionBar_contentInsetStart 20 +int styleable ActionBar_customNavigationLayout 13 +int styleable ActionBar_displayOptions 3 +int styleable ActionBar_divider 9 +int styleable ActionBar_elevation 24 +int styleable ActionBar_height 0 +int styleable ActionBar_hideOnContentScroll 19 +int styleable ActionBar_homeAsUpIndicator 26 +int styleable ActionBar_homeLayout 14 +int styleable ActionBar_icon 7 +int styleable ActionBar_indeterminateProgressStyle 16 +int styleable ActionBar_itemPadding 18 +int styleable ActionBar_logo 8 +int styleable ActionBar_navigationMode 2 +int styleable ActionBar_popupTheme 25 +int styleable ActionBar_progressBarPadding 17 +int styleable ActionBar_progressBarStyle 15 +int styleable ActionBar_subtitle 4 +int styleable ActionBar_subtitleTextStyle 6 +int styleable ActionBar_title 1 +int styleable ActionBar_titleTextStyle 5 +int[] styleable ActionBarLayout { 0x010100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x0101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c } +int styleable ActionMode_background 3 +int styleable ActionMode_backgroundSplit 4 +int styleable ActionMode_closeItemLayout 5 +int styleable ActionMode_height 0 +int styleable ActionMode_subtitleTextStyle 2 +int styleable ActionMode_titleTextStyle 1 +int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1 +int styleable ActivityChooserView_initialActivityCount 0 +int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonPanelSideLayout 1 +int styleable AlertDialog_listItemLayout 5 +int styleable AlertDialog_listLayout 2 +int styleable AlertDialog_multiChoiceItemLayout 3 +int styleable AlertDialog_singleChoiceItemLayout 4 +int[] styleable AppCompatTextView { 0x01010034, 0x7f010024 } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_textAllCaps 1 +int[] styleable ButtonBarLayout { 0x7f010025 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable CompoundButton { 0x01010107, 0x7f010026, 0x7f010027 } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonTint 1 +int styleable CompoundButton_buttonTintMode 2 +int[] styleable DrawerArrowToggle { 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f } +int styleable DrawerArrowToggle_arrowHeadLength 4 +int styleable DrawerArrowToggle_arrowShaftLength 5 +int styleable DrawerArrowToggle_barLength 6 +int styleable DrawerArrowToggle_color 0 +int styleable DrawerArrowToggle_drawableSize 2 +int styleable DrawerArrowToggle_gapBetweenBars 3 +int styleable DrawerArrowToggle_spinBars 1 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010030, 0x7f010031, 0x7f010032 } +int styleable LinearLayoutCompat_android_baselineAligned 2 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 +int styleable LinearLayoutCompat_android_gravity 0 +int styleable LinearLayoutCompat_android_orientation 1 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 8 +int styleable LinearLayoutCompat_measureWithLargestChild 6 +int styleable LinearLayoutCompat_showDividers 7 +int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 2 +int styleable LinearLayoutCompat_Layout_android_layout_weight 3 +int styleable LinearLayoutCompat_Layout_android_layout_width 1 +int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } +int styleable MenuGroup_android_checkableBehavior 5 +int styleable MenuGroup_android_enabled 0 +int styleable MenuGroup_android_id 1 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 2 +int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036 } +int styleable MenuItem_actionLayout 14 +int styleable MenuItem_actionProviderClass 16 +int styleable MenuItem_actionViewClass 15 +int styleable MenuItem_android_alphabeticShortcut 9 +int styleable MenuItem_android_checkable 11 +int styleable MenuItem_android_checked 3 +int styleable MenuItem_android_enabled 1 +int styleable MenuItem_android_icon 0 +int styleable MenuItem_android_id 2 +int styleable MenuItem_android_menuCategory 5 +int styleable MenuItem_android_numericShortcut 10 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 6 +int styleable MenuItem_android_title 7 +int styleable MenuItem_android_titleCondensed 8 +int styleable MenuItem_android_visible 4 +int styleable MenuItem_showAsAction 13 +int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010037 } +int styleable MenuView_android_headerBackground 4 +int styleable MenuView_android_horizontalDivider 2 +int styleable MenuView_android_itemBackground 5 +int styleable MenuView_android_itemIconDisabledAlpha 6 +int styleable MenuView_android_itemTextAppearance 1 +int styleable MenuView_android_verticalDivider 3 +int styleable MenuView_android_windowAnimationStyle 0 +int styleable MenuView_preserveIconSpacing 7 +int[] styleable PopupWindow { 0x01010176, 0x7f010038 } +int styleable PopupWindow_android_popupBackground 0 +int styleable PopupWindow_overlapAnchor 1 +int[] styleable PopupWindowBackgroundState { 0x7f010039 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046 } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_imeOptions 3 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_maxWidth 1 +int styleable SearchView_closeIcon 8 +int styleable SearchView_commitIcon 13 +int styleable SearchView_defaultQueryHint 7 +int styleable SearchView_goIcon 9 +int styleable SearchView_iconifiedByDefault 5 +int styleable SearchView_layout 4 +int styleable SearchView_queryBackground 15 +int styleable SearchView_queryHint 6 +int styleable SearchView_searchHintIcon 11 +int styleable SearchView_searchIcon 10 +int styleable SearchView_submitBackground 16 +int styleable SearchView_suggestionRowLayout 14 +int styleable SearchView_voiceIcon 12 +int[] styleable Spinner { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b } +int styleable Spinner_android_dropDownWidth 2 +int styleable Spinner_android_popupBackground 0 +int styleable Spinner_android_prompt 1 +int styleable Spinner_popupTheme 3 +int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d } +int styleable SwitchCompat_android_textOff 1 +int styleable SwitchCompat_android_textOn 0 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 9 +int styleable SwitchCompat_splitTrack 8 +int styleable SwitchCompat_switchMinWidth 6 +int styleable SwitchCompat_switchPadding 7 +int styleable SwitchCompat_switchTextAppearance 5 +int styleable SwitchCompat_thumbTextPadding 4 +int styleable SwitchCompat_track 3 +int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010024 } +int styleable TextAppearance_android_shadowColor 4 +int styleable TextAppearance_android_shadowDx 5 +int styleable TextAppearance_android_shadowDy 6 +int styleable TextAppearance_android_shadowRadius 7 +int styleable TextAppearance_android_textColor 3 +int styleable TextAppearance_android_textSize 0 +int styleable TextAppearance_android_textStyle 2 +int styleable TextAppearance_android_typeface 1 +int styleable TextAppearance_textAllCaps 8 +int[] styleable Theme { 0x01010057, 0x010100ae, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9 } +int styleable Theme_actionBarDivider 23 +int styleable Theme_actionBarItemBackground 24 +int styleable Theme_actionBarPopupTheme 17 +int styleable Theme_actionBarSize 22 +int styleable Theme_actionBarSplitStyle 19 +int styleable Theme_actionBarStyle 18 +int styleable Theme_actionBarTabBarStyle 13 +int styleable Theme_actionBarTabStyle 12 +int styleable Theme_actionBarTabTextStyle 14 +int styleable Theme_actionBarTheme 20 +int styleable Theme_actionBarWidgetTheme 21 +int styleable Theme_actionButtonStyle 49 +int styleable Theme_actionDropDownStyle 45 +int styleable Theme_actionMenuTextAppearance 25 +int styleable Theme_actionMenuTextColor 26 +int styleable Theme_actionModeBackground 29 +int styleable Theme_actionModeCloseButtonStyle 28 +int styleable Theme_actionModeCloseDrawable 31 +int styleable Theme_actionModeCopyDrawable 33 +int styleable Theme_actionModeCutDrawable 32 +int styleable Theme_actionModeFindDrawable 37 +int styleable Theme_actionModePasteDrawable 34 +int styleable Theme_actionModePopupWindowStyle 39 +int styleable Theme_actionModeSelectAllDrawable 35 +int styleable Theme_actionModeShareDrawable 36 +int styleable Theme_actionModeSplitBackground 30 +int styleable Theme_actionModeStyle 27 +int styleable Theme_actionModeWebSearchDrawable 38 +int styleable Theme_actionOverflowButtonStyle 15 +int styleable Theme_actionOverflowMenuStyle 16 +int styleable Theme_activityChooserViewStyle 57 +int styleable Theme_alertDialogButtonGroupStyle 92 +int styleable Theme_alertDialogCenterButtons 93 +int styleable Theme_alertDialogStyle 91 +int styleable Theme_alertDialogTheme 94 +int styleable Theme_android_windowAnimationStyle 1 +int styleable Theme_android_windowIsFloating 0 +int styleable Theme_autoCompleteTextViewStyle 99 +int styleable Theme_borderlessButtonStyle 54 +int styleable Theme_buttonBarButtonStyle 51 +int styleable Theme_buttonBarNegativeButtonStyle 97 +int styleable Theme_buttonBarNeutralButtonStyle 98 +int styleable Theme_buttonBarPositiveButtonStyle 96 +int styleable Theme_buttonBarStyle 50 +int styleable Theme_buttonStyle 100 +int styleable Theme_buttonStyleSmall 101 +int styleable Theme_checkboxStyle 102 +int styleable Theme_checkedTextViewStyle 103 +int styleable Theme_colorAccent 84 +int styleable Theme_colorButtonNormal 88 +int styleable Theme_colorControlActivated 86 +int styleable Theme_colorControlHighlight 87 +int styleable Theme_colorControlNormal 85 +int styleable Theme_colorPrimary 82 +int styleable Theme_colorPrimaryDark 83 +int styleable Theme_colorSwitchThumbNormal 89 +int styleable Theme_controlBackground 90 +int styleable Theme_dialogPreferredPadding 43 +int styleable Theme_dialogTheme 42 +int styleable Theme_dividerHorizontal 56 +int styleable Theme_dividerVertical 55 +int styleable Theme_dropDownListViewStyle 74 +int styleable Theme_dropdownListPreferredItemHeight 46 +int styleable Theme_editTextBackground 63 +int styleable Theme_editTextColor 62 +int styleable Theme_editTextStyle 104 +int styleable Theme_homeAsUpIndicator 48 +int styleable Theme_imageButtonStyle 64 +int styleable Theme_listChoiceBackgroundIndicator 81 +int styleable Theme_listDividerAlertDialog 44 +int styleable Theme_listPopupWindowStyle 75 +int styleable Theme_listPreferredItemHeight 69 +int styleable Theme_listPreferredItemHeightLarge 71 +int styleable Theme_listPreferredItemHeightSmall 70 +int styleable Theme_listPreferredItemPaddingLeft 72 +int styleable Theme_listPreferredItemPaddingRight 73 +int styleable Theme_panelBackground 78 +int styleable Theme_panelMenuListTheme 80 +int styleable Theme_panelMenuListWidth 79 +int styleable Theme_popupMenuStyle 60 +int styleable Theme_popupWindowStyle 61 +int styleable Theme_radioButtonStyle 105 +int styleable Theme_ratingBarStyle 106 +int styleable Theme_searchViewStyle 68 +int styleable Theme_seekBarStyle 107 +int styleable Theme_selectableItemBackground 52 +int styleable Theme_selectableItemBackgroundBorderless 53 +int styleable Theme_spinnerDropDownItemStyle 47 +int styleable Theme_spinnerStyle 108 +int styleable Theme_switchStyle 109 +int styleable Theme_textAppearanceLargePopupMenu 40 +int styleable Theme_textAppearanceListItem 76 +int styleable Theme_textAppearanceListItemSmall 77 +int styleable Theme_textAppearanceSearchResultSubtitle 66 +int styleable Theme_textAppearanceSearchResultTitle 65 +int styleable Theme_textAppearanceSmallPopupMenu 41 +int styleable Theme_textColorAlertDialogListItem 95 +int styleable Theme_textColorSearchUrl 67 +int styleable Theme_toolbarNavigationButtonStyle 59 +int styleable Theme_toolbarStyle 58 +int styleable Theme_windowActionBar 2 +int styleable Theme_windowActionBarOverlay 4 +int styleable Theme_windowActionModeOverlay 5 +int styleable Theme_windowFixedHeightMajor 9 +int styleable Theme_windowFixedHeightMinor 7 +int styleable Theme_windowFixedWidthMajor 6 +int styleable Theme_windowFixedWidthMinor 8 +int styleable Theme_windowMinWidthMajor 10 +int styleable Theme_windowMinWidthMinor 11 +int styleable Theme_windowNoTitle 3 +int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8 } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_collapseContentDescription 19 +int styleable Toolbar_collapseIcon 18 +int styleable Toolbar_contentInsetEnd 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 5 +int styleable Toolbar_logo 4 +int styleable Toolbar_logoDescription 22 +int styleable Toolbar_maxButtonHeight 17 +int styleable Toolbar_navigationContentDescription 21 +int styleable Toolbar_navigationIcon 20 +int styleable Toolbar_popupTheme 9 +int styleable Toolbar_subtitle 3 +int styleable Toolbar_subtitleTextAppearance 11 +int styleable Toolbar_subtitleTextColor 24 +int styleable Toolbar_title 2 +int styleable Toolbar_titleMarginBottom 16 +int styleable Toolbar_titleMarginEnd 14 +int styleable Toolbar_titleMarginStart 13 +int styleable Toolbar_titleMarginTop 15 +int styleable Toolbar_titleMargins 12 +int styleable Toolbar_titleTextAppearance 10 +int styleable Toolbar_titleTextColor 23 +int[] styleable View { 0x01010000, 0x010100da, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb } +int styleable View_android_focusable 1 +int styleable View_android_theme 0 +int styleable View_paddingEnd 3 +int styleable View_paddingStart 2 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f0100cc, 0x7f0100cd } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 2 +int styleable ViewStubCompat_android_layout 1 diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/aapt/AndroidManifest.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/aapt/AndroidManifest.xml new file mode 100644 index 0000000..58122b1 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/aapt/AndroidManifest.xml @@ -0,0 +1,24 @@ + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/annotations.zip b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/annotations.zip new file mode 100644 index 0000000..15e7bc7 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/annotations.zip differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/jars/classes.jar b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/jars/classes.jar new file mode 100644 index 0000000..7b678e7 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/jars/classes.jar differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/public.txt b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/public.txt new file mode 100644 index 0000000..533e8dc --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/public.txt @@ -0,0 +1,308 @@ +style TextAppearance.AppCompat +style TextAppearance.AppCompat.Body1 +style TextAppearance.AppCompat.Body2 +style TextAppearance.AppCompat.Button +style TextAppearance.AppCompat.Caption +style TextAppearance.AppCompat.Display1 +style TextAppearance.AppCompat.Display2 +style TextAppearance.AppCompat.Display3 +style TextAppearance.AppCompat.Display4 +style TextAppearance.AppCompat.Headline +style TextAppearance.AppCompat.Inverse +style TextAppearance.AppCompat.Large +style TextAppearance.AppCompat.Large.Inverse +style TextAppearance.AppCompat.Light.SearchResult.Subtitle +style TextAppearance.AppCompat.Light.SearchResult.Title +style TextAppearance.AppCompat.Light.Widget.PopupMenu.Large +style TextAppearance.AppCompat.Light.Widget.PopupMenu.Small +style TextAppearance.AppCompat.Medium +style TextAppearance.AppCompat.Medium.Inverse +style TextAppearance.AppCompat.Menu +style TextAppearance.AppCompat.SearchResult.Subtitle +style TextAppearance.AppCompat.SearchResult.Title +style TextAppearance.AppCompat.Small +style TextAppearance.AppCompat.Small.Inverse +style TextAppearance.AppCompat.Subhead +style TextAppearance.AppCompat.Subhead.Inverse +style TextAppearance.AppCompat.Title +style TextAppearance.AppCompat.Title.Inverse +style TextAppearance.AppCompat.Widget.ActionBar.Menu +style TextAppearance.AppCompat.Widget.ActionBar.Subtitle +style TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse +style TextAppearance.AppCompat.Widget.ActionBar.Title +style TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse +style TextAppearance.AppCompat.Widget.ActionMode.Subtitle +style TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse +style TextAppearance.AppCompat.Widget.ActionMode.Title +style TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse +style TextAppearance.AppCompat.Widget.Button +style TextAppearance.AppCompat.Widget.Button.Inverse +style TextAppearance.AppCompat.Widget.DropDownItem +style TextAppearance.AppCompat.Widget.PopupMenu.Large +style TextAppearance.AppCompat.Widget.PopupMenu.Small +style TextAppearance.AppCompat.Widget.Switch +style TextAppearance.AppCompat.Widget.TextView.SpinnerItem +style Theme.AppCompat +style Theme.AppCompat.Dialog +style Theme.AppCompat.Dialog.Alert +style Theme.AppCompat.Dialog.MinWidth +style Theme.AppCompat.DialogWhenLarge +style Theme.AppCompat.Light +style Theme.AppCompat.Light.DarkActionBar +style Theme.AppCompat.Light.Dialog +style Theme.AppCompat.Light.Dialog.Alert +style Theme.AppCompat.Light.Dialog.MinWidth +style Theme.AppCompat.Light.DialogWhenLarge +style Theme.AppCompat.Light.NoActionBar +style Theme.AppCompat.NoActionBar +style ThemeOverlay.AppCompat +style ThemeOverlay.AppCompat.ActionBar +style ThemeOverlay.AppCompat.Dark +style ThemeOverlay.AppCompat.Dark.ActionBar +style ThemeOverlay.AppCompat.Light +style Widget.AppCompat.ActionBar +style Widget.AppCompat.ActionBar.Solid +style Widget.AppCompat.ActionBar.TabBar +style Widget.AppCompat.ActionBar.TabText +style Widget.AppCompat.ActionBar.TabView +style Widget.AppCompat.ActionButton +style Widget.AppCompat.ActionButton.CloseMode +style Widget.AppCompat.ActionButton.Overflow +style Widget.AppCompat.ActionMode +style Widget.AppCompat.AutoCompleteTextView +style Widget.AppCompat.Button +style Widget.AppCompat.Button.Borderless +style Widget.AppCompat.Button.Borderless.Colored +style Widget.AppCompat.Button.ButtonBar.AlertDialog +style Widget.AppCompat.Button.Colored +style Widget.AppCompat.Button.Small +style Widget.AppCompat.ButtonBar +style Widget.AppCompat.ButtonBar.AlertDialog +style Widget.AppCompat.CompoundButton.CheckBox +style Widget.AppCompat.CompoundButton.RadioButton +style Widget.AppCompat.CompoundButton.Switch +style Widget.AppCompat.DrawerArrowToggle +style Widget.AppCompat.DropDownItem.Spinner +style Widget.AppCompat.EditText +style Widget.AppCompat.ImageButton +style Widget.AppCompat.Light.ActionBar +style Widget.AppCompat.Light.ActionBar.Solid +style Widget.AppCompat.Light.ActionBar.Solid.Inverse +style Widget.AppCompat.Light.ActionBar.TabBar +style Widget.AppCompat.Light.ActionBar.TabBar.Inverse +style Widget.AppCompat.Light.ActionBar.TabText +style Widget.AppCompat.Light.ActionBar.TabText.Inverse +style Widget.AppCompat.Light.ActionBar.TabView +style Widget.AppCompat.Light.ActionBar.TabView.Inverse +style Widget.AppCompat.Light.ActionButton +style Widget.AppCompat.Light.ActionButton.CloseMode +style Widget.AppCompat.Light.ActionButton.Overflow +style Widget.AppCompat.Light.ActionMode.Inverse +style Widget.AppCompat.Light.AutoCompleteTextView +style Widget.AppCompat.Light.DropDownItem.Spinner +style Widget.AppCompat.Light.ListPopupWindow +style Widget.AppCompat.Light.ListView.DropDown +style Widget.AppCompat.Light.PopupMenu +style Widget.AppCompat.Light.PopupMenu.Overflow +style Widget.AppCompat.Light.SearchView +style Widget.AppCompat.Light.Spinner.DropDown.ActionBar +style Widget.AppCompat.ListPopupWindow +style Widget.AppCompat.ListView +style Widget.AppCompat.ListView.DropDown +style Widget.AppCompat.ListView.Menu +style Widget.AppCompat.PopupMenu +style Widget.AppCompat.PopupMenu.Overflow +style Widget.AppCompat.PopupWindow +style Widget.AppCompat.ProgressBar +style Widget.AppCompat.ProgressBar.Horizontal +style Widget.AppCompat.RatingBar +style Widget.AppCompat.SearchView +style Widget.AppCompat.SearchView.ActionBar +style Widget.AppCompat.SeekBar +style Widget.AppCompat.Spinner +style Widget.AppCompat.Spinner.DropDown +style Widget.AppCompat.Spinner.DropDown.ActionBar +style Widget.AppCompat.Spinner.Underlined +style Widget.AppCompat.TextView.SpinnerItem +style Widget.AppCompat.Toolbar +style Widget.AppCompat.Toolbar.Button.Navigation +attr actionBarDivider +attr actionBarItemBackground +attr actionBarPopupTheme +attr actionBarSize +attr actionBarSplitStyle +attr actionBarStyle +attr actionBarTabBarStyle +attr actionBarTabStyle +attr actionBarTabTextStyle +attr actionBarTheme +attr actionBarWidgetTheme +attr actionButtonStyle +attr actionDropDownStyle +attr actionLayout +attr actionMenuTextAppearance +attr actionMenuTextColor +attr actionModeBackground +attr actionModeCloseButtonStyle +attr actionModeCloseDrawable +attr actionModeCopyDrawable +attr actionModeCutDrawable +attr actionModeFindDrawable +attr actionModePasteDrawable +attr actionModeSelectAllDrawable +attr actionModeShareDrawable +attr actionModeSplitBackground +attr actionModeStyle +attr actionModeWebSearchDrawable +attr actionOverflowButtonStyle +attr actionOverflowMenuStyle +attr actionProviderClass +attr actionViewClass +attr alertDialogStyle +attr alertDialogTheme +attr arrowHeadLength +attr arrowShaftLength +attr autoCompleteTextViewStyle +attr background +attr backgroundSplit +attr backgroundStacked +attr backgroundTint +attr backgroundTintMode +attr barLength +attr borderlessButtonStyle +attr buttonBarButtonStyle +attr buttonBarNegativeButtonStyle +attr buttonBarNeutralButtonStyle +attr buttonBarPositiveButtonStyle +attr buttonBarStyle +attr buttonStyle +attr buttonStyleSmall +attr buttonTint +attr buttonTintMode +attr checkboxStyle +attr checkedTextViewStyle +attr closeIcon +attr closeItemLayout +attr collapseContentDescription +attr collapseIcon +attr color +attr colorAccent +attr colorButtonNormal +attr colorControlActivated +attr colorControlHighlight +attr colorControlNormal +attr colorPrimary +attr colorPrimaryDark +attr colorSwitchThumbNormal +attr commitIcon +attr contentInsetEnd +attr contentInsetLeft +attr contentInsetRight +attr contentInsetStart +attr customNavigationLayout +attr dialogPreferredPadding +attr dialogTheme +attr displayOptions +attr divider +attr dividerHorizontal +attr dividerPadding +attr dividerVertical +attr drawableSize +attr drawerArrowStyle +attr editTextBackground +attr editTextColor +attr editTextStyle +attr elevation +attr gapBetweenBars +attr goIcon +attr height +attr hideOnContentScroll +attr homeAsUpIndicator +attr homeLayout +attr icon +attr iconifiedByDefault +attr imageButtonStyle +attr indeterminateProgressStyle +attr isLightTheme +attr itemPadding +attr layout +attr listChoiceBackgroundIndicator +attr listDividerAlertDialog +attr listPopupWindowStyle +attr listPreferredItemHeight +attr listPreferredItemHeightLarge +attr listPreferredItemHeightSmall +attr listPreferredItemPaddingLeft +attr listPreferredItemPaddingRight +attr logo +attr logoDescription +attr measureWithLargestChild +attr middleBarArrowSize +attr navigationContentDescription +attr navigationIcon +attr navigationMode +attr overlapAnchor +attr paddingEnd +attr paddingStart +attr panelBackground +attr popupMenuStyle +attr popupTheme +attr popupWindowStyle +attr preserveIconSpacing +attr progressBarPadding +attr progressBarStyle +attr queryBackground +attr queryHint +attr radioButtonStyle +attr ratingBarStyle +attr searchHintIcon +attr searchIcon +attr searchViewStyle +attr selectableItemBackground +attr selectableItemBackgroundBorderless +attr showAsAction +attr showDividers +attr showText +attr spinBars +attr spinnerDropDownItemStyle +attr spinnerStyle +attr splitTrack +attr submitBackground +attr subtitle +attr subtitleTextAppearance +attr subtitleTextColor +attr subtitleTextStyle +attr suggestionRowLayout +layout support_simple_spinner_dropdown_item +attr switchMinWidth +attr switchPadding +attr switchStyle +attr switchTextAppearance +attr textAllCaps +attr textAppearanceLargePopupMenu +attr textAppearanceListItem +attr textAppearanceListItemSmall +attr textAppearanceSearchResultSubtitle +attr textAppearanceSearchResultTitle +attr textAppearanceSmallPopupMenu +attr textColorAlertDialogListItem +attr theme +attr thickness +attr thumbTextPadding +attr title +attr titleMarginBottom +attr titleMarginEnd +attr titleMarginStart +attr titleMarginTop +attr titleMargins +attr titleTextAppearance +attr titleTextColor +attr titleTextStyle +attr toolbarNavigationButtonStyle +attr toolbarStyle +attr track +attr voiceIcon +attr windowActionBar +attr windowActionBarOverlay +attr windowActionModeOverlay +attr windowNoTitle diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_fade_in.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_fade_in.xml new file mode 100644 index 0000000..62a06d3 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_fade_in.xml @@ -0,0 +1,20 @@ + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_fade_out.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_fade_out.xml new file mode 100644 index 0000000..a4ab6aa --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_fade_out.xml @@ -0,0 +1,20 @@ + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_grow_fade_in_from_bottom.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_grow_fade_in_from_bottom.xml new file mode 100644 index 0000000..6941d0b --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_grow_fade_in_from_bottom.xml @@ -0,0 +1,30 @@ + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_popup_enter.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_popup_enter.xml new file mode 100644 index 0000000..490c976 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_popup_enter.xml @@ -0,0 +1,21 @@ + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_popup_exit.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_popup_exit.xml new file mode 100644 index 0000000..713355c --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_popup_exit.xml @@ -0,0 +1,21 @@ + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_shrink_fade_out_from_bottom.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_shrink_fade_out_from_bottom.xml new file mode 100644 index 0000000..6a47a5e --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_shrink_fade_out_from_bottom.xml @@ -0,0 +1,27 @@ + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_slide_in_bottom.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_slide_in_bottom.xml new file mode 100644 index 0000000..a0f5f98 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_slide_in_bottom.xml @@ -0,0 +1,20 @@ + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_slide_in_top.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_slide_in_top.xml new file mode 100644 index 0000000..26b5eab --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_slide_in_top.xml @@ -0,0 +1,19 @@ + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_slide_out_bottom.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_slide_out_bottom.xml new file mode 100644 index 0000000..d222f1f --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_slide_out_bottom.xml @@ -0,0 +1,19 @@ + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_slide_out_top.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_slide_out_top.xml new file mode 100644 index 0000000..56ffd1a --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/anim/abc_slide_out_top.xml @@ -0,0 +1,19 @@ + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color-v11/abc_background_cache_hint_selector_material_dark.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color-v11/abc_background_cache_hint_selector_material_dark.xml new file mode 100644 index 0000000..00b3dbe --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color-v11/abc_background_cache_hint_selector_material_dark.xml @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color-v11/abc_background_cache_hint_selector_material_light.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color-v11/abc_background_cache_hint_selector_material_light.xml new file mode 100644 index 0000000..7748146 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color-v11/abc_background_cache_hint_selector_material_light.xml @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color-v23/abc_color_highlight_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color-v23/abc_color_highlight_material.xml new file mode 100644 index 0000000..cffdbe4 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color-v23/abc_color_highlight_material.xml @@ -0,0 +1,23 @@ + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_background_cache_hint_selector_material_dark.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_background_cache_hint_selector_material_dark.xml new file mode 100644 index 0000000..6210a09 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_background_cache_hint_selector_material_dark.xml @@ -0,0 +1,20 @@ + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_background_cache_hint_selector_material_light.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_background_cache_hint_selector_material_light.xml new file mode 100644 index 0000000..21039eb --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_background_cache_hint_selector_material_light.xml @@ -0,0 +1,20 @@ + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_primary_text_disable_only_material_dark.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_primary_text_disable_only_material_dark.xml new file mode 100644 index 0000000..a4d9c37 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_primary_text_disable_only_material_dark.xml @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_primary_text_disable_only_material_light.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_primary_text_disable_only_material_light.xml new file mode 100644 index 0000000..bb5ce2f --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_primary_text_disable_only_material_light.xml @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_primary_text_material_dark.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_primary_text_material_dark.xml new file mode 100644 index 0000000..8c9779b --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_primary_text_material_dark.xml @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_primary_text_material_light.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_primary_text_material_light.xml new file mode 100644 index 0000000..4dc65b3 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_primary_text_material_light.xml @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_search_url_text.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_search_url_text.xml new file mode 100644 index 0000000..3a5e9fd --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_search_url_text.xml @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_secondary_text_material_dark.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_secondary_text_material_dark.xml new file mode 100644 index 0000000..3447887 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_secondary_text_material_dark.xml @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_secondary_text_material_light.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_secondary_text_material_light.xml new file mode 100644 index 0000000..6f14398 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/abc_secondary_text_material_light.xml @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/switch_thumb_material_dark.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/switch_thumb_material_dark.xml new file mode 100644 index 0000000..4179a27 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/switch_thumb_material_dark.xml @@ -0,0 +1,20 @@ + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/switch_thumb_material_light.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/switch_thumb_material_light.xml new file mode 100644 index 0000000..e832306 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/color/switch_thumb_material_light.xml @@ -0,0 +1,20 @@ + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png new file mode 100644 index 0000000..4d9f861 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png new file mode 100644 index 0000000..9911008 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png new file mode 100644 index 0000000..69ff9dd Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png new file mode 100644 index 0000000..9218981 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png new file mode 100644 index 0000000..a588576 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png new file mode 100644 index 0000000..b184dbc Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png new file mode 100644 index 0000000..6549c52 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png new file mode 100644 index 0000000..88f1767 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png new file mode 100644 index 0000000..d5e1a00 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png new file mode 100644 index 0000000..2264398 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 0000000..f61e8e3 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png new file mode 100644 index 0000000..0fd1556 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png new file mode 100644 index 0000000..65ccd8f Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png new file mode 100644 index 0000000..b9ff1db Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 0000000..70eb073 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 0000000..e78bcaf Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png new file mode 100644 index 0000000..9a87820 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png new file mode 100644 index 0000000..8610c50 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png new file mode 100644 index 0000000..2d971a9 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png new file mode 100644 index 0000000..ee40812 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png new file mode 100644 index 0000000..b9baa0c Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png new file mode 100644 index 0000000..a87d2cd Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png new file mode 100644 index 0000000..1e571f5 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_focused_holo.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_focused_holo.9.png new file mode 100644 index 0000000..c09ec90 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_focused_holo.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_longpressed_holo.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_longpressed_holo.9.png new file mode 100644 index 0000000..62fbd2c Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_longpressed_holo.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png new file mode 100644 index 0000000..2f6ef91 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_pressed_holo_light.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_pressed_holo_light.9.png new file mode 100644 index 0000000..863ce95 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_pressed_holo_light.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png new file mode 100644 index 0000000..b6d4677 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png new file mode 100644 index 0000000..e01c739 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png new file mode 100644 index 0000000..2cf413c Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png new file mode 100644 index 0000000..9d8451a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png new file mode 100644 index 0000000..4efe298 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png new file mode 100644 index 0000000..543dec3 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png new file mode 100644 index 0000000..9930b3a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png new file mode 100644 index 0000000..4cfb1a7 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png new file mode 100644 index 0000000..32ddf7a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000..9de0263 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png new file mode 100644 index 0000000..6ad9b1d Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png new file mode 100644 index 0000000..4b0b10a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png new file mode 100644 index 0000000..5b13bc1 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png new file mode 100644 index 0000000..0078bf6 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png new file mode 100644 index 0000000..a74ab26 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png new file mode 100644 index 0000000..6282df4 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 0000000..2e1062f Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 0000000..a262b0c Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 0000000..9ed43ca Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000..4cd8a27 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 0000000..e300b7c Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 0000000..05b1e11 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 0000000..aa7b323 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000..d02a5da Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 0000000..a188f2f Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 0000000..e95ba94 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 0000000..87bf8d3 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000..b097e48 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 0000000..de37158 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 0000000..ac86165 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 0000000..8b2adf6 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000..0b89504 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 0000000..7dc6934 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 0000000..884cd12 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 0000000..90fe333 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000..930630d Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png new file mode 100644 index 0000000..fa0ed8f Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png new file mode 100644 index 0000000..7a9fcbc Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png new file mode 100644 index 0000000..3b052e5 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png new file mode 100644 index 0000000..96a8693 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png new file mode 100644 index 0000000..827d634 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png new file mode 100644 index 0000000..0908475 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png new file mode 100644 index 0000000..a5a437f Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png new file mode 100644 index 0000000..d890a62 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png new file mode 100644 index 0000000..0620439 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png new file mode 100644 index 0000000..038e000 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 0000000..8043d4c Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png new file mode 100644 index 0000000..e80681a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png new file mode 100644 index 0000000..9603e76 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png new file mode 100644 index 0000000..44c1423 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 0000000..80c0695 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 0000000..3966d6a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png new file mode 100644 index 0000000..017e45e Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png new file mode 100644 index 0000000..ec0cff4 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png new file mode 100644 index 0000000..966938b Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png new file mode 100644 index 0000000..d05f969 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png new file mode 100644 index 0000000..451818c Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png new file mode 100644 index 0000000..a216da1 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png new file mode 100644 index 0000000..1e571f5 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_focused_holo.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_focused_holo.9.png new file mode 100644 index 0000000..addb54a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_focused_holo.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_longpressed_holo.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_longpressed_holo.9.png new file mode 100644 index 0000000..5fcd5b2 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_longpressed_holo.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png new file mode 100644 index 0000000..251b989 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_pressed_holo_light.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_pressed_holo_light.9.png new file mode 100644 index 0000000..01efec0 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_pressed_holo_light.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png new file mode 100644 index 0000000..f1d1b61 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png new file mode 100644 index 0000000..10851f6 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png new file mode 100644 index 0000000..fe0ec49 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png new file mode 100644 index 0000000..5f55cd5 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png new file mode 100644 index 0000000..10df639 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png new file mode 100644 index 0000000..f83b1ef Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png new file mode 100644 index 0000000..e9efb20 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png new file mode 100644 index 0000000..a4ab0a1 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png new file mode 100644 index 0000000..db9e172 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000..ed75cb8 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png new file mode 100644 index 0000000..00c81fc Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png new file mode 100644 index 0000000..12b0a79 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png new file mode 100644 index 0000000..3ffa251 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png new file mode 100644 index 0000000..0eb61f1 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png new file mode 100644 index 0000000..0c766f3 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png new file mode 100644 index 0000000..4f66d7a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-v21/abc_action_bar_item_background_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-v21/abc_action_bar_item_background_material.xml new file mode 100644 index 0000000..ec1f793 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-v21/abc_action_bar_item_background_material.xml @@ -0,0 +1,18 @@ + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-v21/abc_btn_colored_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-v21/abc_btn_colored_material.xml new file mode 100644 index 0000000..af5b3d3 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-v21/abc_btn_colored_material.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-v23/abc_control_background_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-v23/abc_control_background_material.xml new file mode 100644 index 0000000..a24c900 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-v23/abc_control_background_material.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png new file mode 100644 index 0000000..6284eaa Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png new file mode 100644 index 0000000..4902520 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png new file mode 100644 index 0000000..59a683a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png new file mode 100644 index 0000000..03bf49c Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png new file mode 100644 index 0000000..342323b Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png new file mode 100644 index 0000000..c0333f9 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png new file mode 100644 index 0000000..2f29c39 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png new file mode 100644 index 0000000..a854864 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png new file mode 100644 index 0000000..726b1dc Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png new file mode 100644 index 0000000..600178a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 0000000..c465e82 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png new file mode 100644 index 0000000..76e07f0 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png new file mode 100644 index 0000000..1015e1f Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png new file mode 100644 index 0000000..b3fa6bc Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 0000000..c8a6d25 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 0000000..3c5e683 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png new file mode 100644 index 0000000..f87733a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png new file mode 100644 index 0000000..9aabc43 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png new file mode 100644 index 0000000..c039c8e Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png new file mode 100644 index 0000000..b57ee19 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png new file mode 100644 index 0000000..76f2696 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png new file mode 100644 index 0000000..d0385ba Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png new file mode 100644 index 0000000..1e571f5 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_focused_holo.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_focused_holo.9.png new file mode 100644 index 0000000..67c25ae Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_focused_holo.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_longpressed_holo.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_longpressed_holo.9.png new file mode 100644 index 0000000..17c34a1 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_longpressed_holo.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png new file mode 100644 index 0000000..988548a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png new file mode 100644 index 0000000..15fcf6a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png new file mode 100644 index 0000000..65275b3 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png new file mode 100644 index 0000000..5b58e76 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png new file mode 100644 index 0000000..09d1022 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png new file mode 100644 index 0000000..b5dd854 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png new file mode 100644 index 0000000..138f643 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png new file mode 100644 index 0000000..cd41d74 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png new file mode 100644 index 0000000..8d67525 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png new file mode 100644 index 0000000..2b4734d Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png new file mode 100644 index 0000000..805cb29 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000..bcf6b7f Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png new file mode 100644 index 0000000..f0752d2 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png new file mode 100644 index 0000000..2242d2f Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png new file mode 100644 index 0000000..8ff3a83 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png new file mode 100644 index 0000000..e7e693a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png new file mode 100644 index 0000000..819171a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png new file mode 100644 index 0000000..4def8c8 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png new file mode 100644 index 0000000..4eae28f Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png new file mode 100644 index 0000000..accf80e Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png new file mode 100644 index 0000000..8c82ec3 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png new file mode 100644 index 0000000..8fc0a9b Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png new file mode 100644 index 0000000..92b712e Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png new file mode 100644 index 0000000..78bbeba Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png new file mode 100644 index 0000000..c4ba8e6 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png new file mode 100644 index 0000000..f026a41 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png new file mode 100644 index 0000000..c8b9f68 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png new file mode 100644 index 0000000..f6d2f32 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 0000000..39178bf Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png new file mode 100644 index 0000000..f54f4f9 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png new file mode 100644 index 0000000..65cf0c1 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png new file mode 100644 index 0000000..d041623 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 0000000..9dff893 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 0000000..a1f8c33 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png new file mode 100644 index 0000000..28a3bbf Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png new file mode 100644 index 0000000..29a4e52 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png new file mode 100644 index 0000000..162ab98 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png new file mode 100644 index 0000000..a1866ba Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png new file mode 100644 index 0000000..d967ae7 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png new file mode 100644 index 0000000..5baef9f Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png new file mode 100644 index 0000000..987b2bc Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_focused_holo.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_focused_holo.9.png new file mode 100644 index 0000000..8b050e8 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_focused_holo.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png new file mode 100644 index 0000000..00e370a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png new file mode 100644 index 0000000..719c7b5 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png new file mode 100644 index 0000000..75bd580 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png new file mode 100644 index 0000000..9cc3666 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png new file mode 100644 index 0000000..224a081 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png new file mode 100644 index 0000000..f7f306d Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png new file mode 100644 index 0000000..ee4bfe7 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png new file mode 100644 index 0000000..5268745 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png new file mode 100644 index 0000000..adffc14 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png new file mode 100644 index 0000000..f3d16d5 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png new file mode 100644 index 0000000..6a82af5 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png new file mode 100644 index 0000000..c3791fc Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000..6940b60 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png new file mode 100644 index 0000000..c74b3fc Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png new file mode 100644 index 0000000..eeb74c8 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png new file mode 100644 index 0000000..4d3d3a4 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png new file mode 100644 index 0000000..c5acb84 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png new file mode 100644 index 0000000..30328ae Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png new file mode 100644 index 0000000..d4f3650 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png new file mode 100644 index 0000000..4dc870e Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png new file mode 100644 index 0000000..4e18de2 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png new file mode 100644 index 0000000..5fa3266 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png new file mode 100644 index 0000000..c11cb2e Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png new file mode 100644 index 0000000..6fd5bfe Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png new file mode 100644 index 0000000..99e68cc Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 0000000..16b0f1d Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png new file mode 100644 index 0000000..7b2a480 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 0000000..fe93d87 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 0000000..4b2d05a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png new file mode 100644 index 0000000..16e9e14 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png new file mode 100644 index 0000000..129d30f Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png new file mode 100644 index 0000000..fa6ab02 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png new file mode 100644 index 0000000..77318c7 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png new file mode 100644 index 0000000..098c25a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png new file mode 100644 index 0000000..76c4eeb Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png new file mode 100644 index 0000000..e5a43bb Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png new file mode 100644 index 0000000..eeb37c1 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 0000000..6b8bc0a Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png new file mode 100644 index 0000000..85c81c1 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png new file mode 100644 index 0000000..929be19 Binary files /dev/null and b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png differ diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_btn_borderless_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_btn_borderless_material.xml new file mode 100644 index 0000000..8f63c5b --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_btn_borderless_material.xml @@ -0,0 +1,23 @@ + + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_btn_check_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_btn_check_material.xml new file mode 100644 index 0000000..4b92ef1 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_btn_check_material.xml @@ -0,0 +1,20 @@ + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_btn_colored_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_btn_colored_material.xml new file mode 100644 index 0000000..96c3050 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_btn_colored_material.xml @@ -0,0 +1,22 @@ + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_btn_default_mtrl_shape.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_btn_default_mtrl_shape.xml new file mode 100644 index 0000000..2ed389d --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_btn_default_mtrl_shape.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_btn_radio_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_btn_radio_material.xml new file mode 100644 index 0000000..469cd20 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_btn_radio_material.xml @@ -0,0 +1,20 @@ + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_cab_background_internal_bg.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_cab_background_internal_bg.xml new file mode 100644 index 0000000..c33caa3 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_cab_background_internal_bg.xml @@ -0,0 +1,23 @@ + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_cab_background_top_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_cab_background_top_material.xml new file mode 100644 index 0000000..ebccaf9 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_cab_background_top_material.xml @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_dialog_material_background_dark.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_dialog_material_background_dark.xml new file mode 100644 index 0000000..f4be33c --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_dialog_material_background_dark.xml @@ -0,0 +1,26 @@ + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_dialog_material_background_light.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_dialog_material_background_light.xml new file mode 100644 index 0000000..72e053c --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_dialog_material_background_light.xml @@ -0,0 +1,26 @@ + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_edit_text_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_edit_text_material.xml new file mode 100644 index 0000000..561e386 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_edit_text_material.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_item_background_holo_dark.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_item_background_holo_dark.xml new file mode 100644 index 0000000..289e07a --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_item_background_holo_dark.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_item_background_holo_light.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_item_background_holo_light.xml new file mode 100644 index 0000000..bfb2328 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_item_background_holo_light.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_list_selector_background_transition_holo_dark.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_list_selector_background_transition_holo_dark.xml new file mode 100644 index 0000000..b4b47da --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_list_selector_background_transition_holo_dark.xml @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_list_selector_background_transition_holo_light.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_list_selector_background_transition_holo_light.xml new file mode 100644 index 0000000..516b78b --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_list_selector_background_transition_holo_light.xml @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_list_selector_holo_dark.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_list_selector_holo_dark.xml new file mode 100644 index 0000000..50bd19f --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_list_selector_holo_dark.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_list_selector_holo_light.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_list_selector_holo_light.xml new file mode 100644 index 0000000..11badbd --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_list_selector_holo_light.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_ratingbar_full_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_ratingbar_full_material.xml new file mode 100644 index 0000000..608a14a --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_ratingbar_full_material.xml @@ -0,0 +1,25 @@ + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_seekbar_thumb_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_seekbar_thumb_material.xml new file mode 100644 index 0000000..2627437 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_seekbar_thumb_material.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_seekbar_track_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_seekbar_track_material.xml new file mode 100644 index 0000000..0065617 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_seekbar_track_material.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_spinner_textfield_background_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_spinner_textfield_background_material.xml new file mode 100644 index 0000000..570fea9 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_spinner_textfield_background_material.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_switch_thumb_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_switch_thumb_material.xml new file mode 100644 index 0000000..750fe72 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_switch_thumb_material.xml @@ -0,0 +1,20 @@ + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_tab_indicator_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_tab_indicator_material.xml new file mode 100644 index 0000000..faa54a7 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_tab_indicator_material.xml @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_text_cursor_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_text_cursor_material.xml new file mode 100644 index 0000000..bcd2392 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_text_cursor_material.xml @@ -0,0 +1,23 @@ + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_textfield_search_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_textfield_search_material.xml new file mode 100644 index 0000000..9b8d4d6 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/drawable/abc_textfield_search_material.xml @@ -0,0 +1,23 @@ + + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_bar_title_item.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_bar_title_item.xml new file mode 100644 index 0000000..0906453 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_bar_title_item.xml @@ -0,0 +1,35 @@ + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_bar_up_container.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_bar_up_container.xml new file mode 100644 index 0000000..417f668 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_bar_up_container.xml @@ -0,0 +1,24 @@ + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_bar_view_list_nav_layout.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_bar_view_list_nav_layout.xml new file mode 100644 index 0000000..9f68729 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_bar_view_list_nav_layout.xml @@ -0,0 +1,23 @@ + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_menu_item_layout.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_menu_item_layout.xml new file mode 100644 index 0000000..18feef9 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_menu_item_layout.xml @@ -0,0 +1,31 @@ + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_menu_layout.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_menu_layout.xml new file mode 100644 index 0000000..ddbd730 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_menu_layout.xml @@ -0,0 +1,25 @@ + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_mode_bar.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_mode_bar.xml new file mode 100644 index 0000000..eef2a4d --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_mode_bar.xml @@ -0,0 +1,26 @@ + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_mode_close_item_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_mode_close_item_material.xml new file mode 100644 index 0000000..38023b7 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_action_mode_close_item_material.xml @@ -0,0 +1,26 @@ + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_activity_chooser_view.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_activity_chooser_view.xml new file mode 100644 index 0000000..6e64721 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_activity_chooser_view.xml @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_activity_chooser_view_list_item.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_activity_chooser_view_list_item.xml new file mode 100644 index 0000000..7a8fd97 --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_activity_chooser_view_list_item.xml @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_alert_dialog_button_bar_material.xml b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_alert_dialog_button_bar_material.xml new file mode 100644 index 0000000..b9e10cf --- /dev/null +++ b/GPS/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.1/res/layout/abc_alert_dialog_button_bar_material.xml @@ -0,0 +1,60 @@ + + + + + +