From da536fcf1b663fd71adee40c06466547a04cc6ed Mon Sep 17 00:00:00 2001
From: "dotnet-maestro[bot]"
<42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date: Thu, 27 May 2021 23:28:16 -0400
Subject: [PATCH] Bump to dotnet/installer/main@3ebe0ca9
6.0.100-preview.6.21276.2 (#5954)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Changes: https://github.com/dotnet/installer/compare/f442964a34125c76240b1bf2d2c53fdb00d53e41...3ebe0ca9715283842b003a75cf2b3603ca28d964
Changes: https://github.com/mono/linker/compare/7a5c445a69359415b7ff18b91cd24472ef9509ff...620b243420f5218be7002fdc04223c05854c60d6
Changes: https://github.com/dotnet/runtime/compare/64303750a9198a49f596bcc3aa13de804e421579...5a26d12c41b866731a195938bf3c162ba4a04ce2
Context: https://github.com/dotnet/sdk/blob/1f544a59270cecb2947e50a01f7056c685b4e319/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.targets#L389-L392
Context: https://github.com/xamarin/xamarin-android/pull/5954#issuecomment-849119709
Context: https://github.com/xamarin/xamarin-android/pull/5669#issuecomment-789700648
Updates:
* Microsoft.Dotnet.Sdk.Internal:
[from 6.0.100-preview.5.21266.3 to 6.0.100-preview.6.21276.2][0]
* Microsoft.NET.ILLink.Tasks:
[from 6.0.100-preview.5.21264.1 to 6.0.100-preview.6.21275.1][1]
* Microsoft.NETCore.App.Ref:
[from 6.0.0-preview.5.21265.5 to 6.0.0-preview.6.21274.1][2]
Update `.apkdesc` files, as `System.Net.Quic.dll` is now included
in the Xamarin.Forms sample.
Fix `azure-pipelines.yaml` so that if (when) the
`Mono.Android.NET_Tests` unit tests fail, the corresponding `.apk`
or `.aab` file is uploaded for our later investigation; see also
commit af7f7f5d, which contained a "typo" such that .NET 6 packages
*weren't* uploaded on unit test failure, as they used the wrong
target framework identifier in the path.
Finally, and most annoying of all, the `$(InvariantGlobalization)`
MSBuild property should *not* default to `false` in .NET 6 projects,
as was introduced in commit 9ac280c75d, but instead should default
to *the empty string*.
The problem is due to [`Microsoft.NET.Sdk.targets`][3]:
The above fragment sets `%(RuntimeHostConfigurationOption.Trim)` to
`True` for `System.Globalization.Invariant` whenever
`$(InvariantGlobalization)` is *not* the empty string.
The value `false` is *not* the empty string.
This caused `System.Globalization.Invariant`-related trim features
to be enabled, which had the unfortunate and unanticipated side effect
of causing ICU to *not* be properly initialized when running the
`Mono.Android.NET_Tests` unit test apps, which resulted in a SIGSEGV:
libc : Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0 in tid 31880 (droid.NET_Tests), pid 31880 (droid.NET_Tests)
crash_dump64: obtaining output fd from tombstoned, type: kDebuggerdTombstone
tombstoned: received crash request for pid 31880
crash_dump64: performing dump of process 31880 (target tid = 31880)
DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
DEBUG : Build fingerprint: 'google/redfin/redfin:11/RQ1A.201205.011/6966805:user/release-keys'
DEBUG : Revision: 'MP1.0'
DEBUG : ABI: 'arm64'
DEBUG : Timestamp: 2021-05-26 15:21:42-0400
DEBUG : pid: 31880, tid: 31880, name: droid.NET_Tests >>> Mono.Android.NET_Tests <<<
DEBUG : uid: 10282
DEBUG : signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0
DEBUG : Cause: null pointer dereference
DEBUG : x0 b400007c4de52530 x1 0000007fcc4cbeec x2 fffffffffffffff0 x3 b400007d2de37c80
DEBUG : x4 b400007d2de37cf0 x5 0000000000000004 x6 0000007c2225ddac x7 0000007fcc4cbfe0
DEBUG : x8 0000000000000000 x9 000000001333c921 x10 0000000000000000 x11 000000002de37cf0
DEBUG : x12 000000002a742e66 x13 0000000000000012 x14 0000000000000200 x15 0000000000000011
DEBUG : x16 0000007bd6adb810 x17 0000007ed2056240 x18 0000007ed3b94000 x19 0000007fcc4cc040
DEBUG : x20 b400007c4de52530 x21 b400007c4de52530 x22 0000000000000000 x23 b400007d7de490c0
DEBUG : x24 0000000000000001 x25 0000007bd58055c0 x26 0000007bd5cc0130 x27 0000007ed33ab000
DEBUG : x28 0000007bd6af1000 x29 0000007fcc4cbf00
DEBUG : lr 0000007bd69119c8 sp 0000007fcc4cbee0 pc 0000000000000000 pst 0000000080001000
…
DEBUG : backtrace:
DEBUG : #00 pc 0000000000000000
DEBUG : #01 pc 000000000014e9c4 /data/app/~~oruJhhqj_EC_NWSaIGF_RQ==/Mono.Android.NET_Tests-G1iNxUwmGyu-tDRqYcK94g==/lib/arm64/libmonosgen-2.0.so (GlobalizationNative_GetSortHandle+76) (BuildId: 869ce5526fa884035199acac4ddc81bb6eeaf134)
DEBUG : #02 pc 000000000000ddbc
While we've (inadvertently) had `%(Trim)` enabled for over three
months now, the *trigger* for this particular crash appears to be
commit dotnet/runtime@bc27d49, which moved ICU initialization outside
of the `GlobalizationMode` static constructor and into a new
`GlobalizationMode.Settings` static constructor…which wasn't executed.
Explicitly setting `$(InvariantGlobalization)` to the empty string
*unless* it is the value `true` allows us to avoid setting
`%(RuntimeHostConfigurationOption.Trim)`=True for
`System.Globalization.Invariant`, which in turn avoids whatever set
of linker-induced changes were preventing ICU from being properly
initialized, which avoids the SIGSEGV.
Co-authored-by: dotnet-maestro[bot]
Co-authored-by: Jonathan Peppers
Co-authored-by: Peter Collins
[0]: https://github.com/dotnet/installer/compare/f442964a34125c76240b1bf2d2c53fdb00d53e41...3ebe0ca9715283842b003a75cf2b3603ca28d964
[1]: https://github.com/mono/linker/compare/7a5c445a69359415b7ff18b91cd24472ef9509ff...620b243420f5218be7002fdc04223c05854c60d6
[2]: https://github.com/dotnet/runtime/compare/64303750a9198a49f596bcc3aa13de804e421579...5a26d12c41b866731a195938bf3c162ba4a04ce2
[3]: https://github.com/dotnet/sdk/blob/1f544a59270cecb2947e50a01f7056c685b4e319/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.targets#L389-L392
---
build-tools/automation/azure-pipelines.yaml | 6 +-
eng/Version.Details.xml | 12 +-
eng/Versions.props | 6 +-
...soft.Android.Sdk.DefaultProperties.targets | 6 +-
.../BuildReleaseArm64SimpleDotNet.apkdesc | 20 +-
.../BuildReleaseArm64XFormsDotNet.apkdesc | 1005 +++++++++--------
6 files changed, 531 insertions(+), 524 deletions(-)
diff --git a/build-tools/automation/azure-pipelines.yaml b/build-tools/automation/azure-pipelines.yaml
index fc4f20cc667..60aa48fa79b 100644
--- a/build-tools/automation/azure-pipelines.yaml
+++ b/build-tools/automation/azure-pipelines.yaml
@@ -788,7 +788,7 @@ stages:
testName: Mono.Android.NET_Tests
project: tests/Mono.Android-Tests/Runtime-Microsoft.Android.Sdk/Mono.Android.NET-Tests.csproj
testResultsFiles: TestResult-Mono.Android.NET_Tests-$(XA.Build.Configuration).xml
- artifactSource: bin/Test$(XA.Build.Configuration)/net6-android/Mono.Android.NET_Tests-Signed.apk
+ artifactSource: bin/Test$(XA.Build.Configuration)/net6.0-android/Mono.Android.NET_Tests-Signed.apk
artifactFolder: net6-Default
useDotNet: true
@@ -800,7 +800,7 @@ stages:
testResultsFiles: TestResult-Mono.Android.NET_Tests-$(XA.Build.Configuration)Aab.xml
extraBuildArgs: /p:TestsFlavor=Aab /p:AndroidPackageFormat=aab
packageType: Aab
- artifactSource: bin/Test$(XA.Build.Configuration)/net6-android/Mono.Android.NET_Tests-Signed.aab
+ artifactSource: bin/Test$(XA.Build.Configuration)/net6.0-android/Mono.Android.NET_Tests-Signed.aab
artifactFolder: net6-Aab
useDotNet: true
@@ -811,7 +811,7 @@ stages:
project: tests/Mono.Android-Tests/Runtime-Microsoft.Android.Sdk/Mono.Android.NET-Tests.csproj
testResultsFiles: TestResult-Mono.Android.NET_Tests-$(XA.Build.Configuration)Interpreter.xml
extraBuildArgs: /p:TestsFlavor=Interpreter /p:UseInterpreter=True
- artifactSource: bin/Test$(XA.Build.Configuration)/net6-android/Mono.Android.NET_Tests-Signed.apk
+ artifactSource: bin/Test$(XA.Build.Configuration)/net6.0-android/Mono.Android.NET_Tests-Signed.apk
artifactFolder: net6-Interpreter
useDotNet: true
diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index 2c6a889740b..29e703b140b 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -1,16 +1,16 @@
-
+
https://github.com/dotnet/installer
- f442964a34125c76240b1bf2d2c53fdb00d53e41
+ 3ebe0ca9715283842b003a75cf2b3603ca28d964
-
+
https://github.com/mono/linker
- 7a5c445a69359415b7ff18b91cd24472ef9509ff
+ 620b243420f5218be7002fdc04223c05854c60d6
-
+
https://github.com/dotnet/runtime
- 64303750a9198a49f596bcc3aa13de804e421579
+ 5a26d12c41b866731a195938bf3c162ba4a04ce2
diff --git a/eng/Versions.props b/eng/Versions.props
index c4d31dd580a..1595a010f96 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -1,11 +1,11 @@
- 6.0.100-preview.5.21266.3
- 6.0.100-preview.5.21264.1
+ 6.0.100-preview.6.21276.2
+ 6.0.100-preview.6.21275.1
5.0.0-beta.20181.7
6.0.0-beta.21212.6
- 6.0.0-preview.5.21265.5
+ 6.0.0-preview.6.21274.1
diff --git a/src/Xamarin.Android.Build.Tasks/Microsoft.Android.Sdk/targets/Microsoft.Android.Sdk.DefaultProperties.targets b/src/Xamarin.Android.Build.Tasks/Microsoft.Android.Sdk/targets/Microsoft.Android.Sdk.DefaultProperties.targets
index a1d79a6c8bc..39c2bce7208 100644
--- a/src/Xamarin.Android.Build.Tasks/Microsoft.Android.Sdk/targets/Microsoft.Android.Sdk.DefaultProperties.targets
+++ b/src/Xamarin.Android.Build.Tasks/Microsoft.Android.Sdk/targets/Microsoft.Android.Sdk.DefaultProperties.targets
@@ -69,7 +69,11 @@
false
false
false
- false
+
+
true
false
false
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
index ae920fe4202..98373a3c139 100644
--- 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
@@ -8,37 +8,37 @@
"Size": 54406
},
"assemblies/Mono.Android.dll": {
- "Size": 78819
+ "Size": 78828
},
"assemblies/System.Linq.dll": {
"Size": 10155
},
"assemblies/System.Private.CoreLib.dll": {
- "Size": 489247
+ "Size": 488969
},
"assemblies/System.Runtime.dll": {
- "Size": 2265
+ "Size": 2263
},
"assemblies/UnnamedProject.dll": {
- "Size": 3176
+ "Size": 3160
},
"classes.dex": {
"Size": 316792
},
"lib/arm64-v8a/libmonodroid.so": {
- "Size": 346848
+ "Size": 336656
},
"lib/arm64-v8a/libmonosgen-2.0.so": {
- "Size": 3947544
+ "Size": 3939352
},
"lib/arm64-v8a/libSystem.IO.Compression.Native.so": {
- "Size": 776168
+ "Size": 776216
},
"lib/arm64-v8a/libSystem.Native.so": {
- "Size": 75824
+ "Size": 75872
},
"lib/arm64-v8a/libSystem.Security.Cryptography.Native.Android.so": {
- "Size": 162248
+ "Size": 166408
},
"lib/arm64-v8a/libxamarin-app.so": {
"Size": 11504
@@ -53,7 +53,7 @@
"Size": 2162
},
"res/drawable-hdpi-v4/icon.png": {
- "Size": 4762
+ "Size": 4791
},
"res/drawable-mdpi-v4/icon.png": {
"Size": 2200
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
index b3fdeba2b7f..1e79854f897 100644
--- 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
@@ -5,31 +5,31 @@
"Size": 3120
},
"assemblies/FormsViewGroup.dll": {
- "Size": 7236
+ "Size": 7224
},
"assemblies/Java.Interop.dll": {
"Size": 61256
},
"assemblies/Microsoft.Win32.Primitives.dll": {
- "Size": 3647
+ "Size": 3649
},
"assemblies/Mono.Android.dll": {
- "Size": 398281
+ "Size": 398295
},
"assemblies/mscorlib.dll": {
- "Size": 3851
+ "Size": 3850
},
"assemblies/netstandard.dll": {
- "Size": 5526
+ "Size": 5523
},
"assemblies/System.Collections.Concurrent.dll": {
- "Size": 11581
+ "Size": 11582
},
"assemblies/System.Collections.dll": {
- "Size": 20591
+ "Size": 20588
},
"assemblies/System.Collections.NonGeneric.dll": {
- "Size": 8471
+ "Size": 8477
},
"assemblies/System.ComponentModel.dll": {
"Size": 2006
@@ -41,181 +41,184 @@
"Size": 6996
},
"assemblies/System.Console.dll": {
- "Size": 5842
+ "Size": 5839
},
"assemblies/System.Core.dll": {
- "Size": 1972
+ "Size": 1971
},
"assemblies/System.Diagnostics.TraceSource.dll": {
- "Size": 6831
+ "Size": 6833
},
"assemblies/System.dll": {
- "Size": 2319
+ "Size": 2318
},
"assemblies/System.Drawing.dll": {
- "Size": 2003
+ "Size": 2001
},
"assemblies/System.Drawing.Primitives.dll": {
- "Size": 12153
+ "Size": 12155
},
"assemblies/System.Formats.Asn1.dll": {
- "Size": 26574
+ "Size": 26862
},
"assemblies/System.IO.Compression.Brotli.dll": {
"Size": 11574
},
"assemblies/System.IO.Compression.dll": {
- "Size": 18715
+ "Size": 18714
},
"assemblies/System.IO.FileSystem.dll": {
"Size": 23847
},
"assemblies/System.IO.IsolatedStorage.dll": {
- "Size": 10601
+ "Size": 10654
},
"assemblies/System.Linq.dll": {
- "Size": 19509
+ "Size": 19508
},
"assemblies/System.Linq.Expressions.dll": {
- "Size": 181105
+ "Size": 181108
},
"assemblies/System.Net.Http.dll": {
- "Size": 189059
+ "Size": 211177
},
"assemblies/System.Net.NameResolution.dll": {
- "Size": 9929
+ "Size": 9879
},
"assemblies/System.Net.NetworkInformation.dll": {
- "Size": 17342
+ "Size": 17344
},
"assemblies/System.Net.Primitives.dll": {
- "Size": 41172
+ "Size": 41146
+ },
+ "assemblies/System.Net.Quic.dll": {
+ "Size": 40023
},
"assemblies/System.Net.Security.dll": {
- "Size": 56963
+ "Size": 56932
},
"assemblies/System.Net.Sockets.dll": {
- "Size": 54108
+ "Size": 54024
},
"assemblies/System.ObjectModel.dll": {
"Size": 11318
},
"assemblies/System.Private.CoreLib.dll": {
- "Size": 673881
+ "Size": 674584
},
"assemblies/System.Private.DataContractSerialization.dll": {
- "Size": 193069
+ "Size": 193070
},
"assemblies/System.Private.Uri.dll": {
- "Size": 43199
+ "Size": 43202
},
"assemblies/System.Private.Xml.dll": {
- "Size": 251151
+ "Size": 251158
},
"assemblies/System.Private.Xml.Linq.dll": {
- "Size": 15068
+ "Size": 15069
},
"assemblies/System.Runtime.CompilerServices.Unsafe.dll": {
"Size": 1342
},
"assemblies/System.Runtime.dll": {
- "Size": 2464
+ "Size": 2462
},
"assemblies/System.Runtime.InteropServices.RuntimeInformation.dll": {
- "Size": 2887
+ "Size": 2916
},
"assemblies/System.Runtime.Numerics.dll": {
- "Size": 18115
+ "Size": 21149
},
"assemblies/System.Runtime.Serialization.dll": {
- "Size": 1942
+ "Size": 1940
},
"assemblies/System.Runtime.Serialization.Formatters.dll": {
- "Size": 2678
+ "Size": 2676
},
"assemblies/System.Runtime.Serialization.Primitives.dll": {
"Size": 3981
},
"assemblies/System.Security.Cryptography.Algorithms.dll": {
- "Size": 24417
+ "Size": 42183
},
"assemblies/System.Security.Cryptography.Encoding.dll": {
- "Size": 13815
+ "Size": 13822
},
"assemblies/System.Security.Cryptography.Primitives.dll": {
- "Size": 5458
+ "Size": 8849
},
"assemblies/System.Security.Cryptography.X509Certificates.dll": {
- "Size": 54962
+ "Size": 76036
},
"assemblies/System.Text.RegularExpressions.dll": {
- "Size": 76513
+ "Size": 76517
},
"assemblies/System.Threading.Channels.dll": {
- "Size": 13457
+ "Size": 15114
},
"assemblies/System.Xml.dll": {
- "Size": 1827
+ "Size": 1825
},
"assemblies/UnnamedProject.dll": {
- "Size": 117076
+ "Size": 117064
},
"assemblies/Xamarin.AndroidX.Activity.dll": {
- "Size": 6067
+ "Size": 6054
},
"assemblies/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": {
- "Size": 6090
+ "Size": 6079
},
"assemblies/Xamarin.AndroidX.AppCompat.dll": {
- "Size": 112582
+ "Size": 112570
},
"assemblies/Xamarin.AndroidX.CardView.dll": {
- "Size": 6803
+ "Size": 6792
},
"assemblies/Xamarin.AndroidX.CoordinatorLayout.dll": {
- "Size": 16597
+ "Size": 16581
},
"assemblies/Xamarin.AndroidX.Core.dll": {
- "Size": 96711
+ "Size": 96700
},
"assemblies/Xamarin.AndroidX.DrawerLayout.dll": {
- "Size": 14266
+ "Size": 14254
},
"assemblies/Xamarin.AndroidX.Fragment.dll": {
- "Size": 39923
+ "Size": 39910
},
"assemblies/Xamarin.AndroidX.Legacy.Support.Core.UI.dll": {
- "Size": 6128
+ "Size": 6113
},
"assemblies/Xamarin.AndroidX.Lifecycle.Common.dll": {
- "Size": 6587
+ "Size": 6575
},
"assemblies/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": {
- "Size": 6658
+ "Size": 6650
},
"assemblies/Xamarin.AndroidX.Lifecycle.ViewModel.dll": {
- "Size": 3264
+ "Size": 3253
},
"assemblies/Xamarin.AndroidX.Loader.dll": {
- "Size": 12667
+ "Size": 12651
},
"assemblies/Xamarin.AndroidX.RecyclerView.dll": {
- "Size": 84676
+ "Size": 84663
},
"assemblies/Xamarin.AndroidX.SavedState.dll": {
- "Size": 5072
+ "Size": 5060
},
"assemblies/Xamarin.AndroidX.SwipeRefreshLayout.dll": {
- "Size": 10376
+ "Size": 10362
},
"assemblies/Xamarin.AndroidX.ViewPager.dll": {
- "Size": 17979
+ "Size": 17965
},
"assemblies/Xamarin.Forms.Core.dll": {
"Size": 528450
},
"assemblies/Xamarin.Forms.Platform.Android.dll": {
- "Size": 384976
+ "Size": 384961
},
"assemblies/Xamarin.Forms.Platform.dll": {
"Size": 56878
@@ -224,28 +227,28 @@
"Size": 60774
},
"assemblies/Xamarin.Google.Android.Material.dll": {
- "Size": 40126
+ "Size": 40113
},
"classes.dex": {
"Size": 3455324
},
"lib/arm64-v8a/libmonodroid.so": {
- "Size": 346848
+ "Size": 336656
},
"lib/arm64-v8a/libmonosgen-2.0.so": {
- "Size": 3947544
+ "Size": 3939352
},
"lib/arm64-v8a/libSystem.IO.Compression.Native.so": {
- "Size": 776168
+ "Size": 776216
},
"lib/arm64-v8a/libSystem.Native.so": {
- "Size": 75824
+ "Size": 75872
},
"lib/arm64-v8a/libSystem.Security.Cryptography.Native.Android.so": {
- "Size": 162248
+ "Size": 166408
},
"lib/arm64-v8a/libxamarin-app.so": {
- "Size": 126680
+ "Size": 126744
},
"META-INF/android.support.design_material.version": {
"Size": 12
@@ -254,15 +257,15 @@
"Size": 1213
},
"META-INF/ANDROIDD.SF": {
- "Size": 80227
+ "Size": 80329
},
"META-INF/androidx.activity_activity.version": {
"Size": 6
},
- "META-INF/androidx.appcompat_appcompat-resources.version": {
+ "META-INF/androidx.appcompat_appcompat.version": {
"Size": 6
},
- "META-INF/androidx.appcompat_appcompat.version": {
+ "META-INF/androidx.appcompat_appcompat-resources.version": {
"Size": 6
},
"META-INF/androidx.arch.core_core-runtime.version": {
@@ -310,10 +313,10 @@
"META-INF/androidx.legacy_legacy-support-v4.version": {
"Size": 6
},
- "META-INF/androidx.lifecycle_lifecycle-livedata-core.version": {
+ "META-INF/androidx.lifecycle_lifecycle-livedata.version": {
"Size": 6
},
- "META-INF/androidx.lifecycle_lifecycle-livedata.version": {
+ "META-INF/androidx.lifecycle_lifecycle-livedata-core.version": {
"Size": 6
},
"META-INF/androidx.lifecycle_lifecycle-runtime.version": {
@@ -349,10 +352,10 @@
"META-INF/androidx.transition_transition.version": {
"Size": 6
},
- "META-INF/androidx.vectordrawable_vectordrawable-animated.version": {
+ "META-INF/androidx.vectordrawable_vectordrawable.version": {
"Size": 6
},
- "META-INF/androidx.vectordrawable_vectordrawable.version": {
+ "META-INF/androidx.vectordrawable_vectordrawable-animated.version": {
"Size": 6
},
"META-INF/androidx.versionedparcelable_versionedparcelable.version": {
@@ -365,17 +368,11 @@
"Size": 10
},
"META-INF/MANIFEST.MF": {
- "Size": 80100
+ "Size": 80202
},
"META-INF/proguard/androidx-annotations.pro": {
"Size": 339
},
- "res/anim-v21/design_bottom_sheet_slide_in.xml": {
- "Size": 616
- },
- "res/anim-v21/design_bottom_sheet_slide_out.xml": {
- "Size": 616
- },
"res/anim/abc_fade_in.xml": {
"Size": 388
},
@@ -472,9 +469,6 @@
"res/anim/exittoright.xml": {
"Size": 468
},
- "res/animator-v21/design_appbar_state_list_animator.xml": {
- "Size": 1216
- },
"res/animator/design_fab_hide_motion_spec.xml": {
"Size": 796
},
@@ -502,38 +496,14 @@
"res/animator/mtrl_fab_transformation_sheet_expand_spec.xml": {
"Size": 1888
},
- "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/animator-v21/design_appbar_state_list_animator.xml": {
+ "Size": 1216
},
- "res/color-v23/abc_tint_switch_track.xml": {
- "Size": 664
+ "res/anim-v21/design_bottom_sheet_slide_in.xml": {
+ "Size": 616
},
- "res/color-v23/design_tint_password_toggle.xml": {
- "Size": 376
+ "res/anim-v21/design_bottom_sheet_slide_out.xml": {
+ "Size": 616
},
"res/color/abc_background_cache_hint_selector_material_dark.xml": {
"Size": 468
@@ -637,10 +607,10 @@
"res/color/mtrl_tabs_colored_ripple_color.xml": {
"Size": 948
},
- "res/color/mtrl_tabs_icon_color_selector_colored.xml": {
+ "res/color/mtrl_tabs_icon_color_selector.xml": {
"Size": 464
},
- "res/color/mtrl_tabs_icon_color_selector.xml": {
+ "res/color/mtrl_tabs_icon_color_selector_colored.xml": {
"Size": 464
},
"res/color/mtrl_tabs_legacy_text_color_selector.xml": {
@@ -658,161 +628,377 @@
"res/color/switch_thumb_material_light.xml": {
"Size": 464
},
- "res/drawable-anydpi-v21/design_ic_visibility_off.xml": {
- "Size": 1144
+ "res/color-v21/abc_btn_colored_borderless_text_material.xml": {
+ "Size": 464
},
- "res/drawable-anydpi-v21/design_ic_visibility.xml": {
- "Size": 540
+ "res/color-v23/abc_btn_colored_borderless_text_material.xml": {
+ "Size": 500
},
- "res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png": {
- "Size": 272
+ "res/color-v23/abc_btn_colored_text_material.xml": {
+ "Size": 500
},
- "res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png": {
- "Size": 227
+ "res/color-v23/abc_color_highlight_material.xml": {
+ "Size": 544
},
- "res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png": {
- "Size": 404
+ "res/color-v23/abc_tint_btn_checkable.xml": {
+ "Size": 624
},
- "res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png": {
- "Size": 464
+ "res/color-v23/abc_tint_default.xml": {
+ "Size": 1120
},
- "res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png": {
- "Size": 563
+ "res/color-v23/abc_tint_edittext.xml": {
+ "Size": 668
},
- "res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png": {
- "Size": 1096
+ "res/color-v23/abc_tint_seek_thumb.xml": {
+ "Size": 500
},
- "res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png": {
- "Size": 1243
+ "res/color-v23/abc_tint_spinner.xml": {
+ "Size": 668
},
- "res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png": {
- "Size": 226
+ "res/color-v23/abc_tint_switch_track.xml": {
+ "Size": 664
},
- "res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png": {
- "Size": 171
+ "res/color-v23/design_tint_password_toggle.xml": {
+ "Size": 376
},
- "res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png": {
- "Size": 202
+ "res/drawable/abc_btn_borderless_material.xml": {
+ "Size": 588
},
- "res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png": {
- "Size": 404
+ "res/drawable/abc_btn_check_material.xml": {
+ "Size": 464
},
- "res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png": {
- "Size": 226
+ "res/drawable/abc_btn_check_material_anim.xml": {
+ "Size": 816
},
- "res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png": {
- "Size": 215
+ "res/drawable/abc_btn_colored_material.xml": {
+ "Size": 344
},
- "res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png": {
- "Size": 389
+ "res/drawable/abc_btn_default_mtrl_shape.xml": {
+ "Size": 932
},
- "res/drawable-hdpi-v4/abc_ic_star_black_16dp.png": {
- "Size": 263
+ "res/drawable/abc_btn_radio_material.xml": {
+ "Size": 464
},
- "res/drawable-hdpi-v4/abc_ic_star_black_36dp.png": {
- "Size": 522
+ "res/drawable/abc_btn_radio_material_anim.xml": {
+ "Size": 816
},
- "res/drawable-hdpi-v4/abc_ic_star_black_48dp.png": {
- "Size": 668
+ "res/drawable/abc_cab_background_internal_bg.xml": {
+ "Size": 372
},
- "res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png": {
- "Size": 197
+ "res/drawable/abc_cab_background_top_material.xml": {
+ "Size": 336
},
- "res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png": {
- "Size": 328
+ "res/drawable/abc_dialog_material_background.xml": {
+ "Size": 716
},
- "res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png": {
- "Size": 431
+ "res/drawable/abc_edit_text_material.xml": {
+ "Size": 868
},
- "res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png": {
- "Size": 167
+ "res/drawable/abc_ic_ab_back_material.xml": {
+ "Size": 692
},
- "res/drawable-hdpi-v4/abc_list_focused_holo.9.png": {
- "Size": 244
+ "res/drawable/abc_ic_arrow_drop_right_black_24dp.xml": {
+ "Size": 1000
},
- "res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png": {
- "Size": 212
+ "res/drawable/abc_ic_clear_material.xml": {
+ "Size": 684
},
- "res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png": {
- "Size": 208
+ "res/drawable/abc_ic_go_search_api_material.xml": {
+ "Size": 640
},
- "res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png": {
- "Size": 208
+ "res/drawable/abc_ic_menu_overflow_material.xml": {
+ "Size": 792
},
- "res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png": {
- "Size": 228
+ "res/drawable/abc_ic_search_api_material.xml": {
+ "Size": 812
},
- "res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png": {
- "Size": 229
+ "res/drawable/abc_ic_voice_search_api_material.xml": {
+ "Size": 828
},
- "res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png": {
- "Size": 738
+ "res/drawable/abc_item_background_holo_dark.xml": {
+ "Size": 1012
},
- "res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png": {
- "Size": 1098
+ "res/drawable/abc_item_background_holo_light.xml": {
+ "Size": 1012
},
- "res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png": {
- "Size": 201
+ "res/drawable/abc_list_divider_material.xml": {
+ "Size": 480
},
- "res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png": {
- "Size": 196
+ "res/drawable/abc_list_selector_background_transition_holo_dark.xml": {
+ "Size": 424
},
- "res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png": {
- "Size": 272
+ "res/drawable/abc_list_selector_background_transition_holo_light.xml": {
+ "Size": 424
},
- "res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png": {
- "Size": 205
+ "res/drawable/abc_list_selector_holo_dark.xml": {
+ "Size": 1064
},
- "res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png": {
- "Size": 196
+ "res/drawable/abc_list_selector_holo_light.xml": {
+ "Size": 1064
},
- "res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png": {
- "Size": 345
+ "res/drawable/abc_ratingbar_indicator_material.xml": {
+ "Size": 664
},
- "res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png": {
- "Size": 484
+ "res/drawable/abc_ratingbar_material.xml": {
+ "Size": 664
},
- "res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png": {
- "Size": 190
+ "res/drawable/abc_ratingbar_small_material.xml": {
+ "Size": 664
},
- "res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png": {
- "Size": 278
+ "res/drawable/abc_seekbar_thumb_material.xml": {
+ "Size": 1100
},
- "res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png": {
- "Size": 278
+ "res/drawable/abc_seekbar_tick_mark_material.xml": {
+ "Size": 516
},
- "res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png": {
- "Size": 398
+ "res/drawable/abc_seekbar_track_material.xml": {
+ "Size": 1408
},
- "res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png": {
- "Size": 396
+ "res/drawable/abc_spinner_textfield_background_material.xml": {
+ "Size": 1160
},
- "res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png": {
- "Size": 263
+ "res/drawable/abc_switch_thumb_material.xml": {
+ "Size": 464
},
- "res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png": {
- "Size": 262
+ "res/drawable/abc_tab_indicator_material.xml": {
+ "Size": 468
},
- "res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png": {
- "Size": 186
+ "res/drawable/abc_text_cursor_material.xml": {
+ "Size": 516
},
- "res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png": {
- "Size": 192
+ "res/drawable/abc_textfield_search_material.xml": {
+ "Size": 756
},
- "res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png": {
- "Size": 178
+ "res/drawable/abc_vector_test.xml": {
+ "Size": 612
},
- "res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png": {
- "Size": 178
+ "res/drawable/btn_checkbox_checked_mtrl.xml": {
+ "Size": 2688
},
- "res/drawable-hdpi-v4/design_ic_visibility_off.png": {
- "Size": 507
+ "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-anydpi-v21/design_ic_visibility.xml": {
+ "Size": 540
+ },
+ "res/drawable-anydpi-v21/design_ic_visibility_off.xml": {
+ "Size": 1144
+ },
+ "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
+ "Size": 4791
},
"res/drawable-hdpi-v4/notification_bg_low_normal.9.png": {
"Size": 212
@@ -820,12 +1006,12 @@
"res/drawable-hdpi-v4/notification_bg_low_pressed.9.png": {
"Size": 225
},
- "res/drawable-hdpi-v4/notification_bg_normal_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
},
@@ -1015,12 +1201,12 @@
"res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png": {
"Size": 178
},
- "res/drawable-mdpi-v4/design_ic_visibility_off.png": {
- "Size": 351
- },
"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": 2200
},
@@ -1030,12 +1216,12 @@
"res/drawable-mdpi-v4/notification_bg_low_pressed.9.png": {
"Size": 223
},
- "res/drawable-mdpi-v4/notification_bg_normal_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
},
@@ -1243,12 +1429,12 @@
"res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png": {
"Size": 182
},
- "res/drawable-xhdpi-v4/design_ic_visibility_off.png": {
- "Size": 629
- },
"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
},
@@ -1258,12 +1444,12 @@
"res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png": {
"Size": 252
},
- "res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png": {
- "Size": 247
- },
"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
},
@@ -1408,13 +1594,13 @@
"res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png": {
"Size": 186
},
- "res/drawable-xxhdpi-v4/design_ic_visibility_off.png": {
- "Size": 884
- },
"res/drawable-xxhdpi-v4/design_ic_visibility.png": {
"Size": 868
},
- "res/drawable-xxhdpi-v4/icon.png": {
+ "res/drawable-xxhdpi-v4/design_ic_visibility_off.png": {
+ "Size": 884
+ },
+ "res/drawable-xxhdpi-v4/icon.png": {
"Size": 13092
},
"res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png": {
@@ -1495,207 +1681,15 @@
"res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png": {
"Size": 513
},
- "res/drawable-xxxhdpi-v4/design_ic_visibility_off.png": {
- "Size": 1201
- },
"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/abc_btn_borderless_material.xml": {
- "Size": 588
- },
- "res/drawable/abc_btn_check_material_anim.xml": {
- "Size": 816
- },
- "res/drawable/abc_btn_check_material.xml": {
- "Size": 464
- },
- "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_anim.xml": {
- "Size": 816
- },
- "res/drawable/abc_btn_radio_material.xml": {
- "Size": 464
- },
- "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/abc_ratingbar_material.xml": {
- "Size": 664
- },
- "res/drawable/abc_ratingbar_small_material.xml": {
- "Size": 664
- },
- "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_low.xml": {
- "Size": 532
- },
- "res/drawable/notification_bg.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/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/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml": {
"Size": 316
},
@@ -1723,53 +1717,20 @@
"res/interpolator/mtrl_fast_out_slow_in.xml": {
"Size": 144
},
- "res/interpolator/mtrl_linear_out_slow_in.xml": {
- "Size": 136
- },
"res/interpolator/mtrl_linear.xml": {
"Size": 132
},
- "res/layout-sw600dp-v13/design_layout_snackbar.xml": {
- "Size": 528
- },
- "res/layout-sw600dp-v13/mtrl_layout_snackbar.xml": {
- "Size": 528
- },
- "res/layout-v16/notification_template_custom_big.xml": {
- "Size": 3208
- },
- "res/layout-v21/abc_screen_toolbar.xml": {
- "Size": 1504
- },
- "res/layout-v21/fallbacktoolbardonotuse.xml": {
- "Size": 496
- },
- "res/layout-v21/notification_action_tombstone.xml": {
- "Size": 1228
- },
- "res/layout-v21/notification_action.xml": {
- "Size": 1052
- },
- "res/layout-v21/notification_template_custom_big.xml": {
- "Size": 2456
- },
- "res/layout-v21/notification_template_icon_group.xml": {
- "Size": 988
- },
- "res/layout-v21/toolbar.xml": {
- "Size": 496
- },
- "res/layout-v22/abc_alert_dialog_button_bar_material.xml": {
- "Size": 1584
+ "res/interpolator/mtrl_linear_out_slow_in.xml": {
+ "Size": 136
},
- "res/layout-v26/abc_screen_toolbar.xml": {
- "Size": 1560
+ "res/interpolator-v21/mtrl_fast_out_linear_in.xml": {
+ "Size": 400
},
- "res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml": {
- "Size": 1208
+ "res/interpolator-v21/mtrl_fast_out_slow_in.xml": {
+ "Size": 400
},
- "res/layout-watch-v20/abc_alert_dialog_title_material.xml": {
- "Size": 1352
+ "res/interpolator-v21/mtrl_linear_out_slow_in.xml": {
+ "Size": 400
},
"res/layout/abc_action_bar_title_item.xml": {
"Size": 872
@@ -1789,12 +1750,12 @@
"res/layout/abc_action_mode_close_item_material.xml": {
"Size": 840
},
- "res/layout/abc_activity_chooser_view_list_item.xml": {
- "Size": 1304
- },
"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
},
@@ -1834,12 +1795,12 @@
"res/layout/abc_screen_content_include.xml": {
"Size": 548
},
- "res/layout/abc_screen_simple_overlay_action_mode.xml": {
- "Size": 792
- },
"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
},
@@ -1873,12 +1834,12 @@
"res/layout/design_bottom_sheet_dialog.xml": {
"Size": 1184
},
- "res/layout/design_layout_snackbar_include.xml": {
- "Size": 1444
- },
"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
},
@@ -1888,6 +1849,9 @@
"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
},
@@ -1897,15 +1861,12 @@
"res/layout/design_navigation_item_subheader.xml": {
"Size": 564
},
- "res/layout/design_navigation_item.xml": {
- "Size": 536
+ "res/layout/design_navigation_menu.xml": {
+ "Size": 528
},
"res/layout/design_navigation_menu_item.xml": {
"Size": 856
},
- "res/layout/design_navigation_menu.xml": {
- "Size": 528
- },
"res/layout/design_text_input_password_icon.xml": {
"Size": 564
},
@@ -1921,35 +1882,35 @@
"res/layout/main.xml": {
"Size": 544
},
- "res/layout/mtrl_layout_snackbar_include.xml": {
- "Size": 1404
- },
"res/layout/mtrl_layout_snackbar.xml": {
"Size": 528
},
- "res/layout/notification_action_tombstone.xml": {
- "Size": 1332
+ "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_custom.xml": {
- "Size": 3216
- },
"res/layout/notification_template_big_media_narrow.xml": {
"Size": 1824
},
- "res/layout/notification_template_big_media.xml": {
- "Size": 1696
+ "res/layout/notification_template_big_media_narrow_custom.xml": {
+ "Size": 3216
},
"res/layout/notification_template_icon_group.xml": {
"Size": 392
@@ -1957,12 +1918,12 @@
"res/layout/notification_template_lines_media.xml": {
"Size": 2872
},
- "res/layout/notification_template_media_custom.xml": {
- "Size": 2756
- },
"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
},
@@ -1993,9 +1954,51 @@
"res/layout/toolbar.xml": {
"Size": 452
},
+ "res/layout-sw600dp-v13/design_layout_snackbar.xml": {
+ "Size": 528
+ },
+ "res/layout-sw600dp-v13/mtrl_layout_snackbar.xml": {
+ "Size": 528
+ },
+ "res/layout-v16/notification_template_custom_big.xml": {
+ "Size": 3208
+ },
+ "res/layout-v21/abc_screen_toolbar.xml": {
+ "Size": 1504
+ },
+ "res/layout-v21/fallbacktoolbardonotuse.xml": {
+ "Size": 496
+ },
+ "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-v21/toolbar.xml": {
+ "Size": 496
+ },
+ "res/layout-v22/abc_alert_dialog_button_bar_material.xml": {
+ "Size": 1584
+ },
+ "res/layout-v26/abc_screen_toolbar.xml": {
+ "Size": 1560
+ },
+ "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
+ },
"resources.arsc": {
"Size": 341040
}
},
- "PackageSize": 8517075
+ "PackageSize": 8627743
}
\ No newline at end of file