diff --git a/build-tools/automation/azure-pipelines.yaml b/build-tools/automation/azure-pipelines.yaml
index 64c7a4d93e1..398bb405b76 100644
--- a/build-tools/automation/azure-pipelines.yaml
+++ b/build-tools/automation/azure-pipelines.yaml
@@ -369,6 +369,10 @@ stages:
testResultsFiles: TestResult-*.xml
testRunTitle: Java Interop Tests - Windows Build Tree
+ - script: dotnet tool update apkdiff -g
+ displayName: install apkdiff dotnet tool
+ continueOnError: true
+
# Limit the amount of worker threads used to run these tests in parallel to half of what is currently available (8) on the Windows pool.
# Using all available cores seems to occasionally bog down our machines and cause parallel test execution to slow down dramatically.
# Only run a subset of the Xamarin.Android.Build.Tests against the local Windows build tree.
@@ -412,10 +416,8 @@ stages:
- script: mono $(System.DefaultWorkingDirectory)/build-tools/xaprepare/xaprepare/bin/$(ApkTestConfiguration)/xaprepare.exe --s=EmulatorTestDependencies --no-emoji --run-mode=CI
displayName: install emulator
- - task: CmdLine@2
+ - script: 'dotnet tool update apkdiff -g'
displayName: install apkdiff dotnet tool
- inputs:
- script: 'dotnet tool update apkdiff -g'
continueOnError: true
- template: yaml-templates/apk-instrumentation.yaml
diff --git a/build-tools/automation/yaml-templates/run-msbuild-mac-tests.yaml b/build-tools/automation/yaml-templates/run-msbuild-mac-tests.yaml
index a801a4953e3..ad098004c93 100644
--- a/build-tools/automation/yaml-templates/run-msbuild-mac-tests.yaml
+++ b/build-tools/automation/yaml-templates/run-msbuild-mac-tests.yaml
@@ -27,6 +27,12 @@ jobs:
artifactName: $(TestAssembliesArtifactName)
downloadPath: $(System.DefaultWorkingDirectory)/bin/Test$(XA.Build.Configuration)
+ - task: CmdLine@2
+ displayName: install apkdiff dotnet tool
+ inputs:
+ script: 'dotnet tool update apkdiff -g'
+ continueOnError: true
+
- template: run-nunit-tests.yaml
parameters:
useDotNet: $(UseDotNet)
diff --git a/build-tools/automation/yaml-templates/run-msbuild-win-tests.yaml b/build-tools/automation/yaml-templates/run-msbuild-win-tests.yaml
index b8af1916318..7755dd74de9 100644
--- a/build-tools/automation/yaml-templates/run-msbuild-win-tests.yaml
+++ b/build-tools/automation/yaml-templates/run-msbuild-win-tests.yaml
@@ -32,6 +32,12 @@ jobs:
artifactName: $(TestAssembliesArtifactName)
downloadPath: $(System.DefaultWorkingDirectory)\bin\Test$(XA.Build.Configuration)
+ - task: CmdLine@2
+ displayName: install apkdiff dotnet tool
+ inputs:
+ script: 'dotnet tool update apkdiff -g'
+ continueOnError: true
+
# Limit the amount of worker threads used to run these tests in parallel to half of what is currently available (8) on the Windows pool.
# Using all available cores seems to occasionally bog down our machines and cause parallel test execution to slow down dramatically.
- template: run-nunit-tests.yaml
diff --git a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/BuildTest.cs b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/BuildTest.cs
index 66b9c8cef5b..425403be732 100644
--- a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/BuildTest.cs
+++ b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/BuildTest.cs
@@ -64,6 +64,7 @@ public static string GetLinkedPath (ProjectBuilder builder, bool isRelease, stri
}
[Test]
+ [Category ("SmokeTests")]
public void BuildReleaseArm64 ([Values (false, true)] bool forms)
{
var proj = forms ?
@@ -81,6 +82,16 @@ public void BuildReleaseArm64 ([Values (false, true)] bool forms)
proj.AddDotNetCompatPackages ();
}
+ byte [] apkDescData;
+ var flavor = (forms ? "XForms" : "Simple") + (Builder.UseDotNet ? "DotNet" : "Legacy");
+ var apkDescFilename = $"BuildReleaseArm64{flavor}.apkdesc";
+ var apkDescReference = "reference.apkdesc";
+ using (var stream = typeof (XamarinAndroidApplicationProject).Assembly.GetManifestResourceStream ($"Xamarin.ProjectTools.Resources.Base.{apkDescFilename}")) {
+ apkDescData = new byte [stream.Length];
+ stream.Read (apkDescData, 0, (int) stream.Length);
+ }
+ proj.OtherBuildItems.Add (new BuildItem ("ApkDescFile", apkDescReference) { BinaryContent = () => apkDescData });
+
// use BuildHelper.CreateApkBuilder so that the test directory is not removed in tearup
using (var b = BuildHelper.CreateApkBuilder (Path.Combine ("temp", TestName))) {
Assert.IsTrue (b.Build (proj), "Build should have succeeded.");
@@ -90,6 +101,14 @@ public void BuildReleaseArm64 ([Values (false, true)] bool forms)
? GetLinkedPath (b, true, depsFilename)
: Path.Combine (proj.Root, b.ProjectDirectory, depsFilename);
FileAssert.Exists (depsFile);
+
+ const int ApkSizeThreshold = 50 * 1024;
+ const int AssemblySizeThreshold = 50 * 1024;
+ var apkFile = Path.Combine (Root, b.ProjectDirectory, proj.OutputPath, proj.PackageName + "-Signed.apk");
+ var apkDescPath = Path.Combine (Root, b.ProjectDirectory, apkDescFilename);
+ var apkDescReferencePath = Path.Combine (Root, b.ProjectDirectory, apkDescReference);
+ var (code, stdOut, stdErr) = RunApkDiffCommand ($"-s --save-description-2={apkDescPath} --test-apk-size-regression={ApkSizeThreshold} --test-assembly-size-regression={AssemblySizeThreshold} {apkDescReferencePath} {apkFile}");
+ Assert.IsTrue (code == 0, $"apkdiff regression test failed with exit code: {code}\nstdOut: {stdOut}\nstdErr: {stdErr}");
}
}
diff --git a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/Utilities/BaseTest.cs b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/Utilities/BaseTest.cs
index 1a86883d4a1..6b59664041e 100644
--- a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/Utilities/BaseTest.cs
+++ b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/Utilities/BaseTest.cs
@@ -237,7 +237,28 @@ protected static string RunAdbCommand (string command, bool ignoreErrors = true,
return RunProcess (adb, $"{adbTarget} {command}");
}
+ protected static (int code, string stdOutput, string stdError) RunApkDiffCommand (string args)
+ {
+ string ext = Environment.OSVersion.Platform != PlatformID.Unix ? ".exe" : "";
+
+ try {
+ return RunProcessWithExitCode ("apkdiff" + ext, args);
+ } catch (System.ComponentModel.Win32Exception) {
+ // apkdiff's location might not be in the $PATH, try known location
+ var profileDir = Environment.GetEnvironmentVariable ("USERPROFILE");
+
+ return RunProcessWithExitCode (Path.Combine (profileDir, ".dotnet", "tools", "apkdiff" + ext), args);
+ }
+ }
+
protected static string RunProcess (string exe, string args)
+ {
+ var (_, stdOutput, stdError) = RunProcessWithExitCode (exe, args);
+
+ return stdOutput + stdError;
+ }
+
+ protected static (int code, string stdOutput, string stdError) RunProcessWithExitCode (string exe, string args)
{
TestContext.Out.WriteLine ($"{nameof(RunProcess)}: {exe} {args}");
var info = new ProcessStartInfo (exe, args) {
@@ -266,12 +287,12 @@ protected static string RunProcess (string exe, string args)
if (!proc.WaitForExit ((int)TimeSpan.FromSeconds (30).TotalMilliseconds)) {
proc.Kill ();
TestContext.Out.WriteLine ($"{nameof (RunProcess)} timed out: {exe} {args}");
- return null; //Don't try to read stdout/stderr
+ return (-1, null, null); //Don't try to read stdout/stderr
}
proc.WaitForExit ();
- return standardOutput.ToString ().Trim () + errorOutput.ToString ().Trim ();
+ return (proc.ExitCode, standardOutput.ToString ().Trim (), errorOutput.ToString ().Trim ());
}
}
diff --git a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Resources/Base/BuildReleaseArm64SimpleDotNet.apkdesc b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Resources/Base/BuildReleaseArm64SimpleDotNet.apkdesc
new file mode 100644
index 00000000000..502e8c51e88
--- /dev/null
+++ b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Resources/Base/BuildReleaseArm64SimpleDotNet.apkdesc
@@ -0,0 +1,96 @@
+{
+ "Comment": null,
+ "Entries": {
+ "AndroidManifest.xml": {
+ "Size": 2584
+ },
+ "res/drawable-mdpi-v4/icon.png": {
+ "Size": 2199
+ },
+ "res/drawable-hdpi-v4/icon.png": {
+ "Size": 4791
+ },
+ "res/drawable-xhdpi-v4/icon.png": {
+ "Size": 7462
+ },
+ "res/drawable-xxhdpi-v4/icon.png": {
+ "Size": 13092
+ },
+ "res/drawable-xxxhdpi-v4/icon.png": {
+ "Size": 20118
+ },
+ "res/layout/main.xml": {
+ "Size": 544
+ },
+ "resources.arsc": {
+ "Size": 1724
+ },
+ "classes.dex": {
+ "Size": 316988
+ },
+ "assemblies/UnnamedProject.dll": {
+ "Size": 2955
+ },
+ "assemblies/System.Collections.Concurrent.dll": {
+ "Size": 9341
+ },
+ "assemblies/System.Collections.dll": {
+ "Size": 4490
+ },
+ "assemblies/System.Console.dll": {
+ "Size": 6209
+ },
+ "assemblies/System.Linq.Expressions.dll": {
+ "Size": 115171
+ },
+ "assemblies/System.Linq.dll": {
+ "Size": 16987
+ },
+ "assemblies/System.ObjectModel.dll": {
+ "Size": 3372
+ },
+ "assemblies/System.Private.CoreLib.dll": {
+ "Size": 527251
+ },
+ "assemblies/Java.Interop.dll": {
+ "Size": 67979
+ },
+ "assemblies/Mono.Android.dll": {
+ "Size": 108095
+ },
+ "lib/arm64-v8a/libxamarin-app.so": {
+ "Size": 11904
+ },
+ "lib/arm64-v8a/libSystem.IO.Compression.Native.so": {
+ "Size": 776216
+ },
+ "lib/arm64-v8a/libSystem.Native.so": {
+ "Size": 75872
+ },
+ "lib/arm64-v8a/libSystem.Security.Cryptography.Native.OpenSsl.so": {
+ "Size": 100464
+ },
+ "lib/arm64-v8a/libmonosgen-2.0.so": {
+ "Size": 18570656
+ },
+ "lib/arm64-v8a/libmonodroid.so": {
+ "Size": 254616
+ },
+ "lib/arm64-v8a/libxa-internal-api.so": {
+ "Size": 66544
+ },
+ "lib/arm64-v8a/libxamarin-debug-app-helper.so": {
+ "Size": 191408
+ },
+ "META-INF/ANDROIDD.SF": {
+ "Size": 2948
+ },
+ "META-INF/ANDROIDD.RSA": {
+ "Size": 1213
+ },
+ "META-INF/MANIFEST.MF": {
+ "Size": 2821
+ }
+ },
+ "PackageSize": 8050955
+}
\ No newline at end of file
diff --git a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Resources/Base/BuildReleaseArm64SimpleLegacy.apkdesc b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Resources/Base/BuildReleaseArm64SimpleLegacy.apkdesc
new file mode 100644
index 00000000000..19d3b4ffa40
--- /dev/null
+++ b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Resources/Base/BuildReleaseArm64SimpleLegacy.apkdesc
@@ -0,0 +1,78 @@
+{
+ "Comment": null,
+ "Entries": {
+ "AndroidManifest.xml": {
+ "Size": 2584
+ },
+ "res/drawable-mdpi-v4/icon.png": {
+ "Size": 2199
+ },
+ "res/drawable-hdpi-v4/icon.png": {
+ "Size": 4762
+ },
+ "res/drawable-xhdpi-v4/icon.png": {
+ "Size": 7462
+ },
+ "res/drawable-xxhdpi-v4/icon.png": {
+ "Size": 13092
+ },
+ "res/drawable-xxxhdpi-v4/icon.png": {
+ "Size": 20118
+ },
+ "res/layout/main.xml": {
+ "Size": 544
+ },
+ "resources.arsc": {
+ "Size": 1724
+ },
+ "classes.dex": {
+ "Size": 316956
+ },
+ "assemblies/UnnamedProject.dll": {
+ "Size": 2861
+ },
+ "assemblies/Java.Interop.dll": {
+ "Size": 75724
+ },
+ "assemblies/Mono.Android.dll": {
+ "Size": 264062
+ },
+ "assemblies/mscorlib.dll": {
+ "Size": 779345
+ },
+ "assemblies/System.Core.dll": {
+ "Size": 149498
+ },
+ "assemblies/System.dll": {
+ "Size": 12986
+ },
+ "lib/arm64-v8a/libxamarin-app.so": {
+ "Size": 19824
+ },
+ "lib/arm64-v8a/libmonodroid.so": {
+ "Size": 254616
+ },
+ "lib/arm64-v8a/libxa-internal-api.so": {
+ "Size": 66544
+ },
+ "lib/arm64-v8a/libmono-btls-shared.so": {
+ "Size": 2160056
+ },
+ "lib/arm64-v8a/libmonosgen-2.0.so": {
+ "Size": 6823104
+ },
+ "lib/arm64-v8a/libmono-native.so": {
+ "Size": 1150064
+ },
+ "META-INF/ANDROIDD.SF": {
+ "Size": 2225
+ },
+ "META-INF/ANDROIDD.RSA": {
+ "Size": 1213
+ },
+ "META-INF/MANIFEST.MF": {
+ "Size": 2098
+ }
+ },
+ "PackageSize": 5142228
+}
\ No newline at end of file
diff --git a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Resources/Base/BuildReleaseArm64XFormsDotNet.apkdesc b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Resources/Base/BuildReleaseArm64XFormsDotNet.apkdesc
new file mode 100644
index 00000000000..bf8859f9bce
--- /dev/null
+++ b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Resources/Base/BuildReleaseArm64XFormsDotNet.apkdesc
@@ -0,0 +1,2076 @@
+{
+ "Comment": null,
+ "Entries": {
+ "AndroidManifest.xml": {
+ "Size": 3120
+ },
+ "res/anim/abc_fade_in.xml": {
+ "Size": 388
+ },
+ "res/anim/abc_fade_out.xml": {
+ "Size": 388
+ },
+ "res/anim/abc_grow_fade_in_from_bottom.xml": {
+ "Size": 852
+ },
+ "res/anim/abc_popup_enter.xml": {
+ "Size": 508
+ },
+ "res/anim/abc_popup_exit.xml": {
+ "Size": 508
+ },
+ "res/anim/abc_shrink_fade_out_from_bottom.xml": {
+ "Size": 852
+ },
+ "res/anim/abc_slide_in_bottom.xml": {
+ "Size": 396
+ },
+ "res/anim/abc_slide_in_top.xml": {
+ "Size": 396
+ },
+ "res/anim/abc_slide_out_bottom.xml": {
+ "Size": 396
+ },
+ "res/anim/abc_slide_out_top.xml": {
+ "Size": 396
+ },
+ "res/anim/abc_tooltip_enter.xml": {
+ "Size": 388
+ },
+ "res/anim/abc_tooltip_exit.xml": {
+ "Size": 388
+ },
+ "res/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml": {
+ "Size": 2124
+ },
+ "res/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml": {
+ "Size": 2780
+ },
+ "res/anim/btn_checkbox_to_checked_icon_null_animation.xml": {
+ "Size": 1196
+ },
+ "res/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml": {
+ "Size": 2360
+ },
+ "res/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml": {
+ "Size": 2520
+ },
+ "res/anim/btn_checkbox_to_unchecked_icon_null_animation.xml": {
+ "Size": 1196
+ },
+ "res/anim/btn_radio_to_off_mtrl_dot_group_animation.xml": {
+ "Size": 1656
+ },
+ "res/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml": {
+ "Size": 1656
+ },
+ "res/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml": {
+ "Size": 1028
+ },
+ "res/anim/btn_radio_to_on_mtrl_dot_group_animation.xml": {
+ "Size": 1656
+ },
+ "res/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml": {
+ "Size": 1656
+ },
+ "res/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml": {
+ "Size": 1028
+ },
+ "res/anim/design_bottom_sheet_slide_in.xml": {
+ "Size": 616
+ },
+ "res/anim/design_bottom_sheet_slide_out.xml": {
+ "Size": 616
+ },
+ "res/anim/design_snackbar_in.xml": {
+ "Size": 312
+ },
+ "res/anim/design_snackbar_out.xml": {
+ "Size": 312
+ },
+ "res/anim/enterfromleft.xml": {
+ "Size": 640
+ },
+ "res/anim/enterfromright.xml": {
+ "Size": 468
+ },
+ "res/anim/exittoleft.xml": {
+ "Size": 640
+ },
+ "res/anim/exittoright.xml": {
+ "Size": 468
+ },
+ "res/anim-v21/design_bottom_sheet_slide_in.xml": {
+ "Size": 616
+ },
+ "res/anim-v21/design_bottom_sheet_slide_out.xml": {
+ "Size": 616
+ },
+ "res/animator/design_fab_hide_motion_spec.xml": {
+ "Size": 796
+ },
+ "res/animator/design_fab_show_motion_spec.xml": {
+ "Size": 796
+ },
+ "res/animator/mtrl_btn_state_list_anim.xml": {
+ "Size": 2664
+ },
+ "res/animator/mtrl_btn_unelevated_state_list_anim.xml": {
+ "Size": 120
+ },
+ "res/animator/mtrl_chip_state_list_anim.xml": {
+ "Size": 1072
+ },
+ "res/animator/mtrl_fab_hide_motion_spec.xml": {
+ "Size": 796
+ },
+ "res/animator/mtrl_fab_show_motion_spec.xml": {
+ "Size": 796
+ },
+ "res/animator/mtrl_fab_transformation_sheet_collapse_spec.xml": {
+ "Size": 1888
+ },
+ "res/animator/mtrl_fab_transformation_sheet_expand_spec.xml": {
+ "Size": 1888
+ },
+ "res/animator-v21/design_appbar_state_list_animator.xml": {
+ "Size": 1216
+ },
+ "res/color/abc_background_cache_hint_selector_material_dark.xml": {
+ "Size": 468
+ },
+ "res/color/abc_background_cache_hint_selector_material_light.xml": {
+ "Size": 468
+ },
+ "res/color/abc_btn_colored_borderless_text_material.xml": {
+ "Size": 604
+ },
+ "res/color/abc_btn_colored_text_material.xml": {
+ "Size": 604
+ },
+ "res/color/abc_hint_foreground_material_dark.xml": {
+ "Size": 564
+ },
+ "res/color/abc_hint_foreground_material_light.xml": {
+ "Size": 564
+ },
+ "res/color/abc_primary_text_disable_only_material_dark.xml": {
+ "Size": 464
+ },
+ "res/color/abc_primary_text_disable_only_material_light.xml": {
+ "Size": 464
+ },
+ "res/color/abc_primary_text_material_dark.xml": {
+ "Size": 464
+ },
+ "res/color/abc_primary_text_material_light.xml": {
+ "Size": 464
+ },
+ "res/color/abc_search_url_text.xml": {
+ "Size": 588
+ },
+ "res/color/abc_secondary_text_material_dark.xml": {
+ "Size": 464
+ },
+ "res/color/abc_secondary_text_material_light.xml": {
+ "Size": 464
+ },
+ "res/color/abc_tint_btn_checkable.xml": {
+ "Size": 728
+ },
+ "res/color/abc_tint_default.xml": {
+ "Size": 1224
+ },
+ "res/color/abc_tint_edittext.xml": {
+ "Size": 772
+ },
+ "res/color/abc_tint_seek_thumb.xml": {
+ "Size": 604
+ },
+ "res/color/abc_tint_spinner.xml": {
+ "Size": 772
+ },
+ "res/color/abc_tint_switch_track.xml": {
+ "Size": 768
+ },
+ "res/color/design_error.xml": {
+ "Size": 464
+ },
+ "res/color/design_tint_password_toggle.xml": {
+ "Size": 480
+ },
+ "res/color/mtrl_bottom_nav_colored_item_tint.xml": {
+ "Size": 684
+ },
+ "res/color/mtrl_bottom_nav_item_tint.xml": {
+ "Size": 684
+ },
+ "res/color/mtrl_btn_bg_color_selector.xml": {
+ "Size": 464
+ },
+ "res/color/mtrl_btn_ripple_color.xml": {
+ "Size": 948
+ },
+ "res/color/mtrl_btn_stroke_color_selector.xml": {
+ "Size": 376
+ },
+ "res/color/mtrl_btn_text_btn_ripple_color.xml": {
+ "Size": 948
+ },
+ "res/color/mtrl_btn_text_color_selector.xml": {
+ "Size": 464
+ },
+ "res/color/mtrl_chip_background_color.xml": {
+ "Size": 608
+ },
+ "res/color/mtrl_chip_close_icon_tint.xml": {
+ "Size": 1092
+ },
+ "res/color/mtrl_chip_ripple_color.xml": {
+ "Size": 948
+ },
+ "res/color/mtrl_chip_text_color.xml": {
+ "Size": 464
+ },
+ "res/color/mtrl_fab_ripple_color.xml": {
+ "Size": 948
+ },
+ "res/color/mtrl_tabs_colored_ripple_color.xml": {
+ "Size": 948
+ },
+ "res/color/mtrl_tabs_icon_color_selector.xml": {
+ "Size": 464
+ },
+ "res/color/mtrl_tabs_icon_color_selector_colored.xml": {
+ "Size": 464
+ },
+ "res/color/mtrl_tabs_legacy_text_color_selector.xml": {
+ "Size": 464
+ },
+ "res/color/mtrl_tabs_ripple_color.xml": {
+ "Size": 1672
+ },
+ "res/color/mtrl_text_btn_text_color_selector.xml": {
+ "Size": 464
+ },
+ "res/color/switch_thumb_material_dark.xml": {
+ "Size": 464
+ },
+ "res/color/switch_thumb_material_light.xml": {
+ "Size": 464
+ },
+ "res/color-v21/abc_btn_colored_borderless_text_material.xml": {
+ "Size": 464
+ },
+ "res/color-v23/abc_btn_colored_borderless_text_material.xml": {
+ "Size": 500
+ },
+ "res/color-v23/abc_btn_colored_text_material.xml": {
+ "Size": 500
+ },
+ "res/color-v23/abc_color_highlight_material.xml": {
+ "Size": 544
+ },
+ "res/color-v23/abc_tint_btn_checkable.xml": {
+ "Size": 624
+ },
+ "res/color-v23/abc_tint_default.xml": {
+ "Size": 1120
+ },
+ "res/color-v23/abc_tint_edittext.xml": {
+ "Size": 668
+ },
+ "res/color-v23/abc_tint_seek_thumb.xml": {
+ "Size": 500
+ },
+ "res/color-v23/abc_tint_spinner.xml": {
+ "Size": 668
+ },
+ "res/color-v23/abc_tint_switch_track.xml": {
+ "Size": 664
+ },
+ "res/color-v23/design_tint_password_toggle.xml": {
+ "Size": 376
+ },
+ "res/drawable/abc_btn_borderless_material.xml": {
+ "Size": 588
+ },
+ "res/drawable/abc_btn_check_material.xml": {
+ "Size": 464
+ },
+ "res/drawable/abc_btn_check_material_anim.xml": {
+ "Size": 816
+ },
+ "res/drawable/abc_btn_colored_material.xml": {
+ "Size": 344
+ },
+ "res/drawable/abc_btn_default_mtrl_shape.xml": {
+ "Size": 932
+ },
+ "res/drawable/abc_btn_radio_material.xml": {
+ "Size": 464
+ },
+ "res/drawable/abc_btn_radio_material_anim.xml": {
+ "Size": 816
+ },
+ "res/drawable/abc_cab_background_internal_bg.xml": {
+ "Size": 372
+ },
+ "res/drawable/abc_cab_background_top_material.xml": {
+ "Size": 336
+ },
+ "res/drawable/abc_dialog_material_background.xml": {
+ "Size": 716
+ },
+ "res/drawable/abc_edit_text_material.xml": {
+ "Size": 868
+ },
+ "res/drawable/abc_ic_ab_back_material.xml": {
+ "Size": 692
+ },
+ "res/drawable/abc_ic_arrow_drop_right_black_24dp.xml": {
+ "Size": 1000
+ },
+ "res/drawable/abc_ic_clear_material.xml": {
+ "Size": 684
+ },
+ "res/drawable/abc_ic_go_search_api_material.xml": {
+ "Size": 640
+ },
+ "res/drawable/abc_ic_menu_overflow_material.xml": {
+ "Size": 792
+ },
+ "res/drawable/abc_ic_search_api_material.xml": {
+ "Size": 812
+ },
+ "res/drawable/abc_ic_voice_search_api_material.xml": {
+ "Size": 828
+ },
+ "res/drawable/abc_item_background_holo_dark.xml": {
+ "Size": 1012
+ },
+ "res/drawable/abc_item_background_holo_light.xml": {
+ "Size": 1012
+ },
+ "res/drawable/abc_list_divider_material.xml": {
+ "Size": 480
+ },
+ "res/drawable/abc_list_selector_background_transition_holo_dark.xml": {
+ "Size": 424
+ },
+ "res/drawable/abc_list_selector_background_transition_holo_light.xml": {
+ "Size": 424
+ },
+ "res/drawable/abc_list_selector_holo_dark.xml": {
+ "Size": 1064
+ },
+ "res/drawable/abc_list_selector_holo_light.xml": {
+ "Size": 1064
+ },
+ "res/drawable/abc_ratingbar_indicator_material.xml": {
+ "Size": 664
+ },
+ "res/drawable-v21/abc_ratingbar_indicator_material.xml": {
+ "Size": 704
+ },
+ "res/drawable/abc_ratingbar_material.xml": {
+ "Size": 664
+ },
+ "res/drawable-v21/abc_ratingbar_material.xml": {
+ "Size": 704
+ },
+ "res/drawable/abc_ratingbar_small_material.xml": {
+ "Size": 664
+ },
+ "res/drawable-v21/abc_ratingbar_small_material.xml": {
+ "Size": 704
+ },
+ "res/drawable/abc_seekbar_thumb_material.xml": {
+ "Size": 1100
+ },
+ "res/drawable/abc_seekbar_tick_mark_material.xml": {
+ "Size": 516
+ },
+ "res/drawable/abc_seekbar_track_material.xml": {
+ "Size": 1408
+ },
+ "res/drawable/abc_spinner_textfield_background_material.xml": {
+ "Size": 1160
+ },
+ "res/drawable/abc_switch_thumb_material.xml": {
+ "Size": 464
+ },
+ "res/drawable/abc_tab_indicator_material.xml": {
+ "Size": 468
+ },
+ "res/drawable/abc_text_cursor_material.xml": {
+ "Size": 516
+ },
+ "res/drawable/abc_textfield_search_material.xml": {
+ "Size": 756
+ },
+ "res/drawable/abc_vector_test.xml": {
+ "Size": 612
+ },
+ "res/drawable/btn_checkbox_checked_mtrl.xml": {
+ "Size": 2688
+ },
+ "res/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml": {
+ "Size": 688
+ },
+ "res/drawable/btn_checkbox_unchecked_mtrl.xml": {
+ "Size": 2660
+ },
+ "res/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml": {
+ "Size": 688
+ },
+ "res/drawable/btn_radio_off_mtrl.xml": {
+ "Size": 1728
+ },
+ "res/drawable/btn_radio_off_to_on_mtrl_animation.xml": {
+ "Size": 680
+ },
+ "res/drawable/btn_radio_on_mtrl.xml": {
+ "Size": 1656
+ },
+ "res/drawable/btn_radio_on_to_off_mtrl_animation.xml": {
+ "Size": 680
+ },
+ "res/drawable/design_bottom_navigation_item_background.xml": {
+ "Size": 784
+ },
+ "res/drawable/design_fab_background.xml": {
+ "Size": 372
+ },
+ "res/drawable/design_password_eye.xml": {
+ "Size": 464
+ },
+ "res/drawable/design_snackbar_background.xml": {
+ "Size": 484
+ },
+ "res/drawable/ic_mtrl_chip_checked_black.xml": {
+ "Size": 600
+ },
+ "res/drawable/ic_mtrl_chip_checked_circle.xml": {
+ "Size": 940
+ },
+ "res/drawable/ic_mtrl_chip_close_circle.xml": {
+ "Size": 808
+ },
+ "res/drawable/mtrl_snackbar_background.xml": {
+ "Size": 484
+ },
+ "res/drawable/mtrl_tabs_default_indicator.xml": {
+ "Size": 628
+ },
+ "res/drawable/navigation_empty_icon.xml": {
+ "Size": 516
+ },
+ "res/drawable/notification_bg.xml": {
+ "Size": 532
+ },
+ "res/drawable/notification_bg_low.xml": {
+ "Size": 532
+ },
+ "res/drawable/notification_icon_background.xml": {
+ "Size": 372
+ },
+ "res/drawable/notification_tile_bg.xml": {
+ "Size": 304
+ },
+ "res/drawable/tooltip_frame_dark.xml": {
+ "Size": 484
+ },
+ "res/drawable/tooltip_frame_light.xml": {
+ "Size": 484
+ },
+ "res/drawable-watch-v20/abc_dialog_material_background.xml": {
+ "Size": 372
+ },
+ "res/drawable-v21/$avd_hide_password__0.xml": {
+ "Size": 1176
+ },
+ "res/drawable-v21/$avd_hide_password__1.xml": {
+ "Size": 592
+ },
+ "res/drawable-v21/$avd_hide_password__2.xml": {
+ "Size": 556
+ },
+ "res/drawable-v21/$avd_show_password__0.xml": {
+ "Size": 1136
+ },
+ "res/drawable-v21/$avd_show_password__1.xml": {
+ "Size": 592
+ },
+ "res/drawable-v21/$avd_show_password__2.xml": {
+ "Size": 556
+ },
+ "res/drawable-v21/abc_action_bar_item_background_material.xml": {
+ "Size": 264
+ },
+ "res/drawable-v21/abc_btn_colored_material.xml": {
+ "Size": 1716
+ },
+ "res/drawable-v21/abc_dialog_material_background.xml": {
+ "Size": 716
+ },
+ "res/drawable-v21/abc_edit_text_material.xml": {
+ "Size": 1172
+ },
+ "res/drawable-v21/abc_list_divider_material.xml": {
+ "Size": 516
+ },
+ "res/drawable-v21/avd_hide_password.xml": {
+ "Size": 660
+ },
+ "res/drawable-v21/avd_show_password.xml": {
+ "Size": 660
+ },
+ "res/drawable-v21/design_bottom_navigation_item_background.xml": {
+ "Size": 264
+ },
+ "res/drawable-v21/design_password_eye.xml": {
+ "Size": 816
+ },
+ "res/drawable-v21/notification_action_background.xml": {
+ "Size": 1180
+ },
+ "res/drawable-v23/abc_control_background_material.xml": {
+ "Size": 304
+ },
+ "res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png": {
+ "Size": 267
+ },
+ "res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png": {
+ "Size": 214
+ },
+ "res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png": {
+ "Size": 321
+ },
+ "res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png": {
+ "Size": 324
+ },
+ "res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png": {
+ "Size": 356
+ },
+ "res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png": {
+ "Size": 754
+ },
+ "res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png": {
+ "Size": 825
+ },
+ "res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png": {
+ "Size": 216
+ },
+ "res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png": {
+ "Size": 173
+ },
+ "res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 133
+ },
+ "res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 251
+ },
+ "res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png": {
+ "Size": 152
+ },
+ "res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png": {
+ "Size": 139
+ },
+ "res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png": {
+ "Size": 270
+ },
+ "res/drawable-mdpi-v4/abc_ic_star_black_16dp.png": {
+ "Size": 193
+ },
+ "res/drawable-mdpi-v4/abc_ic_star_black_36dp.png": {
+ "Size": 364
+ },
+ "res/drawable-mdpi-v4/abc_ic_star_black_48dp.png": {
+ "Size": 467
+ },
+ "res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png": {
+ "Size": 146
+ },
+ "res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png": {
+ "Size": 253
+ },
+ "res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png": {
+ "Size": 310
+ },
+ "res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png": {
+ "Size": 167
+ },
+ "res/drawable-mdpi-v4/abc_list_focused_holo.9.png": {
+ "Size": 222
+ },
+ "res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png": {
+ "Size": 211
+ },
+ "res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png": {
+ "Size": 207
+ },
+ "res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png": {
+ "Size": 207
+ },
+ "res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png": {
+ "Size": 217
+ },
+ "res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png": {
+ "Size": 217
+ },
+ "res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png": {
+ "Size": 541
+ },
+ "res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png": {
+ "Size": 776
+ },
+ "res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png": {
+ "Size": 159
+ },
+ "res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png": {
+ "Size": 145
+ },
+ "res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png": {
+ "Size": 197
+ },
+ "res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png": {
+ "Size": 203
+ },
+ "res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png": {
+ "Size": 194
+ },
+ "res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 327
+ },
+ "res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png": {
+ "Size": 395
+ },
+ "res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png": {
+ "Size": 186
+ },
+ "res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png": {
+ "Size": 203
+ },
+ "res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png": {
+ "Size": 203
+ },
+ "res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png": {
+ "Size": 311
+ },
+ "res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png": {
+ "Size": 310
+ },
+ "res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png": {
+ "Size": 187
+ },
+ "res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png": {
+ "Size": 186
+ },
+ "res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png": {
+ "Size": 181
+ },
+ "res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png": {
+ "Size": 178
+ },
+ "res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png": {
+ "Size": 178
+ },
+ "res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png": {
+ "Size": 178
+ },
+ "res/drawable-mdpi-v4/design_ic_visibility.png": {
+ "Size": 309
+ },
+ "res/drawable-mdpi-v4/design_ic_visibility_off.png": {
+ "Size": 351
+ },
+ "res/drawable-mdpi-v4/icon.png": {
+ "Size": 2199
+ },
+ "res/drawable-mdpi-v4/notification_bg_low_normal.9.png": {
+ "Size": 215
+ },
+ "res/drawable-mdpi-v4/notification_bg_low_pressed.9.png": {
+ "Size": 223
+ },
+ "res/drawable-mdpi-v4/notification_bg_normal.9.png": {
+ "Size": 215
+ },
+ "res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png": {
+ "Size": 223
+ },
+ "res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png": {
+ "Size": 98
+ },
+ "res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 127
+ },
+ "res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 253
+ },
+ "res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 318
+ },
+ "res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png": {
+ "Size": 272
+ },
+ "res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png": {
+ "Size": 227
+ },
+ "res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png": {
+ "Size": 404
+ },
+ "res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png": {
+ "Size": 464
+ },
+ "res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png": {
+ "Size": 563
+ },
+ "res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png": {
+ "Size": 1096
+ },
+ "res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png": {
+ "Size": 1243
+ },
+ "res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png": {
+ "Size": 226
+ },
+ "res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png": {
+ "Size": 171
+ },
+ "res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 202
+ },
+ "res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 404
+ },
+ "res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png": {
+ "Size": 226
+ },
+ "res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png": {
+ "Size": 215
+ },
+ "res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png": {
+ "Size": 389
+ },
+ "res/drawable-hdpi-v4/abc_ic_star_black_16dp.png": {
+ "Size": 263
+ },
+ "res/drawable-hdpi-v4/abc_ic_star_black_36dp.png": {
+ "Size": 522
+ },
+ "res/drawable-hdpi-v4/abc_ic_star_black_48dp.png": {
+ "Size": 668
+ },
+ "res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png": {
+ "Size": 197
+ },
+ "res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png": {
+ "Size": 328
+ },
+ "res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png": {
+ "Size": 431
+ },
+ "res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png": {
+ "Size": 167
+ },
+ "res/drawable-hdpi-v4/abc_list_focused_holo.9.png": {
+ "Size": 244
+ },
+ "res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png": {
+ "Size": 212
+ },
+ "res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png": {
+ "Size": 208
+ },
+ "res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png": {
+ "Size": 208
+ },
+ "res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png": {
+ "Size": 228
+ },
+ "res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png": {
+ "Size": 229
+ },
+ "res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png": {
+ "Size": 738
+ },
+ "res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png": {
+ "Size": 1098
+ },
+ "res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png": {
+ "Size": 201
+ },
+ "res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png": {
+ "Size": 196
+ },
+ "res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png": {
+ "Size": 272
+ },
+ "res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png": {
+ "Size": 205
+ },
+ "res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png": {
+ "Size": 196
+ },
+ "res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 345
+ },
+ "res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png": {
+ "Size": 484
+ },
+ "res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png": {
+ "Size": 190
+ },
+ "res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png": {
+ "Size": 278
+ },
+ "res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png": {
+ "Size": 278
+ },
+ "res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png": {
+ "Size": 398
+ },
+ "res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png": {
+ "Size": 396
+ },
+ "res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png": {
+ "Size": 263
+ },
+ "res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png": {
+ "Size": 262
+ },
+ "res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png": {
+ "Size": 186
+ },
+ "res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png": {
+ "Size": 192
+ },
+ "res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png": {
+ "Size": 178
+ },
+ "res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png": {
+ "Size": 178
+ },
+ "res/drawable-hdpi-v4/design_ic_visibility.png": {
+ "Size": 470
+ },
+ "res/drawable-hdpi-v4/design_ic_visibility_off.png": {
+ "Size": 507
+ },
+ "res/drawable-hdpi-v4/icon.png": {
+ "Size": 4791
+ },
+ "res/drawable-hdpi-v4/notification_bg_low_normal.9.png": {
+ "Size": 212
+ },
+ "res/drawable-hdpi-v4/notification_bg_low_pressed.9.png": {
+ "Size": 225
+ },
+ "res/drawable-hdpi-v4/notification_bg_normal.9.png": {
+ "Size": 212
+ },
+ "res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png": {
+ "Size": 225
+ },
+ "res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png": {
+ "Size": 107
+ },
+ "res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 199
+ },
+ "res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 400
+ },
+ "res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 345
+ },
+ "res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png": {
+ "Size": 280
+ },
+ "res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png": {
+ "Size": 281
+ },
+ "res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png": {
+ "Size": 432
+ },
+ "res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png": {
+ "Size": 651
+ },
+ "res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png": {
+ "Size": 785
+ },
+ "res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png": {
+ "Size": 1526
+ },
+ "res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png": {
+ "Size": 1731
+ },
+ "res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png": {
+ "Size": 229
+ },
+ "res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png": {
+ "Size": 228
+ },
+ "res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 178
+ },
+ "res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 492
+ },
+ "res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png": {
+ "Size": 243
+ },
+ "res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png": {
+ "Size": 183
+ },
+ "res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png": {
+ "Size": 480
+ },
+ "res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png": {
+ "Size": 333
+ },
+ "res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png": {
+ "Size": 652
+ },
+ "res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png": {
+ "Size": 887
+ },
+ "res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png": {
+ "Size": 235
+ },
+ "res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png": {
+ "Size": 421
+ },
+ "res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png": {
+ "Size": 548
+ },
+ "res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png": {
+ "Size": 167
+ },
+ "res/drawable-xhdpi-v4/abc_list_focused_holo.9.png": {
+ "Size": 244
+ },
+ "res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png": {
+ "Size": 214
+ },
+ "res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png": {
+ "Size": 209
+ },
+ "res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png": {
+ "Size": 209
+ },
+ "res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png": {
+ "Size": 236
+ },
+ "res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png": {
+ "Size": 235
+ },
+ "res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png": {
+ "Size": 966
+ },
+ "res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png": {
+ "Size": 1544
+ },
+ "res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png": {
+ "Size": 267
+ },
+ "res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png": {
+ "Size": 267
+ },
+ "res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png": {
+ "Size": 391
+ },
+ "res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png": {
+ "Size": 208
+ },
+ "res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png": {
+ "Size": 198
+ },
+ "res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 448
+ },
+ "res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png": {
+ "Size": 618
+ },
+ "res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png": {
+ "Size": 194
+ },
+ "res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png": {
+ "Size": 336
+ },
+ "res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png": {
+ "Size": 335
+ },
+ "res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png": {
+ "Size": 583
+ },
+ "res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png": {
+ "Size": 585
+ },
+ "res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png": {
+ "Size": 319
+ },
+ "res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png": {
+ "Size": 318
+ },
+ "res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png": {
+ "Size": 189
+ },
+ "res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png": {
+ "Size": 187
+ },
+ "res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png": {
+ "Size": 184
+ },
+ "res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png": {
+ "Size": 182
+ },
+ "res/drawable-xhdpi-v4/design_ic_visibility.png": {
+ "Size": 593
+ },
+ "res/drawable-xhdpi-v4/design_ic_visibility_off.png": {
+ "Size": 629
+ },
+ "res/drawable-xhdpi-v4/icon.png": {
+ "Size": 7462
+ },
+ "res/drawable-xhdpi-v4/notification_bg_low_normal.9.png": {
+ "Size": 221
+ },
+ "res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png": {
+ "Size": 252
+ },
+ "res/drawable-xhdpi-v4/notification_bg_normal.9.png": {
+ "Size": 221
+ },
+ "res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png": {
+ "Size": 247
+ },
+ "res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png": {
+ "Size": 138
+ },
+ "res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 178
+ },
+ "res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 494
+ },
+ "res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 417
+ },
+ "res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png": {
+ "Size": 286
+ },
+ "res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png": {
+ "Size": 307
+ },
+ "res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png": {
+ "Size": 593
+ },
+ "res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png": {
+ "Size": 984
+ },
+ "res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png": {
+ "Size": 1208
+ },
+ "res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png": {
+ "Size": 2463
+ },
+ "res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png": {
+ "Size": 2834
+ },
+ "res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png": {
+ "Size": 237
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png": {
+ "Size": 224
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 263
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 710
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png": {
+ "Size": 348
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png": {
+ "Size": 262
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png": {
+ "Size": 700
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png": {
+ "Size": 459
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png": {
+ "Size": 983
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png": {
+ "Size": 1291
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png": {
+ "Size": 309
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png": {
+ "Size": 577
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png": {
+ "Size": 789
+ },
+ "res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png": {
+ "Size": 171
+ },
+ "res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png": {
+ "Size": 245
+ },
+ "res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png": {
+ "Size": 221
+ },
+ "res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png": {
+ "Size": 212
+ },
+ "res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png": {
+ "Size": 212
+ },
+ "res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png": {
+ "Size": 260
+ },
+ "res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png": {
+ "Size": 258
+ },
+ "res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png": {
+ "Size": 1779
+ },
+ "res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png": {
+ "Size": 2305
+ },
+ "res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png": {
+ "Size": 322
+ },
+ "res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png": {
+ "Size": 403
+ },
+ "res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png": {
+ "Size": 595
+ },
+ "res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png": {
+ "Size": 210
+ },
+ "res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png": {
+ "Size": 207
+ },
+ "res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 524
+ },
+ "res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png": {
+ "Size": 851
+ },
+ "res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png": {
+ "Size": 204
+ },
+ "res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png": {
+ "Size": 420
+ },
+ "res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png": {
+ "Size": 420
+ },
+ "res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png": {
+ "Size": 752
+ },
+ "res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png": {
+ "Size": 753
+ },
+ "res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png": {
+ "Size": 422
+ },
+ "res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png": {
+ "Size": 422
+ },
+ "res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png": {
+ "Size": 199
+ },
+ "res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png": {
+ "Size": 200
+ },
+ "res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png": {
+ "Size": 187
+ },
+ "res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png": {
+ "Size": 186
+ },
+ "res/drawable-xxhdpi-v4/design_ic_visibility.png": {
+ "Size": 868
+ },
+ "res/drawable-xxhdpi-v4/design_ic_visibility_off.png": {
+ "Size": 884
+ },
+ "res/drawable-xxhdpi-v4/icon.png": {
+ "Size": 13092
+ },
+ "res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 260
+ },
+ "res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 705
+ },
+ "res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 525
+ },
+ "res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png": {
+ "Size": 275
+ },
+ "res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png": {
+ "Size": 476
+ },
+ "res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png": {
+ "Size": 785
+ },
+ "res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png": {
+ "Size": 946
+ },
+ "res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png": {
+ "Size": 2505
+ },
+ "res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png": {
+ "Size": 2816
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 327
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 910
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png": {
+ "Size": 461
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png": {
+ "Size": 305
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png": {
+ "Size": 899
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png": {
+ "Size": 599
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png": {
+ "Size": 1269
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png": {
+ "Size": 1680
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png": {
+ "Size": 376
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png": {
+ "Size": 760
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png": {
+ "Size": 991
+ },
+ "res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png": {
+ "Size": 415
+ },
+ "res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png": {
+ "Size": 631
+ },
+ "res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 430
+ },
+ "res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png": {
+ "Size": 813
+ },
+ "res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png": {
+ "Size": 202
+ },
+ "res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png": {
+ "Size": 513
+ },
+ "res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png": {
+ "Size": 513
+ },
+ "res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png": {
+ "Size": 513
+ },
+ "res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png": {
+ "Size": 513
+ },
+ "res/drawable-xxxhdpi-v4/design_ic_visibility.png": {
+ "Size": 1155
+ },
+ "res/drawable-xxxhdpi-v4/design_ic_visibility_off.png": {
+ "Size": 1201
+ },
+ "res/drawable-xxxhdpi-v4/icon.png": {
+ "Size": 20118
+ },
+ "res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 325
+ },
+ "res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 905
+ },
+ "res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 437
+ },
+ "res/drawable-anydpi-v21/design_ic_visibility.xml": {
+ "Size": 540
+ },
+ "res/drawable-anydpi-v21/design_ic_visibility_off.xml": {
+ "Size": 1144
+ },
+ "res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml": {
+ "Size": 316
+ },
+ "res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml": {
+ "Size": 328
+ },
+ "res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml": {
+ "Size": 316
+ },
+ "res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml": {
+ "Size": 328
+ },
+ "res/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml": {
+ "Size": 320
+ },
+ "res/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml": {
+ "Size": 320
+ },
+ "res/interpolator/fast_out_slow_in.xml": {
+ "Size": 400
+ },
+ "res/interpolator/mtrl_fast_out_linear_in.xml": {
+ "Size": 136
+ },
+ "res/interpolator/mtrl_fast_out_slow_in.xml": {
+ "Size": 144
+ },
+ "res/interpolator/mtrl_linear.xml": {
+ "Size": 132
+ },
+ "res/interpolator/mtrl_linear_out_slow_in.xml": {
+ "Size": 136
+ },
+ "res/interpolator-v21/mtrl_fast_out_linear_in.xml": {
+ "Size": 400
+ },
+ "res/interpolator-v21/mtrl_fast_out_slow_in.xml": {
+ "Size": 400
+ },
+ "res/interpolator-v21/mtrl_linear_out_slow_in.xml": {
+ "Size": 400
+ },
+ "res/layout/abc_action_bar_title_item.xml": {
+ "Size": 872
+ },
+ "res/layout/abc_action_bar_up_container.xml": {
+ "Size": 440
+ },
+ "res/layout/abc_action_menu_item_layout.xml": {
+ "Size": 768
+ },
+ "res/layout/abc_action_menu_layout.xml": {
+ "Size": 576
+ },
+ "res/layout/abc_action_mode_bar.xml": {
+ "Size": 464
+ },
+ "res/layout/abc_action_mode_close_item_material.xml": {
+ "Size": 840
+ },
+ "res/layout/abc_activity_chooser_view.xml": {
+ "Size": 1684
+ },
+ "res/layout/abc_activity_chooser_view_list_item.xml": {
+ "Size": 1304
+ },
+ "res/layout/abc_alert_dialog_button_bar_material.xml": {
+ "Size": 1536
+ },
+ "res/layout-v22/abc_alert_dialog_button_bar_material.xml": {
+ "Size": 1584
+ },
+ "res/layout/abc_alert_dialog_material.xml": {
+ "Size": 2476
+ },
+ "res/layout/abc_alert_dialog_title_material.xml": {
+ "Size": 1560
+ },
+ "res/layout/abc_cascading_menu_item_layout.xml": {
+ "Size": 1868
+ },
+ "res/layout/abc_dialog_title_material.xml": {
+ "Size": 1116
+ },
+ "res/layout/abc_expanded_menu_layout.xml": {
+ "Size": 388
+ },
+ "res/layout/abc_list_menu_item_checkbox.xml": {
+ "Size": 528
+ },
+ "res/layout/abc_list_menu_item_icon.xml": {
+ "Size": 684
+ },
+ "res/layout/abc_list_menu_item_layout.xml": {
+ "Size": 1396
+ },
+ "res/layout/abc_list_menu_item_radio.xml": {
+ "Size": 532
+ },
+ "res/layout/abc_popup_menu_header_item_layout.xml": {
+ "Size": 848
+ },
+ "res/layout/abc_popup_menu_item_layout.xml": {
+ "Size": 2072
+ },
+ "res/layout/abc_screen_content_include.xml": {
+ "Size": 548
+ },
+ "res/layout/abc_screen_simple.xml": {
+ "Size": 832
+ },
+ "res/layout/abc_screen_simple_overlay_action_mode.xml": {
+ "Size": 792
+ },
+ "res/layout/abc_screen_toolbar.xml": {
+ "Size": 1452
+ },
+ "res/layout-v21/abc_screen_toolbar.xml": {
+ "Size": 1504
+ },
+ "res/layout/abc_search_dropdown_item_icons_2line.xml": {
+ "Size": 1916
+ },
+ "res/layout/abc_search_view.xml": {
+ "Size": 3472
+ },
+ "res/layout/abc_select_dialog_material.xml": {
+ "Size": 1020
+ },
+ "res/layout/abc_tooltip.xml": {
+ "Size": 1056
+ },
+ "res/layout/bottomtablayout.xml": {
+ "Size": 832
+ },
+ "res/layout/browser_actions_context_menu_page.xml": {
+ "Size": 1660
+ },
+ "res/layout/browser_actions_context_menu_row.xml": {
+ "Size": 1164
+ },
+ "res/layout/custom_dialog.xml": {
+ "Size": 612
+ },
+ "res/layout/design_bottom_navigation_item.xml": {
+ "Size": 1492
+ },
+ "res/layout/design_bottom_sheet_dialog.xml": {
+ "Size": 1184
+ },
+ "res/layout/design_layout_snackbar.xml": {
+ "Size": 528
+ },
+ "res/layout/design_layout_snackbar_include.xml": {
+ "Size": 1444
+ },
+ "res/layout/design_layout_tab_icon.xml": {
+ "Size": 408
+ },
+ "res/layout/design_layout_tab_text.xml": {
+ "Size": 436
+ },
+ "res/layout/design_menu_item_action_area.xml": {
+ "Size": 320
+ },
+ "res/layout/design_navigation_item.xml": {
+ "Size": 536
+ },
+ "res/layout/design_navigation_item_header.xml": {
+ "Size": 440
+ },
+ "res/layout/design_navigation_item_separator.xml": {
+ "Size": 472
+ },
+ "res/layout/design_navigation_item_subheader.xml": {
+ "Size": 564
+ },
+ "res/layout/design_navigation_menu.xml": {
+ "Size": 528
+ },
+ "res/layout/design_navigation_menu_item.xml": {
+ "Size": 856
+ },
+ "res/layout/design_text_input_password_icon.xml": {
+ "Size": 564
+ },
+ "res/layout/fallbacktabbardonotuse.xml": {
+ "Size": 692
+ },
+ "res/layout/fallbacktoolbardonotuse.xml": {
+ "Size": 452
+ },
+ "res/layout-v21/fallbacktoolbardonotuse.xml": {
+ "Size": 496
+ },
+ "res/layout/flyoutcontent.xml": {
+ "Size": 944
+ },
+ "res/layout/main.xml": {
+ "Size": 544
+ },
+ "res/layout/mtrl_layout_snackbar.xml": {
+ "Size": 528
+ },
+ "res/layout/mtrl_layout_snackbar_include.xml": {
+ "Size": 1404
+ },
+ "res/layout/notification_action.xml": {
+ "Size": 1156
+ },
+ "res/layout/notification_action_tombstone.xml": {
+ "Size": 1332
+ },
+ "res/layout/notification_media_action.xml": {
+ "Size": 564
+ },
+ "res/layout/notification_media_cancel_action.xml": {
+ "Size": 744
+ },
+ "res/layout/notification_template_big_media.xml": {
+ "Size": 1696
+ },
+ "res/layout/notification_template_big_media_custom.xml": {
+ "Size": 3044
+ },
+ "res/layout/notification_template_big_media_narrow.xml": {
+ "Size": 1824
+ },
+ "res/layout/notification_template_big_media_narrow_custom.xml": {
+ "Size": 3216
+ },
+ "res/layout-v16/notification_template_custom_big.xml": {
+ "Size": 3208
+ },
+ "res/layout/notification_template_icon_group.xml": {
+ "Size": 392
+ },
+ "res/layout/notification_template_lines_media.xml": {
+ "Size": 2872
+ },
+ "res/layout/notification_template_media.xml": {
+ "Size": 1292
+ },
+ "res/layout/notification_template_media_custom.xml": {
+ "Size": 2756
+ },
+ "res/layout/notification_template_part_chronometer.xml": {
+ "Size": 440
+ },
+ "res/layout/notification_template_part_time.xml": {
+ "Size": 440
+ },
+ "res/layout/rootlayout.xml": {
+ "Size": 1352
+ },
+ "res/layout/select_dialog_item_material.xml": {
+ "Size": 640
+ },
+ "res/layout/select_dialog_multichoice_material.xml": {
+ "Size": 864
+ },
+ "res/layout/select_dialog_singlechoice_material.xml": {
+ "Size": 864
+ },
+ "res/layout/shellcontent.xml": {
+ "Size": 888
+ },
+ "res/layout/support_simple_spinner_dropdown_item.xml": {
+ "Size": 464
+ },
+ "res/layout/tabbar.xml": {
+ "Size": 692
+ },
+ "res/layout/toolbar.xml": {
+ "Size": 452
+ },
+ "res/layout-v21/toolbar.xml": {
+ "Size": 496
+ },
+ "res/layout-sw600dp-v13/design_layout_snackbar.xml": {
+ "Size": 528
+ },
+ "res/layout-sw600dp-v13/mtrl_layout_snackbar.xml": {
+ "Size": 528
+ },
+ "res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml": {
+ "Size": 1208
+ },
+ "res/layout-watch-v20/abc_alert_dialog_title_material.xml": {
+ "Size": 1352
+ },
+ "res/layout-v21/notification_action.xml": {
+ "Size": 1052
+ },
+ "res/layout-v21/notification_action_tombstone.xml": {
+ "Size": 1228
+ },
+ "res/layout-v21/notification_template_custom_big.xml": {
+ "Size": 2456
+ },
+ "res/layout-v21/notification_template_icon_group.xml": {
+ "Size": 988
+ },
+ "res/layout-v26/abc_screen_toolbar.xml": {
+ "Size": 1560
+ },
+ "resources.arsc": {
+ "Size": 341040
+ },
+ "classes.dex": {
+ "Size": 3455212
+ },
+ "assemblies/Microsoft.Win32.SystemEvents.dll": {
+ "Size": 8713
+ },
+ "assemblies/System.CodeDom.dll": {
+ "Size": 77266
+ },
+ "assemblies/System.Configuration.ConfigurationManager.dll": {
+ "Size": 177614
+ },
+ "assemblies/System.Diagnostics.EventLog.dll": {
+ "Size": 18766
+ },
+ "assemblies/System.Diagnostics.PerformanceCounter.dll": {
+ "Size": 17104
+ },
+ "assemblies/System.Drawing.Common.dll": {
+ "Size": 186681
+ },
+ "assemblies/System.IO.Ports.dll": {
+ "Size": 32495
+ },
+ "assemblies/System.Security.Cryptography.ProtectedData.dll": {
+ "Size": 4385
+ },
+ "assemblies/System.Security.Permissions.dll": {
+ "Size": 40093
+ },
+ "assemblies/System.Threading.AccessControl.dll": {
+ "Size": 8293
+ },
+ "assemblies/System.Windows.Extensions.dll": {
+ "Size": 8094
+ },
+ "assemblies/Xamarin.AndroidX.Activity.dll": {
+ "Size": 6734
+ },
+ "assemblies/Xamarin.AndroidX.AppCompat.dll": {
+ "Size": 125499
+ },
+ "assemblies/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": {
+ "Size": 7226
+ },
+ "assemblies/Xamarin.AndroidX.CardView.dll": {
+ "Size": 7555
+ },
+ "assemblies/Xamarin.AndroidX.Collection.dll": {
+ "Size": 2861
+ },
+ "assemblies/Xamarin.AndroidX.CoordinatorLayout.dll": {
+ "Size": 18470
+ },
+ "assemblies/Xamarin.AndroidX.Core.dll": {
+ "Size": 111320
+ },
+ "assemblies/Xamarin.AndroidX.CursorAdapter.dll": {
+ "Size": 2773
+ },
+ "assemblies/Xamarin.AndroidX.CustomView.dll": {
+ "Size": 2940
+ },
+ "assemblies/Xamarin.AndroidX.DrawerLayout.dll": {
+ "Size": 15590
+ },
+ "assemblies/Xamarin.AndroidX.Fragment.dll": {
+ "Size": 43482
+ },
+ "assemblies/Xamarin.AndroidX.Legacy.Support.Core.UI.dll": {
+ "Size": 6949
+ },
+ "assemblies/Xamarin.AndroidX.Lifecycle.Common.dll": {
+ "Size": 7394
+ },
+ "assemblies/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": {
+ "Size": 7428
+ },
+ "assemblies/Xamarin.AndroidX.Lifecycle.ViewModel.dll": {
+ "Size": 3907
+ },
+ "assemblies/Xamarin.AndroidX.Loader.dll": {
+ "Size": 13849
+ },
+ "assemblies/Xamarin.AndroidX.RecyclerView.dll": {
+ "Size": 94062
+ },
+ "assemblies/Xamarin.AndroidX.SavedState.dll": {
+ "Size": 5635
+ },
+ "assemblies/Xamarin.AndroidX.SwipeRefreshLayout.dll": {
+ "Size": 11375
+ },
+ "assemblies/Xamarin.AndroidX.Transition.dll": {
+ "Size": 3371
+ },
+ "assemblies/Xamarin.AndroidX.VersionedParcelable.dll": {
+ "Size": 2798
+ },
+ "assemblies/Xamarin.AndroidX.ViewPager.dll": {
+ "Size": 19675
+ },
+ "assemblies/Xamarin.Google.Android.Material.dll": {
+ "Size": 50094
+ },
+ "assemblies/FormsViewGroup.dll": {
+ "Size": 7039
+ },
+ "assemblies/Xamarin.Forms.Core.dll": {
+ "Size": 524708
+ },
+ "assemblies/Xamarin.Forms.Platform.Android.dll": {
+ "Size": 384810
+ },
+ "assemblies/Xamarin.Forms.Platform.dll": {
+ "Size": 56872
+ },
+ "assemblies/Xamarin.Forms.Xaml.dll": {
+ "Size": 55730
+ },
+ "assemblies/UnnamedProject.dll": {
+ "Size": 117060
+ },
+ "assemblies/Microsoft.Win32.Primitives.dll": {
+ "Size": 4149
+ },
+ "assemblies/System.Collections.Concurrent.dll": {
+ "Size": 12110
+ },
+ "assemblies/System.Collections.NonGeneric.dll": {
+ "Size": 10957
+ },
+ "assemblies/System.Collections.Specialized.dll": {
+ "Size": 12563
+ },
+ "assemblies/System.Collections.dll": {
+ "Size": 24333
+ },
+ "assemblies/System.ComponentModel.EventBasedAsync.dll": {
+ "Size": 2519
+ },
+ "assemblies/System.ComponentModel.Primitives.dll": {
+ "Size": 8549
+ },
+ "assemblies/System.ComponentModel.TypeConverter.dll": {
+ "Size": 50368
+ },
+ "assemblies/System.ComponentModel.dll": {
+ "Size": 2558
+ },
+ "assemblies/System.Console.dll": {
+ "Size": 6692
+ },
+ "assemblies/System.Data.Common.dll": {
+ "Size": 2453
+ },
+ "assemblies/System.Diagnostics.Process.dll": {
+ "Size": 36895
+ },
+ "assemblies/System.Diagnostics.TraceSource.dll": {
+ "Size": 12895
+ },
+ "assemblies/System.Drawing.Primitives.dll": {
+ "Size": 23409
+ },
+ "assemblies/System.Formats.Asn1.dll": {
+ "Size": 26884
+ },
+ "assemblies/System.IO.Compression.Brotli.dll": {
+ "Size": 12318
+ },
+ "assemblies/System.IO.Compression.dll": {
+ "Size": 19820
+ },
+ "assemblies/System.IO.FileSystem.dll": {
+ "Size": 29068
+ },
+ "assemblies/System.IO.IsolatedStorage.dll": {
+ "Size": 11719
+ },
+ "assemblies/System.Linq.Expressions.dll": {
+ "Size": 116570
+ },
+ "assemblies/System.Linq.dll": {
+ "Size": 31906
+ },
+ "assemblies/System.Net.Http.dll": {
+ "Size": 216401
+ },
+ "assemblies/System.Net.NameResolution.dll": {
+ "Size": 9310
+ },
+ "assemblies/System.Net.NetworkInformation.dll": {
+ "Size": 18344
+ },
+ "assemblies/System.Net.Primitives.dll": {
+ "Size": 44259
+ },
+ "assemblies/System.Net.Quic.dll": {
+ "Size": 37743
+ },
+ "assemblies/System.Net.Requests.dll": {
+ "Size": 51088
+ },
+ "assemblies/System.Net.Security.dll": {
+ "Size": 68051
+ },
+ "assemblies/System.Net.ServicePoint.dll": {
+ "Size": 3258
+ },
+ "assemblies/System.Net.Sockets.dll": {
+ "Size": 64050
+ },
+ "assemblies/System.Net.WebClient.dll": {
+ "Size": 8007
+ },
+ "assemblies/System.Net.WebHeaderCollection.dll": {
+ "Size": 6350
+ },
+ "assemblies/System.ObjectModel.dll": {
+ "Size": 12892
+ },
+ "assemblies/System.Private.DataContractSerialization.dll": {
+ "Size": 217485
+ },
+ "assemblies/System.Private.Uri.dll": {
+ "Size": 42419
+ },
+ "assemblies/System.Private.Xml.Linq.dll": {
+ "Size": 17347
+ },
+ "assemblies/System.Private.Xml.dll": {
+ "Size": 585310
+ },
+ "assemblies/System.Runtime.CompilerServices.Unsafe.dll": {
+ "Size": 1724
+ },
+ "assemblies/System.Runtime.InteropServices.RuntimeInformation.dll": {
+ "Size": 4279
+ },
+ "assemblies/System.Runtime.Numerics.dll": {
+ "Size": 21745
+ },
+ "assemblies/System.Runtime.Serialization.Formatters.dll": {
+ "Size": 4149
+ },
+ "assemblies/System.Runtime.Serialization.Primitives.dll": {
+ "Size": 4490
+ },
+ "assemblies/System.Security.AccessControl.dll": {
+ "Size": 4613
+ },
+ "assemblies/System.Security.Claims.dll": {
+ "Size": 8219
+ },
+ "assemblies/System.Security.Cryptography.Algorithms.dll": {
+ "Size": 40774
+ },
+ "assemblies/System.Security.Cryptography.Csp.dll": {
+ "Size": 2628
+ },
+ "assemblies/System.Security.Cryptography.Encoding.dll": {
+ "Size": 12655
+ },
+ "assemblies/System.Security.Cryptography.OpenSsl.dll": {
+ "Size": 15244
+ },
+ "assemblies/System.Security.Cryptography.Primitives.dll": {
+ "Size": 9732
+ },
+ "assemblies/System.Security.Cryptography.X509Certificates.dll": {
+ "Size": 93560
+ },
+ "assemblies/System.Security.Principal.Windows.dll": {
+ "Size": 3207
+ },
+ "assemblies/System.Text.RegularExpressions.dll": {
+ "Size": 81305
+ },
+ "assemblies/System.Threading.Channels.dll": {
+ "Size": 14653
+ },
+ "assemblies/System.Threading.dll": {
+ "Size": 6632
+ },
+ "assemblies/System.Private.CoreLib.dll": {
+ "Size": 728608
+ },
+ "assemblies/Java.Interop.dll": {
+ "Size": 72174
+ },
+ "assemblies/Mono.Android.dll": {
+ "Size": 497617
+ },
+ "lib/arm64-v8a/libxamarin-app.so": {
+ "Size": 128128
+ },
+ "lib/arm64-v8a/libSystem.IO.Compression.Native.so": {
+ "Size": 776216
+ },
+ "lib/arm64-v8a/libSystem.Native.so": {
+ "Size": 75872
+ },
+ "lib/arm64-v8a/libSystem.Security.Cryptography.Native.OpenSsl.so": {
+ "Size": 100464
+ },
+ "lib/arm64-v8a/libmonosgen-2.0.so": {
+ "Size": 18570656
+ },
+ "lib/arm64-v8a/libmonodroid.so": {
+ "Size": 254616
+ },
+ "lib/arm64-v8a/libxa-internal-api.so": {
+ "Size": 66544
+ },
+ "lib/arm64-v8a/libxamarin-debug-app-helper.so": {
+ "Size": 191408
+ },
+ "META-INF/androidx.versionedparcelable_versionedparcelable.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.lifecycle_lifecycle-runtime.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.core_core.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.customview_customview.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.viewpager_viewpager.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.vectordrawable_vectordrawable.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.interpolator_interpolator.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.vectordrawable_vectordrawable-animated.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.savedstate_savedstate.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.lifecycle_lifecycle-viewmodel.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.arch.core_core-runtime.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.lifecycle_lifecycle-livedata-core.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.loader_loader.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.activity_activity.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.fragment_fragment.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.transition_transition.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.swiperefreshlayout_swiperefreshlayout.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.slidingpanelayout_slidingpanelayout.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.recyclerview_recyclerview.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.print_print.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.localbroadcastmanager_localbroadcastmanager.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.documentfile_documentfile.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.legacy_legacy-support-core-utils.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.drawerlayout_drawerlayout.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.cursoradapter_cursoradapter.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.coordinatorlayout_coordinatorlayout.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.asynclayoutinflater_asynclayoutinflater.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.legacy_legacy-support-core-ui.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.cardview_cardview.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.appcompat_appcompat-resources.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.appcompat_appcompat.version": {
+ "Size": 6
+ },
+ "META-INF/android.support.design_material.version": {
+ "Size": 12
+ },
+ "META-INF/com.google.android.material_material.version": {
+ "Size": 10
+ },
+ "META-INF/androidx.media_media.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.lifecycle_lifecycle-livedata.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.legacy_legacy-support-v4.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.browser_browser.version": {
+ "Size": 6
+ },
+ "META-INF/proguard/androidx-annotations.pro": {
+ "Size": 339
+ },
+ "META-INF/ANDROIDD.SF": {
+ "Size": 83189
+ },
+ "META-INF/ANDROIDD.RSA": {
+ "Size": 1213
+ },
+ "META-INF/MANIFEST.MF": {
+ "Size": 83062
+ }
+ },
+ "PackageSize": 14995163
+}
\ No newline at end of file
diff --git a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Resources/Base/BuildReleaseArm64XFormsLegacy.apkdesc b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Resources/Base/BuildReleaseArm64XFormsLegacy.apkdesc
new file mode 100644
index 00000000000..25161ee9aa2
--- /dev/null
+++ b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Resources/Base/BuildReleaseArm64XFormsLegacy.apkdesc
@@ -0,0 +1,1950 @@
+{
+ "Comment": null,
+ "Entries": {
+ "AndroidManifest.xml": {
+ "Size": 3120
+ },
+ "res/anim/abc_fade_in.xml": {
+ "Size": 388
+ },
+ "res/anim/abc_fade_out.xml": {
+ "Size": 388
+ },
+ "res/anim/abc_grow_fade_in_from_bottom.xml": {
+ "Size": 852
+ },
+ "res/anim/abc_popup_enter.xml": {
+ "Size": 508
+ },
+ "res/anim/abc_popup_exit.xml": {
+ "Size": 508
+ },
+ "res/anim/abc_shrink_fade_out_from_bottom.xml": {
+ "Size": 852
+ },
+ "res/anim/abc_slide_in_bottom.xml": {
+ "Size": 396
+ },
+ "res/anim/abc_slide_in_top.xml": {
+ "Size": 396
+ },
+ "res/anim/abc_slide_out_bottom.xml": {
+ "Size": 396
+ },
+ "res/anim/abc_slide_out_top.xml": {
+ "Size": 396
+ },
+ "res/anim/abc_tooltip_enter.xml": {
+ "Size": 388
+ },
+ "res/anim/abc_tooltip_exit.xml": {
+ "Size": 388
+ },
+ "res/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml": {
+ "Size": 2124
+ },
+ "res/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml": {
+ "Size": 2780
+ },
+ "res/anim/btn_checkbox_to_checked_icon_null_animation.xml": {
+ "Size": 1196
+ },
+ "res/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml": {
+ "Size": 2360
+ },
+ "res/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml": {
+ "Size": 2520
+ },
+ "res/anim/btn_checkbox_to_unchecked_icon_null_animation.xml": {
+ "Size": 1196
+ },
+ "res/anim/btn_radio_to_off_mtrl_dot_group_animation.xml": {
+ "Size": 1656
+ },
+ "res/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml": {
+ "Size": 1656
+ },
+ "res/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml": {
+ "Size": 1028
+ },
+ "res/anim/btn_radio_to_on_mtrl_dot_group_animation.xml": {
+ "Size": 1656
+ },
+ "res/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml": {
+ "Size": 1656
+ },
+ "res/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml": {
+ "Size": 1028
+ },
+ "res/anim/design_bottom_sheet_slide_in.xml": {
+ "Size": 616
+ },
+ "res/anim/design_bottom_sheet_slide_out.xml": {
+ "Size": 616
+ },
+ "res/anim/design_snackbar_in.xml": {
+ "Size": 312
+ },
+ "res/anim/design_snackbar_out.xml": {
+ "Size": 312
+ },
+ "res/anim/enterfromleft.xml": {
+ "Size": 640
+ },
+ "res/anim/enterfromright.xml": {
+ "Size": 468
+ },
+ "res/anim/exittoleft.xml": {
+ "Size": 640
+ },
+ "res/anim/exittoright.xml": {
+ "Size": 468
+ },
+ "res/anim-v21/design_bottom_sheet_slide_in.xml": {
+ "Size": 616
+ },
+ "res/anim-v21/design_bottom_sheet_slide_out.xml": {
+ "Size": 616
+ },
+ "res/animator/design_fab_hide_motion_spec.xml": {
+ "Size": 796
+ },
+ "res/animator/design_fab_show_motion_spec.xml": {
+ "Size": 796
+ },
+ "res/animator/mtrl_btn_state_list_anim.xml": {
+ "Size": 2664
+ },
+ "res/animator/mtrl_btn_unelevated_state_list_anim.xml": {
+ "Size": 120
+ },
+ "res/animator/mtrl_chip_state_list_anim.xml": {
+ "Size": 1072
+ },
+ "res/animator/mtrl_fab_hide_motion_spec.xml": {
+ "Size": 796
+ },
+ "res/animator/mtrl_fab_show_motion_spec.xml": {
+ "Size": 796
+ },
+ "res/animator/mtrl_fab_transformation_sheet_collapse_spec.xml": {
+ "Size": 1888
+ },
+ "res/animator/mtrl_fab_transformation_sheet_expand_spec.xml": {
+ "Size": 1888
+ },
+ "res/animator-v21/design_appbar_state_list_animator.xml": {
+ "Size": 1216
+ },
+ "res/color/abc_background_cache_hint_selector_material_dark.xml": {
+ "Size": 468
+ },
+ "res/color/abc_background_cache_hint_selector_material_light.xml": {
+ "Size": 468
+ },
+ "res/color/abc_btn_colored_borderless_text_material.xml": {
+ "Size": 604
+ },
+ "res/color/abc_btn_colored_text_material.xml": {
+ "Size": 604
+ },
+ "res/color/abc_hint_foreground_material_dark.xml": {
+ "Size": 564
+ },
+ "res/color/abc_hint_foreground_material_light.xml": {
+ "Size": 564
+ },
+ "res/color/abc_primary_text_disable_only_material_dark.xml": {
+ "Size": 464
+ },
+ "res/color/abc_primary_text_disable_only_material_light.xml": {
+ "Size": 464
+ },
+ "res/color/abc_primary_text_material_dark.xml": {
+ "Size": 464
+ },
+ "res/color/abc_primary_text_material_light.xml": {
+ "Size": 464
+ },
+ "res/color/abc_search_url_text.xml": {
+ "Size": 588
+ },
+ "res/color/abc_secondary_text_material_dark.xml": {
+ "Size": 464
+ },
+ "res/color/abc_secondary_text_material_light.xml": {
+ "Size": 464
+ },
+ "res/color/abc_tint_btn_checkable.xml": {
+ "Size": 728
+ },
+ "res/color/abc_tint_default.xml": {
+ "Size": 1224
+ },
+ "res/color/abc_tint_edittext.xml": {
+ "Size": 772
+ },
+ "res/color/abc_tint_seek_thumb.xml": {
+ "Size": 604
+ },
+ "res/color/abc_tint_spinner.xml": {
+ "Size": 772
+ },
+ "res/color/abc_tint_switch_track.xml": {
+ "Size": 768
+ },
+ "res/color/design_error.xml": {
+ "Size": 464
+ },
+ "res/color/design_tint_password_toggle.xml": {
+ "Size": 480
+ },
+ "res/color/mtrl_bottom_nav_colored_item_tint.xml": {
+ "Size": 684
+ },
+ "res/color/mtrl_bottom_nav_item_tint.xml": {
+ "Size": 684
+ },
+ "res/color/mtrl_btn_bg_color_selector.xml": {
+ "Size": 464
+ },
+ "res/color/mtrl_btn_ripple_color.xml": {
+ "Size": 948
+ },
+ "res/color/mtrl_btn_stroke_color_selector.xml": {
+ "Size": 376
+ },
+ "res/color/mtrl_btn_text_btn_ripple_color.xml": {
+ "Size": 948
+ },
+ "res/color/mtrl_btn_text_color_selector.xml": {
+ "Size": 464
+ },
+ "res/color/mtrl_chip_background_color.xml": {
+ "Size": 608
+ },
+ "res/color/mtrl_chip_close_icon_tint.xml": {
+ "Size": 1092
+ },
+ "res/color/mtrl_chip_ripple_color.xml": {
+ "Size": 948
+ },
+ "res/color/mtrl_chip_text_color.xml": {
+ "Size": 464
+ },
+ "res/color/mtrl_fab_ripple_color.xml": {
+ "Size": 948
+ },
+ "res/color/mtrl_tabs_colored_ripple_color.xml": {
+ "Size": 948
+ },
+ "res/color/mtrl_tabs_icon_color_selector.xml": {
+ "Size": 464
+ },
+ "res/color/mtrl_tabs_icon_color_selector_colored.xml": {
+ "Size": 464
+ },
+ "res/color/mtrl_tabs_legacy_text_color_selector.xml": {
+ "Size": 464
+ },
+ "res/color/mtrl_tabs_ripple_color.xml": {
+ "Size": 1672
+ },
+ "res/color/mtrl_text_btn_text_color_selector.xml": {
+ "Size": 464
+ },
+ "res/color/switch_thumb_material_dark.xml": {
+ "Size": 464
+ },
+ "res/color/switch_thumb_material_light.xml": {
+ "Size": 464
+ },
+ "res/color-v21/abc_btn_colored_borderless_text_material.xml": {
+ "Size": 464
+ },
+ "res/color-v23/abc_btn_colored_borderless_text_material.xml": {
+ "Size": 500
+ },
+ "res/color-v23/abc_btn_colored_text_material.xml": {
+ "Size": 500
+ },
+ "res/color-v23/abc_color_highlight_material.xml": {
+ "Size": 544
+ },
+ "res/color-v23/abc_tint_btn_checkable.xml": {
+ "Size": 624
+ },
+ "res/color-v23/abc_tint_default.xml": {
+ "Size": 1120
+ },
+ "res/color-v23/abc_tint_edittext.xml": {
+ "Size": 668
+ },
+ "res/color-v23/abc_tint_seek_thumb.xml": {
+ "Size": 500
+ },
+ "res/color-v23/abc_tint_spinner.xml": {
+ "Size": 668
+ },
+ "res/color-v23/abc_tint_switch_track.xml": {
+ "Size": 664
+ },
+ "res/color-v23/design_tint_password_toggle.xml": {
+ "Size": 376
+ },
+ "res/drawable/abc_btn_borderless_material.xml": {
+ "Size": 588
+ },
+ "res/drawable/abc_btn_check_material.xml": {
+ "Size": 464
+ },
+ "res/drawable/abc_btn_check_material_anim.xml": {
+ "Size": 816
+ },
+ "res/drawable/abc_btn_colored_material.xml": {
+ "Size": 344
+ },
+ "res/drawable/abc_btn_default_mtrl_shape.xml": {
+ "Size": 932
+ },
+ "res/drawable/abc_btn_radio_material.xml": {
+ "Size": 464
+ },
+ "res/drawable/abc_btn_radio_material_anim.xml": {
+ "Size": 816
+ },
+ "res/drawable/abc_cab_background_internal_bg.xml": {
+ "Size": 372
+ },
+ "res/drawable/abc_cab_background_top_material.xml": {
+ "Size": 336
+ },
+ "res/drawable/abc_dialog_material_background.xml": {
+ "Size": 716
+ },
+ "res/drawable/abc_edit_text_material.xml": {
+ "Size": 868
+ },
+ "res/drawable/abc_ic_ab_back_material.xml": {
+ "Size": 692
+ },
+ "res/drawable/abc_ic_arrow_drop_right_black_24dp.xml": {
+ "Size": 1000
+ },
+ "res/drawable/abc_ic_clear_material.xml": {
+ "Size": 684
+ },
+ "res/drawable/abc_ic_go_search_api_material.xml": {
+ "Size": 640
+ },
+ "res/drawable/abc_ic_menu_overflow_material.xml": {
+ "Size": 792
+ },
+ "res/drawable/abc_ic_search_api_material.xml": {
+ "Size": 812
+ },
+ "res/drawable/abc_ic_voice_search_api_material.xml": {
+ "Size": 828
+ },
+ "res/drawable/abc_item_background_holo_dark.xml": {
+ "Size": 1012
+ },
+ "res/drawable/abc_item_background_holo_light.xml": {
+ "Size": 1012
+ },
+ "res/drawable/abc_list_divider_material.xml": {
+ "Size": 480
+ },
+ "res/drawable/abc_list_selector_background_transition_holo_dark.xml": {
+ "Size": 424
+ },
+ "res/drawable/abc_list_selector_background_transition_holo_light.xml": {
+ "Size": 424
+ },
+ "res/drawable/abc_list_selector_holo_dark.xml": {
+ "Size": 1064
+ },
+ "res/drawable/abc_list_selector_holo_light.xml": {
+ "Size": 1064
+ },
+ "res/drawable/abc_ratingbar_indicator_material.xml": {
+ "Size": 664
+ },
+ "res/drawable-v21/abc_ratingbar_indicator_material.xml": {
+ "Size": 704
+ },
+ "res/drawable/abc_ratingbar_material.xml": {
+ "Size": 664
+ },
+ "res/drawable-v21/abc_ratingbar_material.xml": {
+ "Size": 704
+ },
+ "res/drawable/abc_ratingbar_small_material.xml": {
+ "Size": 664
+ },
+ "res/drawable-v21/abc_ratingbar_small_material.xml": {
+ "Size": 704
+ },
+ "res/drawable/abc_seekbar_thumb_material.xml": {
+ "Size": 1100
+ },
+ "res/drawable/abc_seekbar_tick_mark_material.xml": {
+ "Size": 516
+ },
+ "res/drawable/abc_seekbar_track_material.xml": {
+ "Size": 1408
+ },
+ "res/drawable/abc_spinner_textfield_background_material.xml": {
+ "Size": 1160
+ },
+ "res/drawable/abc_switch_thumb_material.xml": {
+ "Size": 464
+ },
+ "res/drawable/abc_tab_indicator_material.xml": {
+ "Size": 468
+ },
+ "res/drawable/abc_text_cursor_material.xml": {
+ "Size": 516
+ },
+ "res/drawable/abc_textfield_search_material.xml": {
+ "Size": 756
+ },
+ "res/drawable/abc_vector_test.xml": {
+ "Size": 612
+ },
+ "res/drawable/btn_checkbox_checked_mtrl.xml": {
+ "Size": 2688
+ },
+ "res/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml": {
+ "Size": 688
+ },
+ "res/drawable/btn_checkbox_unchecked_mtrl.xml": {
+ "Size": 2660
+ },
+ "res/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml": {
+ "Size": 688
+ },
+ "res/drawable/btn_radio_off_mtrl.xml": {
+ "Size": 1728
+ },
+ "res/drawable/btn_radio_off_to_on_mtrl_animation.xml": {
+ "Size": 680
+ },
+ "res/drawable/btn_radio_on_mtrl.xml": {
+ "Size": 1656
+ },
+ "res/drawable/btn_radio_on_to_off_mtrl_animation.xml": {
+ "Size": 680
+ },
+ "res/drawable/design_bottom_navigation_item_background.xml": {
+ "Size": 784
+ },
+ "res/drawable/design_fab_background.xml": {
+ "Size": 372
+ },
+ "res/drawable/design_password_eye.xml": {
+ "Size": 464
+ },
+ "res/drawable/design_snackbar_background.xml": {
+ "Size": 484
+ },
+ "res/drawable/ic_mtrl_chip_checked_black.xml": {
+ "Size": 600
+ },
+ "res/drawable/ic_mtrl_chip_checked_circle.xml": {
+ "Size": 940
+ },
+ "res/drawable/ic_mtrl_chip_close_circle.xml": {
+ "Size": 808
+ },
+ "res/drawable/mtrl_snackbar_background.xml": {
+ "Size": 484
+ },
+ "res/drawable/mtrl_tabs_default_indicator.xml": {
+ "Size": 628
+ },
+ "res/drawable/navigation_empty_icon.xml": {
+ "Size": 516
+ },
+ "res/drawable/notification_bg.xml": {
+ "Size": 532
+ },
+ "res/drawable/notification_bg_low.xml": {
+ "Size": 532
+ },
+ "res/drawable/notification_icon_background.xml": {
+ "Size": 372
+ },
+ "res/drawable/notification_tile_bg.xml": {
+ "Size": 304
+ },
+ "res/drawable/tooltip_frame_dark.xml": {
+ "Size": 484
+ },
+ "res/drawable/tooltip_frame_light.xml": {
+ "Size": 484
+ },
+ "res/drawable-watch-v20/abc_dialog_material_background.xml": {
+ "Size": 372
+ },
+ "res/drawable-v21/$avd_hide_password__0.xml": {
+ "Size": 1176
+ },
+ "res/drawable-v21/$avd_hide_password__1.xml": {
+ "Size": 592
+ },
+ "res/drawable-v21/$avd_hide_password__2.xml": {
+ "Size": 556
+ },
+ "res/drawable-v21/$avd_show_password__0.xml": {
+ "Size": 1136
+ },
+ "res/drawable-v21/$avd_show_password__1.xml": {
+ "Size": 592
+ },
+ "res/drawable-v21/$avd_show_password__2.xml": {
+ "Size": 556
+ },
+ "res/drawable-v21/abc_action_bar_item_background_material.xml": {
+ "Size": 264
+ },
+ "res/drawable-v21/abc_btn_colored_material.xml": {
+ "Size": 1716
+ },
+ "res/drawable-v21/abc_dialog_material_background.xml": {
+ "Size": 716
+ },
+ "res/drawable-v21/abc_edit_text_material.xml": {
+ "Size": 1172
+ },
+ "res/drawable-v21/abc_list_divider_material.xml": {
+ "Size": 516
+ },
+ "res/drawable-v21/avd_hide_password.xml": {
+ "Size": 660
+ },
+ "res/drawable-v21/avd_show_password.xml": {
+ "Size": 660
+ },
+ "res/drawable-v21/design_bottom_navigation_item_background.xml": {
+ "Size": 264
+ },
+ "res/drawable-v21/design_password_eye.xml": {
+ "Size": 816
+ },
+ "res/drawable-v21/notification_action_background.xml": {
+ "Size": 1180
+ },
+ "res/drawable-v23/abc_control_background_material.xml": {
+ "Size": 304
+ },
+ "res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png": {
+ "Size": 267
+ },
+ "res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png": {
+ "Size": 214
+ },
+ "res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png": {
+ "Size": 321
+ },
+ "res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png": {
+ "Size": 324
+ },
+ "res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png": {
+ "Size": 356
+ },
+ "res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png": {
+ "Size": 754
+ },
+ "res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png": {
+ "Size": 825
+ },
+ "res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png": {
+ "Size": 216
+ },
+ "res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png": {
+ "Size": 173
+ },
+ "res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 133
+ },
+ "res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 251
+ },
+ "res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png": {
+ "Size": 152
+ },
+ "res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png": {
+ "Size": 139
+ },
+ "res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png": {
+ "Size": 270
+ },
+ "res/drawable-mdpi-v4/abc_ic_star_black_16dp.png": {
+ "Size": 193
+ },
+ "res/drawable-mdpi-v4/abc_ic_star_black_36dp.png": {
+ "Size": 364
+ },
+ "res/drawable-mdpi-v4/abc_ic_star_black_48dp.png": {
+ "Size": 467
+ },
+ "res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png": {
+ "Size": 146
+ },
+ "res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png": {
+ "Size": 253
+ },
+ "res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png": {
+ "Size": 310
+ },
+ "res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png": {
+ "Size": 167
+ },
+ "res/drawable-mdpi-v4/abc_list_focused_holo.9.png": {
+ "Size": 222
+ },
+ "res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png": {
+ "Size": 211
+ },
+ "res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png": {
+ "Size": 207
+ },
+ "res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png": {
+ "Size": 207
+ },
+ "res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png": {
+ "Size": 217
+ },
+ "res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png": {
+ "Size": 217
+ },
+ "res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png": {
+ "Size": 541
+ },
+ "res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png": {
+ "Size": 776
+ },
+ "res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png": {
+ "Size": 159
+ },
+ "res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png": {
+ "Size": 145
+ },
+ "res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png": {
+ "Size": 197
+ },
+ "res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png": {
+ "Size": 203
+ },
+ "res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png": {
+ "Size": 194
+ },
+ "res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 327
+ },
+ "res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png": {
+ "Size": 395
+ },
+ "res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png": {
+ "Size": 186
+ },
+ "res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png": {
+ "Size": 203
+ },
+ "res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png": {
+ "Size": 203
+ },
+ "res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png": {
+ "Size": 311
+ },
+ "res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png": {
+ "Size": 310
+ },
+ "res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png": {
+ "Size": 187
+ },
+ "res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png": {
+ "Size": 186
+ },
+ "res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png": {
+ "Size": 181
+ },
+ "res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png": {
+ "Size": 178
+ },
+ "res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png": {
+ "Size": 178
+ },
+ "res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png": {
+ "Size": 178
+ },
+ "res/drawable-mdpi-v4/design_ic_visibility.png": {
+ "Size": 309
+ },
+ "res/drawable-mdpi-v4/design_ic_visibility_off.png": {
+ "Size": 351
+ },
+ "res/drawable-mdpi-v4/icon.png": {
+ "Size": 2199
+ },
+ "res/drawable-mdpi-v4/notification_bg_low_normal.9.png": {
+ "Size": 215
+ },
+ "res/drawable-mdpi-v4/notification_bg_low_pressed.9.png": {
+ "Size": 223
+ },
+ "res/drawable-mdpi-v4/notification_bg_normal.9.png": {
+ "Size": 215
+ },
+ "res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png": {
+ "Size": 223
+ },
+ "res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png": {
+ "Size": 98
+ },
+ "res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 127
+ },
+ "res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 253
+ },
+ "res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 318
+ },
+ "res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png": {
+ "Size": 272
+ },
+ "res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png": {
+ "Size": 227
+ },
+ "res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png": {
+ "Size": 404
+ },
+ "res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png": {
+ "Size": 464
+ },
+ "res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png": {
+ "Size": 563
+ },
+ "res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png": {
+ "Size": 1096
+ },
+ "res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png": {
+ "Size": 1243
+ },
+ "res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png": {
+ "Size": 226
+ },
+ "res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png": {
+ "Size": 171
+ },
+ "res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 202
+ },
+ "res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 404
+ },
+ "res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png": {
+ "Size": 226
+ },
+ "res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png": {
+ "Size": 215
+ },
+ "res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png": {
+ "Size": 389
+ },
+ "res/drawable-hdpi-v4/abc_ic_star_black_16dp.png": {
+ "Size": 263
+ },
+ "res/drawable-hdpi-v4/abc_ic_star_black_36dp.png": {
+ "Size": 522
+ },
+ "res/drawable-hdpi-v4/abc_ic_star_black_48dp.png": {
+ "Size": 668
+ },
+ "res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png": {
+ "Size": 197
+ },
+ "res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png": {
+ "Size": 328
+ },
+ "res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png": {
+ "Size": 431
+ },
+ "res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png": {
+ "Size": 167
+ },
+ "res/drawable-hdpi-v4/abc_list_focused_holo.9.png": {
+ "Size": 244
+ },
+ "res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png": {
+ "Size": 212
+ },
+ "res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png": {
+ "Size": 208
+ },
+ "res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png": {
+ "Size": 208
+ },
+ "res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png": {
+ "Size": 228
+ },
+ "res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png": {
+ "Size": 229
+ },
+ "res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png": {
+ "Size": 738
+ },
+ "res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png": {
+ "Size": 1098
+ },
+ "res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png": {
+ "Size": 201
+ },
+ "res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png": {
+ "Size": 196
+ },
+ "res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png": {
+ "Size": 272
+ },
+ "res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png": {
+ "Size": 205
+ },
+ "res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png": {
+ "Size": 196
+ },
+ "res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 345
+ },
+ "res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png": {
+ "Size": 484
+ },
+ "res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png": {
+ "Size": 190
+ },
+ "res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png": {
+ "Size": 278
+ },
+ "res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png": {
+ "Size": 278
+ },
+ "res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png": {
+ "Size": 398
+ },
+ "res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png": {
+ "Size": 396
+ },
+ "res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png": {
+ "Size": 263
+ },
+ "res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png": {
+ "Size": 262
+ },
+ "res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png": {
+ "Size": 186
+ },
+ "res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png": {
+ "Size": 192
+ },
+ "res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png": {
+ "Size": 178
+ },
+ "res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png": {
+ "Size": 178
+ },
+ "res/drawable-hdpi-v4/design_ic_visibility.png": {
+ "Size": 470
+ },
+ "res/drawable-hdpi-v4/design_ic_visibility_off.png": {
+ "Size": 507
+ },
+ "res/drawable-hdpi-v4/icon.png": {
+ "Size": 4762
+ },
+ "res/drawable-hdpi-v4/notification_bg_low_normal.9.png": {
+ "Size": 212
+ },
+ "res/drawable-hdpi-v4/notification_bg_low_pressed.9.png": {
+ "Size": 225
+ },
+ "res/drawable-hdpi-v4/notification_bg_normal.9.png": {
+ "Size": 212
+ },
+ "res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png": {
+ "Size": 225
+ },
+ "res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png": {
+ "Size": 107
+ },
+ "res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 199
+ },
+ "res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 400
+ },
+ "res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 345
+ },
+ "res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png": {
+ "Size": 280
+ },
+ "res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png": {
+ "Size": 281
+ },
+ "res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png": {
+ "Size": 432
+ },
+ "res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png": {
+ "Size": 651
+ },
+ "res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png": {
+ "Size": 785
+ },
+ "res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png": {
+ "Size": 1526
+ },
+ "res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png": {
+ "Size": 1731
+ },
+ "res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png": {
+ "Size": 229
+ },
+ "res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png": {
+ "Size": 228
+ },
+ "res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 178
+ },
+ "res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 492
+ },
+ "res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png": {
+ "Size": 243
+ },
+ "res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png": {
+ "Size": 183
+ },
+ "res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png": {
+ "Size": 480
+ },
+ "res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png": {
+ "Size": 333
+ },
+ "res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png": {
+ "Size": 652
+ },
+ "res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png": {
+ "Size": 887
+ },
+ "res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png": {
+ "Size": 235
+ },
+ "res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png": {
+ "Size": 421
+ },
+ "res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png": {
+ "Size": 548
+ },
+ "res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png": {
+ "Size": 167
+ },
+ "res/drawable-xhdpi-v4/abc_list_focused_holo.9.png": {
+ "Size": 244
+ },
+ "res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png": {
+ "Size": 214
+ },
+ "res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png": {
+ "Size": 209
+ },
+ "res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png": {
+ "Size": 209
+ },
+ "res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png": {
+ "Size": 236
+ },
+ "res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png": {
+ "Size": 235
+ },
+ "res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png": {
+ "Size": 966
+ },
+ "res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png": {
+ "Size": 1544
+ },
+ "res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png": {
+ "Size": 267
+ },
+ "res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png": {
+ "Size": 267
+ },
+ "res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png": {
+ "Size": 391
+ },
+ "res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png": {
+ "Size": 208
+ },
+ "res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png": {
+ "Size": 198
+ },
+ "res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 448
+ },
+ "res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png": {
+ "Size": 618
+ },
+ "res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png": {
+ "Size": 194
+ },
+ "res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png": {
+ "Size": 336
+ },
+ "res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png": {
+ "Size": 335
+ },
+ "res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png": {
+ "Size": 583
+ },
+ "res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png": {
+ "Size": 585
+ },
+ "res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png": {
+ "Size": 319
+ },
+ "res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png": {
+ "Size": 318
+ },
+ "res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png": {
+ "Size": 189
+ },
+ "res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png": {
+ "Size": 187
+ },
+ "res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png": {
+ "Size": 184
+ },
+ "res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png": {
+ "Size": 182
+ },
+ "res/drawable-xhdpi-v4/design_ic_visibility.png": {
+ "Size": 593
+ },
+ "res/drawable-xhdpi-v4/design_ic_visibility_off.png": {
+ "Size": 629
+ },
+ "res/drawable-xhdpi-v4/icon.png": {
+ "Size": 7462
+ },
+ "res/drawable-xhdpi-v4/notification_bg_low_normal.9.png": {
+ "Size": 221
+ },
+ "res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png": {
+ "Size": 252
+ },
+ "res/drawable-xhdpi-v4/notification_bg_normal.9.png": {
+ "Size": 221
+ },
+ "res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png": {
+ "Size": 247
+ },
+ "res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png": {
+ "Size": 138
+ },
+ "res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 178
+ },
+ "res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 494
+ },
+ "res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 417
+ },
+ "res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png": {
+ "Size": 286
+ },
+ "res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png": {
+ "Size": 307
+ },
+ "res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png": {
+ "Size": 593
+ },
+ "res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png": {
+ "Size": 984
+ },
+ "res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png": {
+ "Size": 1208
+ },
+ "res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png": {
+ "Size": 2463
+ },
+ "res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png": {
+ "Size": 2834
+ },
+ "res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png": {
+ "Size": 237
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png": {
+ "Size": 224
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 263
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 710
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png": {
+ "Size": 348
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png": {
+ "Size": 262
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png": {
+ "Size": 700
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png": {
+ "Size": 459
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png": {
+ "Size": 983
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png": {
+ "Size": 1291
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png": {
+ "Size": 309
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png": {
+ "Size": 577
+ },
+ "res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png": {
+ "Size": 789
+ },
+ "res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png": {
+ "Size": 171
+ },
+ "res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png": {
+ "Size": 245
+ },
+ "res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png": {
+ "Size": 221
+ },
+ "res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png": {
+ "Size": 212
+ },
+ "res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png": {
+ "Size": 212
+ },
+ "res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png": {
+ "Size": 260
+ },
+ "res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png": {
+ "Size": 258
+ },
+ "res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png": {
+ "Size": 1779
+ },
+ "res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png": {
+ "Size": 2305
+ },
+ "res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png": {
+ "Size": 322
+ },
+ "res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png": {
+ "Size": 403
+ },
+ "res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png": {
+ "Size": 595
+ },
+ "res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png": {
+ "Size": 210
+ },
+ "res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png": {
+ "Size": 207
+ },
+ "res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 524
+ },
+ "res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png": {
+ "Size": 851
+ },
+ "res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png": {
+ "Size": 204
+ },
+ "res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png": {
+ "Size": 420
+ },
+ "res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png": {
+ "Size": 420
+ },
+ "res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png": {
+ "Size": 752
+ },
+ "res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png": {
+ "Size": 753
+ },
+ "res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png": {
+ "Size": 422
+ },
+ "res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png": {
+ "Size": 422
+ },
+ "res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png": {
+ "Size": 199
+ },
+ "res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png": {
+ "Size": 200
+ },
+ "res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png": {
+ "Size": 187
+ },
+ "res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png": {
+ "Size": 186
+ },
+ "res/drawable-xxhdpi-v4/design_ic_visibility.png": {
+ "Size": 868
+ },
+ "res/drawable-xxhdpi-v4/design_ic_visibility_off.png": {
+ "Size": 884
+ },
+ "res/drawable-xxhdpi-v4/icon.png": {
+ "Size": 13092
+ },
+ "res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 260
+ },
+ "res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 705
+ },
+ "res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 525
+ },
+ "res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png": {
+ "Size": 275
+ },
+ "res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png": {
+ "Size": 476
+ },
+ "res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png": {
+ "Size": 785
+ },
+ "res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png": {
+ "Size": 946
+ },
+ "res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png": {
+ "Size": 2505
+ },
+ "res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png": {
+ "Size": 2816
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 327
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 910
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png": {
+ "Size": 461
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png": {
+ "Size": 305
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png": {
+ "Size": 899
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png": {
+ "Size": 599
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png": {
+ "Size": 1269
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png": {
+ "Size": 1680
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png": {
+ "Size": 376
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png": {
+ "Size": 760
+ },
+ "res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png": {
+ "Size": 991
+ },
+ "res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png": {
+ "Size": 415
+ },
+ "res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png": {
+ "Size": 631
+ },
+ "res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 430
+ },
+ "res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png": {
+ "Size": 813
+ },
+ "res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png": {
+ "Size": 202
+ },
+ "res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png": {
+ "Size": 513
+ },
+ "res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png": {
+ "Size": 513
+ },
+ "res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png": {
+ "Size": 513
+ },
+ "res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png": {
+ "Size": 513
+ },
+ "res/drawable-xxxhdpi-v4/design_ic_visibility.png": {
+ "Size": 1155
+ },
+ "res/drawable-xxxhdpi-v4/design_ic_visibility_off.png": {
+ "Size": 1201
+ },
+ "res/drawable-xxxhdpi-v4/icon.png": {
+ "Size": 20118
+ },
+ "res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png": {
+ "Size": 325
+ },
+ "res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png": {
+ "Size": 905
+ },
+ "res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png": {
+ "Size": 437
+ },
+ "res/drawable-anydpi-v21/design_ic_visibility.xml": {
+ "Size": 540
+ },
+ "res/drawable-anydpi-v21/design_ic_visibility_off.xml": {
+ "Size": 1144
+ },
+ "res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml": {
+ "Size": 316
+ },
+ "res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml": {
+ "Size": 328
+ },
+ "res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml": {
+ "Size": 316
+ },
+ "res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml": {
+ "Size": 328
+ },
+ "res/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml": {
+ "Size": 320
+ },
+ "res/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml": {
+ "Size": 320
+ },
+ "res/interpolator/fast_out_slow_in.xml": {
+ "Size": 400
+ },
+ "res/interpolator/mtrl_fast_out_linear_in.xml": {
+ "Size": 136
+ },
+ "res/interpolator/mtrl_fast_out_slow_in.xml": {
+ "Size": 144
+ },
+ "res/interpolator/mtrl_linear.xml": {
+ "Size": 132
+ },
+ "res/interpolator/mtrl_linear_out_slow_in.xml": {
+ "Size": 136
+ },
+ "res/interpolator-v21/mtrl_fast_out_linear_in.xml": {
+ "Size": 400
+ },
+ "res/interpolator-v21/mtrl_fast_out_slow_in.xml": {
+ "Size": 400
+ },
+ "res/interpolator-v21/mtrl_linear_out_slow_in.xml": {
+ "Size": 400
+ },
+ "res/layout/abc_action_bar_title_item.xml": {
+ "Size": 872
+ },
+ "res/layout/abc_action_bar_up_container.xml": {
+ "Size": 440
+ },
+ "res/layout/abc_action_menu_item_layout.xml": {
+ "Size": 768
+ },
+ "res/layout/abc_action_menu_layout.xml": {
+ "Size": 576
+ },
+ "res/layout/abc_action_mode_bar.xml": {
+ "Size": 464
+ },
+ "res/layout/abc_action_mode_close_item_material.xml": {
+ "Size": 840
+ },
+ "res/layout/abc_activity_chooser_view.xml": {
+ "Size": 1684
+ },
+ "res/layout/abc_activity_chooser_view_list_item.xml": {
+ "Size": 1304
+ },
+ "res/layout/abc_alert_dialog_button_bar_material.xml": {
+ "Size": 1536
+ },
+ "res/layout-v22/abc_alert_dialog_button_bar_material.xml": {
+ "Size": 1584
+ },
+ "res/layout/abc_alert_dialog_material.xml": {
+ "Size": 2476
+ },
+ "res/layout/abc_alert_dialog_title_material.xml": {
+ "Size": 1560
+ },
+ "res/layout/abc_cascading_menu_item_layout.xml": {
+ "Size": 1868
+ },
+ "res/layout/abc_dialog_title_material.xml": {
+ "Size": 1116
+ },
+ "res/layout/abc_expanded_menu_layout.xml": {
+ "Size": 388
+ },
+ "res/layout/abc_list_menu_item_checkbox.xml": {
+ "Size": 528
+ },
+ "res/layout/abc_list_menu_item_icon.xml": {
+ "Size": 684
+ },
+ "res/layout/abc_list_menu_item_layout.xml": {
+ "Size": 1396
+ },
+ "res/layout/abc_list_menu_item_radio.xml": {
+ "Size": 532
+ },
+ "res/layout/abc_popup_menu_header_item_layout.xml": {
+ "Size": 848
+ },
+ "res/layout/abc_popup_menu_item_layout.xml": {
+ "Size": 2072
+ },
+ "res/layout/abc_screen_content_include.xml": {
+ "Size": 548
+ },
+ "res/layout/abc_screen_simple.xml": {
+ "Size": 832
+ },
+ "res/layout/abc_screen_simple_overlay_action_mode.xml": {
+ "Size": 792
+ },
+ "res/layout/abc_screen_toolbar.xml": {
+ "Size": 1452
+ },
+ "res/layout-v21/abc_screen_toolbar.xml": {
+ "Size": 1504
+ },
+ "res/layout/abc_search_dropdown_item_icons_2line.xml": {
+ "Size": 1916
+ },
+ "res/layout/abc_search_view.xml": {
+ "Size": 3472
+ },
+ "res/layout/abc_select_dialog_material.xml": {
+ "Size": 1020
+ },
+ "res/layout/abc_tooltip.xml": {
+ "Size": 1056
+ },
+ "res/layout/bottomtablayout.xml": {
+ "Size": 832
+ },
+ "res/layout/browser_actions_context_menu_page.xml": {
+ "Size": 1660
+ },
+ "res/layout/browser_actions_context_menu_row.xml": {
+ "Size": 1164
+ },
+ "res/layout/custom_dialog.xml": {
+ "Size": 612
+ },
+ "res/layout/design_bottom_navigation_item.xml": {
+ "Size": 1492
+ },
+ "res/layout/design_bottom_sheet_dialog.xml": {
+ "Size": 1184
+ },
+ "res/layout/design_layout_snackbar.xml": {
+ "Size": 528
+ },
+ "res/layout/design_layout_snackbar_include.xml": {
+ "Size": 1444
+ },
+ "res/layout/design_layout_tab_icon.xml": {
+ "Size": 408
+ },
+ "res/layout/design_layout_tab_text.xml": {
+ "Size": 436
+ },
+ "res/layout/design_menu_item_action_area.xml": {
+ "Size": 320
+ },
+ "res/layout/design_navigation_item.xml": {
+ "Size": 536
+ },
+ "res/layout/design_navigation_item_header.xml": {
+ "Size": 440
+ },
+ "res/layout/design_navigation_item_separator.xml": {
+ "Size": 472
+ },
+ "res/layout/design_navigation_item_subheader.xml": {
+ "Size": 564
+ },
+ "res/layout/design_navigation_menu.xml": {
+ "Size": 528
+ },
+ "res/layout/design_navigation_menu_item.xml": {
+ "Size": 856
+ },
+ "res/layout/design_text_input_password_icon.xml": {
+ "Size": 564
+ },
+ "res/layout/fallbacktabbardonotuse.xml": {
+ "Size": 692
+ },
+ "res/layout/fallbacktoolbardonotuse.xml": {
+ "Size": 452
+ },
+ "res/layout-v21/fallbacktoolbardonotuse.xml": {
+ "Size": 496
+ },
+ "res/layout/flyoutcontent.xml": {
+ "Size": 944
+ },
+ "res/layout/main.xml": {
+ "Size": 544
+ },
+ "res/layout/mtrl_layout_snackbar.xml": {
+ "Size": 528
+ },
+ "res/layout/mtrl_layout_snackbar_include.xml": {
+ "Size": 1404
+ },
+ "res/layout/notification_action.xml": {
+ "Size": 1156
+ },
+ "res/layout/notification_action_tombstone.xml": {
+ "Size": 1332
+ },
+ "res/layout/notification_media_action.xml": {
+ "Size": 564
+ },
+ "res/layout/notification_media_cancel_action.xml": {
+ "Size": 744
+ },
+ "res/layout/notification_template_big_media.xml": {
+ "Size": 1696
+ },
+ "res/layout/notification_template_big_media_custom.xml": {
+ "Size": 3044
+ },
+ "res/layout/notification_template_big_media_narrow.xml": {
+ "Size": 1824
+ },
+ "res/layout/notification_template_big_media_narrow_custom.xml": {
+ "Size": 3216
+ },
+ "res/layout-v16/notification_template_custom_big.xml": {
+ "Size": 3208
+ },
+ "res/layout/notification_template_icon_group.xml": {
+ "Size": 392
+ },
+ "res/layout/notification_template_lines_media.xml": {
+ "Size": 2872
+ },
+ "res/layout/notification_template_media.xml": {
+ "Size": 1292
+ },
+ "res/layout/notification_template_media_custom.xml": {
+ "Size": 2756
+ },
+ "res/layout/notification_template_part_chronometer.xml": {
+ "Size": 440
+ },
+ "res/layout/notification_template_part_time.xml": {
+ "Size": 440
+ },
+ "res/layout/rootlayout.xml": {
+ "Size": 1352
+ },
+ "res/layout/select_dialog_item_material.xml": {
+ "Size": 640
+ },
+ "res/layout/select_dialog_multichoice_material.xml": {
+ "Size": 864
+ },
+ "res/layout/select_dialog_singlechoice_material.xml": {
+ "Size": 864
+ },
+ "res/layout/shellcontent.xml": {
+ "Size": 888
+ },
+ "res/layout/support_simple_spinner_dropdown_item.xml": {
+ "Size": 464
+ },
+ "res/layout/tabbar.xml": {
+ "Size": 692
+ },
+ "res/layout/toolbar.xml": {
+ "Size": 452
+ },
+ "res/layout-v21/toolbar.xml": {
+ "Size": 496
+ },
+ "res/layout-sw600dp-v13/design_layout_snackbar.xml": {
+ "Size": 528
+ },
+ "res/layout-sw600dp-v13/mtrl_layout_snackbar.xml": {
+ "Size": 528
+ },
+ "res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml": {
+ "Size": 1208
+ },
+ "res/layout-watch-v20/abc_alert_dialog_title_material.xml": {
+ "Size": 1352
+ },
+ "res/layout-v21/notification_action.xml": {
+ "Size": 1052
+ },
+ "res/layout-v21/notification_action_tombstone.xml": {
+ "Size": 1228
+ },
+ "res/layout-v21/notification_template_custom_big.xml": {
+ "Size": 2456
+ },
+ "res/layout-v21/notification_template_icon_group.xml": {
+ "Size": 988
+ },
+ "res/layout-v26/abc_screen_toolbar.xml": {
+ "Size": 1560
+ },
+ "resources.arsc": {
+ "Size": 341040
+ },
+ "classes.dex": {
+ "Size": 3455328
+ },
+ "assemblies/UnnamedProject.dll": {
+ "Size": 116877
+ },
+ "assemblies/FormsViewGroup.dll": {
+ "Size": 7210
+ },
+ "assemblies/Xamarin.AndroidX.Activity.dll": {
+ "Size": 8160
+ },
+ "assemblies/Xamarin.AndroidX.Annotation.dll": {
+ "Size": 2945
+ },
+ "assemblies/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": {
+ "Size": 7537
+ },
+ "assemblies/Xamarin.AndroidX.AppCompat.dll": {
+ "Size": 128620
+ },
+ "assemblies/Xamarin.AndroidX.Arch.Core.Common.dll": {
+ "Size": 3030
+ },
+ "assemblies/Xamarin.AndroidX.Arch.Core.Runtime.dll": {
+ "Size": 3001
+ },
+ "assemblies/Xamarin.AndroidX.AsyncLayoutInflater.dll": {
+ "Size": 2935
+ },
+ "assemblies/Xamarin.AndroidX.Browser.dll": {
+ "Size": 3689
+ },
+ "assemblies/Xamarin.AndroidX.CardView.dll": {
+ "Size": 7825
+ },
+ "assemblies/Xamarin.AndroidX.Collection.dll": {
+ "Size": 3089
+ },
+ "assemblies/Xamarin.AndroidX.CoordinatorLayout.dll": {
+ "Size": 18856
+ },
+ "assemblies/Xamarin.AndroidX.Core.dll": {
+ "Size": 139739
+ },
+ "assemblies/Xamarin.AndroidX.CursorAdapter.dll": {
+ "Size": 3025
+ },
+ "assemblies/Xamarin.AndroidX.CustomView.dll": {
+ "Size": 3182
+ },
+ "assemblies/Xamarin.AndroidX.DocumentFile.dll": {
+ "Size": 2909
+ },
+ "assemblies/Xamarin.AndroidX.DrawerLayout.dll": {
+ "Size": 15897
+ },
+ "assemblies/Xamarin.AndroidX.Fragment.dll": {
+ "Size": 44047
+ },
+ "assemblies/Xamarin.AndroidX.Interpolator.dll": {
+ "Size": 3040
+ },
+ "assemblies/Xamarin.AndroidX.Legacy.Support.Core.UI.dll": {
+ "Size": 7226
+ },
+ "assemblies/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": {
+ "Size": 2991
+ },
+ "assemblies/Xamarin.AndroidX.Lifecycle.Common.dll": {
+ "Size": 7646
+ },
+ "assemblies/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": {
+ "Size": 7659
+ },
+ "assemblies/Xamarin.AndroidX.Lifecycle.LiveData.dll": {
+ "Size": 3021
+ },
+ "assemblies/Xamarin.AndroidX.Lifecycle.Runtime.dll": {
+ "Size": 2964
+ },
+ "assemblies/Xamarin.AndroidX.Lifecycle.ViewModel.dll": {
+ "Size": 5374
+ },
+ "assemblies/Xamarin.AndroidX.Loader.dll": {
+ "Size": 14151
+ },
+ "assemblies/Xamarin.AndroidX.LocalBroadcastManager.dll": {
+ "Size": 2941
+ },
+ "assemblies/Xamarin.AndroidX.Media.dll": {
+ "Size": 4095
+ },
+ "assemblies/Xamarin.AndroidX.Print.dll": {
+ "Size": 2854
+ },
+ "assemblies/Xamarin.AndroidX.RecyclerView.dll": {
+ "Size": 104373
+ },
+ "assemblies/Xamarin.AndroidX.SavedState.dll": {
+ "Size": 6694
+ },
+ "assemblies/Xamarin.AndroidX.SlidingPaneLayout.dll": {
+ "Size": 3013
+ },
+ "assemblies/Xamarin.AndroidX.SwipeRefreshLayout.dll": {
+ "Size": 11700
+ },
+ "assemblies/Xamarin.AndroidX.Transition.dll": {
+ "Size": 3644
+ },
+ "assemblies/Xamarin.AndroidX.VectorDrawable.Animated.dll": {
+ "Size": 3191
+ },
+ "assemblies/Xamarin.AndroidX.VectorDrawable.dll": {
+ "Size": 2991
+ },
+ "assemblies/Xamarin.AndroidX.VersionedParcelable.dll": {
+ "Size": 3037
+ },
+ "assemblies/Xamarin.AndroidX.ViewPager.dll": {
+ "Size": 19964
+ },
+ "assemblies/Xamarin.Forms.Core.dll": {
+ "Size": 524733
+ },
+ "assemblies/Xamarin.Forms.Platform.Android.dll": {
+ "Size": 384867
+ },
+ "assemblies/Xamarin.Forms.Platform.dll": {
+ "Size": 56878
+ },
+ "assemblies/Xamarin.Forms.Xaml.dll": {
+ "Size": 55798
+ },
+ "assemblies/Xamarin.Google.Android.Material.dll": {
+ "Size": 50600
+ },
+ "assemblies/System.Net.Http.dll": {
+ "Size": 110638
+ },
+ "assemblies/System.Runtime.Serialization.dll": {
+ "Size": 186658
+ },
+ "assemblies/Java.Interop.dll": {
+ "Size": 76915
+ },
+ "assemblies/Mono.Android.dll": {
+ "Size": 588153
+ },
+ "assemblies/mscorlib.dll": {
+ "Size": 915046
+ },
+ "assemblies/System.Core.dll": {
+ "Size": 164288
+ },
+ "assemblies/System.dll": {
+ "Size": 389382
+ },
+ "assemblies/System.Xml.dll": {
+ "Size": 395688
+ },
+ "assemblies/System.Numerics.dll": {
+ "Size": 15685
+ },
+ "assemblies/System.Drawing.Common.dll": {
+ "Size": 12359
+ },
+ "assemblies/System.ServiceModel.Internals.dll": {
+ "Size": 26590
+ },
+ "assemblies/Mono.Security.dll": {
+ "Size": 68487
+ },
+ "lib/arm64-v8a/libxamarin-app.so": {
+ "Size": 137696
+ },
+ "lib/arm64-v8a/libmonodroid.so": {
+ "Size": 254616
+ },
+ "lib/arm64-v8a/libxa-internal-api.so": {
+ "Size": 66544
+ },
+ "lib/arm64-v8a/libmono-btls-shared.so": {
+ "Size": 2160056
+ },
+ "lib/arm64-v8a/libmonosgen-2.0.so": {
+ "Size": 6823104
+ },
+ "lib/arm64-v8a/libmono-native.so": {
+ "Size": 1150064
+ },
+ "META-INF/androidx.versionedparcelable_versionedparcelable.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.lifecycle_lifecycle-runtime.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.core_core.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.customview_customview.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.viewpager_viewpager.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.vectordrawable_vectordrawable.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.interpolator_interpolator.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.vectordrawable_vectordrawable-animated.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.savedstate_savedstate.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.lifecycle_lifecycle-viewmodel.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.arch.core_core-runtime.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.lifecycle_lifecycle-livedata-core.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.loader_loader.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.activity_activity.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.fragment_fragment.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.transition_transition.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.swiperefreshlayout_swiperefreshlayout.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.slidingpanelayout_slidingpanelayout.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.recyclerview_recyclerview.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.print_print.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.localbroadcastmanager_localbroadcastmanager.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.documentfile_documentfile.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.legacy_legacy-support-core-utils.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.drawerlayout_drawerlayout.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.cursoradapter_cursoradapter.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.coordinatorlayout_coordinatorlayout.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.asynclayoutinflater_asynclayoutinflater.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.legacy_legacy-support-core-ui.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.cardview_cardview.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.appcompat_appcompat-resources.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.appcompat_appcompat.version": {
+ "Size": 6
+ },
+ "META-INF/android.support.design_material.version": {
+ "Size": 12
+ },
+ "META-INF/com.google.android.material_material.version": {
+ "Size": 10
+ },
+ "META-INF/androidx.media_media.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.lifecycle_lifecycle-livedata.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.legacy_legacy-support-v4.version": {
+ "Size": 6
+ },
+ "META-INF/androidx.browser_browser.version": {
+ "Size": 6
+ },
+ "META-INF/proguard/androidx-annotations.pro": {
+ "Size": 339
+ },
+ "META-INF/ANDROIDD.SF": {
+ "Size": 78342
+ },
+ "META-INF/ANDROIDD.RSA": {
+ "Size": 1213
+ },
+ "META-INF/MANIFEST.MF": {
+ "Size": 78215
+ }
+ },
+ "PackageSize": 10637360
+}
\ No newline at end of file
diff --git a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Xamarin.ProjectTools.csproj b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Xamarin.ProjectTools.csproj
index 5463aa68421..e093a34f7ce 100644
--- a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Xamarin.ProjectTools.csproj
+++ b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Xamarin.ProjectTools.csproj
@@ -61,6 +61,10 @@
Xamarin.ProjectTools.Resources.Base.classes.jar
+
+
+
+