-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPhonesky-45.0.21-23.diff
2193 lines (2193 loc) · 273 KB
/
Phonesky-45.0.21-23.diff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
diff -Nupr play_45.0.21-23.orig/AndroidManifest.xml play_45.0.21-23/AndroidManifest.xml
--- play_45.0.21-23.orig/AndroidManifest.xml 2025-02-25 13:51:52.200114741 +0000
+++ play_45.0.21-23/AndroidManifest.xml 2025-02-25 13:51:53.946108493 +0000
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:compileSdkVersion="36" android:compileSdkVersionCodename="Baklava" emergencyInstaller="com.google.android.gms" package="com.android.vending" platformBuildVersionCode="36" platformBuildVersionName="Baklava">
+<uses-permission android:name="android.permission.FAKE_PACKAGE_SIGNATURE"/>
<uses-permission android:name="android.permission.READ_DEVICE_CONFIG"/>
<uses-permission android:name="android.permission.WRITE_DEVICE_CONFIG"/>
<uses-permission android:name="com.google.android.finsky.permission.DSE"/>
@@ -182,6 +183,7 @@
<uses-feature android:name="android.hardware.nfc" android:required="false"/>
<permission android:name="com.android.vending.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" android:protectionLevel="signature"/>
<application android:appComponentFactory="com.google.android.finsky.appcomponentfactory.PhoneskyAppComponentFactory" android:backupAgent="com.google.android.finsky.setup.VendingBackupAgent" android:enableOnBackInvokedCallback="true" android:extractNativeLibs="false" android:hardwareAccelerated="true" android:icon="@mipmap/ic_launcher_play_store" android:killAfterRestore="false" android:label="@string/APKTOOL_DUMMYVAL_0x7f140134" android:localeConfig="@xml/APKTOOL_DUMMYVAL_0x7f180010" android:name="com.google.android.finsky.application.classic.ClassicApplication" android:requestLegacyExternalStorage="true" android:requiredForAllUsers="true" android:restoreAnyVersion="true" android:restoreNeedsApplication="true" android:restrictedAccountType="com.google" android:roundIcon="@mipmap/ic_round_launcher_play_store" android:supportsRtl="true" android:usesCleartextTraffic="true">
+<meta-data android:name="fake-signature" android:value="@string/fake_signature"/>
<service android:enabled="false" android:exported="false" android:name="com.google.android.libraries.phenotype.registration.PhenotypeMetadataHolderService" android:process="">
<intent-filter>
<action android:name="com.google.android.libraries.phenotype.registration.PhenotypeMetadataHolderService"/>
@@ -409,9 +411,7 @@
<activity android:label="@string/APKTOOL_DUMMYVAL_0x7f140136" android:name="com.google.android.finsky.screenshotsactivity.ScreenshotsActivityV2" android:theme="@style/APKTOOL_DUMMYVAL_0x7f15046e"/>
<activity android:exported="false" android:name="com.google.android.finsky.multiinstall.MultiInstallActivity" android:theme="@style/APKTOOL_DUMMYVAL_0x7f150243"/>
<receiver android:exported="true" android:name="com.google.android.finsky.boothandler.BootCompletedReceiver">
- <intent-filter>
- <action android:name="android.intent.action.BOOT_COMPLETED"/>
- </intent-filter>
+<intent-filter/>
</receiver>
<receiver android:exported="false" android:name="com.google.android.finsky.rollbackmanager.RollbackReceiver"/>
<service android:exported="true" android:name="com.google.android.finsky.services.LicensingService" android:permission="com.android.vending.CHECK_LICENSE">
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0051.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0051.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0051.xml 2025-02-25 13:51:53.812108973 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0051.xml 2025-02-25 13:51:59.181089759 +0000
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.finsky.detailsmodules.features.modules.aboutauthorv2.view.AboutAuthorModuleV2View android:orientation="vertical" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0075" android:focusable="true" android:clickable="true" android:layout_width="fill_parent" android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:finsky="http://schemas.android.com/apk/res-auto">
- <com.google.android.finsky.uicomponentsmvc.clusterheader.view.ClusterHeaderViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0309" android:layout_width="fill_parent" android:layout_height="wrap_content" finsky:APKTOOL_DUMMYVAL_0x7f04058e="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.clusterheader.view.ClusterHeaderViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0309" android:layout_width="fill_parent" android:layout_height="wrap_content" />
<com.google.android.finsky.frameworkviews.SpannableEllipsizeTextView android:ellipsize="end" android:gravity="start" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0000" android:saveEnabled="false" android:layout_width="0.0dip" android:layout_height="wrap_content" android:textAlignment="viewStart" finsky:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0309" style="?APKTOOL_DUMMYVAL_0x7f0409ca" />
</com.google.android.finsky.detailsmodules.features.modules.aboutauthorv2.view.AboutAuthorModuleV2View>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0086.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0086.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0086.xml 2025-02-25 13:51:53.819108948 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0086.xml 2025-02-25 13:51:59.232089576 +0000
@@ -8,5 +8,5 @@
</RelativeLayout>
<com.google.android.finsky.frameworkviews.PhoneskyFifeImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0187" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f0705b6" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f0705b5" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07022d" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f07022c" android:layout_marginEnd="0.0dip" />
</LinearLayout>
- <com.google.android.finsky.uicomponentsmvc.buttongroup.view.StandardButtonGroupViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0182" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.buttongroup.view.StandardButtonGroupViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0182" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" />
</com.google.android.finsky.detailsmodules.features.modules.autoupdateonmetereddatacard.view.AutoUpdateOnMeteredDataCardModuleView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e00a8.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e00a8.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e00a8.xml 2025-02-25 13:51:53.824108930 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e00a8.xml 2025-02-25 13:51:58.909090732 +0000
@@ -6,6 +6,6 @@
<com.google.android.finsky.frameworkviews.PhoneskyFifeImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0c50" android:layout_width="72.0dip" android:layout_height="72.0dip" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:adjustViewBounds="true" android:importantForAccessibility="no" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
<com.google.android.play.layout.PlayTextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a28" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0210" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070979" android:textAlignment="textStart" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0211" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0c50" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" style="?APKTOOL_DUMMYVAL_0x7f040a09" />
<com.google.android.play.layout.PlayTextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:ellipsize="end" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b020f" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070979" android:textAlignment="textStart" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0211" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0c50" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0210" style="?APKTOOL_DUMMYVAL_0x7f0409d4" />
- <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0211" android:layout_width="wrap_content" android:layout_height="wrap_content" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0211" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</android.support.constraint.ConstraintLayout>
</com.google.android.finsky.detailsmodules.features.modules.crosssellbundles.view.BookSeriesBundleView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e00ed.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e00ed.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e00ed.xml 2025-02-25 13:51:53.814108965 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e00ed.xml 2025-02-25 13:51:59.079090124 +0000
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<merge
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:finsky="http://schemas.android.com/apk/res-auto">
- <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0c27" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070657" android:layout_marginStart="0.0dip" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" finsky:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0a84" finsky:APKTOOL_DUMMYVAL_0x7f040598="APKTOOL_DUMMYVAL_0x7f0b0cbe" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="@id/APKTOOL_DUMMYVAL_0x7f0b0cd7" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0143" />
- <com.google.android.finsky.uicomponentsmvc.actionbuttons.view.StandardActionButtonGroupViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0a84" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070657" finsky:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f04058d="@id/APKTOOL_DUMMYVAL_0x7f0b048c" finsky:APKTOOL_DUMMYVAL_0x7f040598="APKTOOL_DUMMYVAL_0x7f0b0cbe" finsky:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0c27" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0143" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0c27" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070657" android:layout_marginStart="0.0dip" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" />
+ <com.google.android.finsky.uicomponentsmvc.actionbuttons.view.StandardActionButtonGroupViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0a84" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070657" />
</merge>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e00ee.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e00ee.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e00ee.xml 2025-02-25 13:51:53.832108901 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e00ee.xml 2025-02-25 13:51:59.288089376 +0000
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<merge
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:finsky="http://schemas.android.com/apk/res-auto">
- <com.google.android.finsky.uicomponentsmvc.actionbuttons.view.StandardActionButtonGroupViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0a84" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070657" finsky:APKTOOL_DUMMYVAL_0x7f04058d="@id/APKTOOL_DUMMYVAL_0x7f0b048c" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="@id/APKTOOL_DUMMYVAL_0x7f0b0cd7" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0143" />
- <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0c27" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" finsky:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f04058d="@id/APKTOOL_DUMMYVAL_0x7f0b048c" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="@id/APKTOOL_DUMMYVAL_0x7f0b0cd7" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0a84" />
+ <com.google.android.finsky.uicomponentsmvc.actionbuttons.view.StandardActionButtonGroupViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0a84" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070657" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0c27" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" />
</merge>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e00f7.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e00f7.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e00f7.xml 2025-02-25 13:51:53.817108955 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e00f7.xml 2025-02-25 13:51:59.127089952 +0000
@@ -2,9 +2,9 @@
<com.google.android.finsky.streammvc.features.controllers.playpasscontentlaunchercluster.view.ContentLauncherAppRowView android:gravity="center_vertical" android:orientation="vertical" android:background="@drawable/APKTOOL_DUMMYVAL_0x7f080260" android:focusable="true" android:clickable="true" android:layout_width="fill_parent" android:layout_height="wrap_content" android:foreground="@drawable/APKTOOL_DUMMYVAL_0x7f0805a4" android:paddingStart="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1" android:paddingEnd="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
<androidx.constraintlayout.widget.ConstraintLayout android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0158" android:layout_width="fill_parent" android:layout_height="wrap_content">
- <com.google.android.finsky.uicomponentsmvc.thumbnail.view.InstallAwareThumbnailViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f0701f6" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f0701f6" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0053" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.thumbnail.view.InstallAwareThumbnailViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f0701f6" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f0701f6" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a28" android:ellipsize="none" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0053" android:paddingBottom="0.0dip" android:fadingEdge="horizontal" android:fadingEdgeLength="@dimen/APKTOOL_DUMMYVAL_0x7f0701f5" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="wrap_content" android:layout_marginBottom="0.0dip" android:singleLine="true" android:includeFontPadding="false" android:requiresFadingEdge="horizontal" android:paddingEnd="@dimen/APKTOOL_DUMMYVAL_0x7f0701f5" app:APKTOOL_DUMMYVAL_0x7f040588="@id/APKTOOL_DUMMYVAL_0x7f0b07c3" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/button" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" app:APKTOOL_DUMMYVAL_0x7f0405a5="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" app:APKTOOL_DUMMYVAL_0x7f0405a7="APKTOOL_DUMMYVAL_0x7f0b0976" style="?APKTOOL_DUMMYVAL_0x7f040a08" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b07c3" android:paddingTop="0.0dip" android:fadingEdge="horizontal" android:fadingEdgeLength="@dimen/APKTOOL_DUMMYVAL_0x7f0701f5" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070efb" android:maxLines="1" android:singleLine="true" android:requiresFadingEdge="horizontal" app:APKTOOL_DUMMYVAL_0x7f040587="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" app:APKTOOL_DUMMYVAL_0x7f0405a1="@id/APKTOOL_DUMMYVAL_0x7f0b0053" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0053" style="?APKTOOL_DUMMYVAL_0x7f0409d4" />
- <com.google.android.finsky.uicomponentsmvc.button.view.SmallButtonViewStub android:id="@id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0053" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.SmallButtonViewStub android:id="@id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</androidx.constraintlayout.widget.ConstraintLayout>
</com.google.android.finsky.streammvc.features.controllers.playpasscontentlaunchercluster.view.ContentLauncherAppRowView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e00fe.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e00fe.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e00fe.xml 2025-02-25 13:51:53.811108976 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e00fe.xml 2025-02-25 13:51:58.918090700 +0000
@@ -7,7 +7,7 @@
<com.google.android.play.layout.PlayTextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a28" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0380" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070979" android:textAlignment="textStart" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" style="?APKTOOL_DUMMYVAL_0x7f040a09" />
<com.google.android.play.layout.PlayTextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:ellipsize="end" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b037f" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070979" android:maxLines="1" android:textAlignment="textStart" android:layout_marginStart="0.0dip" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0380" style="?APKTOOL_DUMMYVAL_0x7f0409d4" />
<com.google.android.play.layout.PlayTextView android:textColor="?APKTOOL_DUMMYVAL_0x7f0400ed" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b037e" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070979" android:textAlignment="textStart" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b037f" style="?APKTOOL_DUMMYVAL_0x7f0409d4" />
- <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b037c" android:layout_width="wrap_content" android:layout_height="wrap_content" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b037c" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</androidx.constraintlayout.widget.ConstraintLayout>
<android.support.v7.widget.RecyclerView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0384" android:scrollbars="none" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.0" />
</LinearLayout>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e014e.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e014e.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e014e.xml 2025-02-25 13:51:53.807108990 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e014e.xml 2025-02-25 13:51:58.901090761 +0000
@@ -11,8 +11,8 @@
<View android:id="@id/APKTOOL_DUMMYVAL_0x7f0b095d" android:background="@color/APKTOOL_DUMMYVAL_0x7f0605f2" android:layout_width="fill_parent" android:layout_height="1.0dip" />
<com.caverock.androidsvg.SVGImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b095f" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070b3f" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070b3e" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" android:scaleType="center" android:contentDescription="@null" app:APKTOOL_DUMMYVAL_0x7f040587="@id/APKTOOL_DUMMYVAL_0x7f0b095e" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="@id/APKTOOL_DUMMYVAL_0x7f0b095d" app:APKTOOL_DUMMYVAL_0x7f04098a="@drawable/APKTOOL_DUMMYVAL_0x7f080403" />
<TextView android:gravity="center" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b095e" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" android:text="@string/APKTOOL_DUMMYVAL_0x7f140bb2" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070657" android:layout_marginEnd="0.0dip" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b095f" app:APKTOOL_DUMMYVAL_0x7f0405a5="@id/APKTOOL_DUMMYVAL_0x7f0b095d" style="?APKTOOL_DUMMYVAL_0x7f040a06" />
- <com.google.android.finsky.uicomponentsmvc.chip.view.StandardChipViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b096f" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070977" app:APKTOOL_DUMMYVAL_0x7f040086="false" app:APKTOOL_DUMMYVAL_0x7f0405a1="@id/APKTOOL_DUMMYVAL_0x7f0b095e" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b095e" />
- <com.google.android.finsky.uicomponentsmvc.chip.view.StandardChipViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0969" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" app:APKTOOL_DUMMYVAL_0x7f040086="false" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b096f" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b095e" />
+ <com.google.android.finsky.uicomponentsmvc.chip.view.StandardChipViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b096f" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070977" />
+ <com.google.android.finsky.uicomponentsmvc.chip.view.StandardChipViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0969" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" />
</androidx.constraintlayout.widget.ConstraintLayout>
<View android:layout_width="fill_parent" android:layout_height="0.0dip" android:layout_weight="1.0" />
<LinearLayout android:id="@id/APKTOOL_DUMMYVAL_0x7f0b04a3" android:paddingBottom="8.0dip" android:visibility="invisible" android:layout_width="wrap_content" android:layout_height="wrap_content">
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0164.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0164.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0164.xml 2025-02-25 13:51:53.830108908 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0164.xml 2025-02-25 13:51:59.310089297 +0000
@@ -6,6 +6,6 @@
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0338" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/APKTOOL_DUMMYVAL_0x7f140502" android:textAlignment="viewStart" style="?APKTOOL_DUMMYVAL_0x7f040a08" />
</LinearLayout>
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0336" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f0701d1" android:layout_alignParentTop="true" android:textAlignment="viewStart" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0330" style="?APKTOOL_DUMMYVAL_0x7f040a08" />
- <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0334" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f0701d0" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070dfa" app:APKTOOL_DUMMYVAL_0x7f04058d="@id/APKTOOL_DUMMYVAL_0x7f0b0331" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0336" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0334" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f0701d0" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070dfa" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:textColorLink="?APKTOOL_DUMMYVAL_0x7f04007a" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0331" android:paddingBottom="@dimen/APKTOOL_DUMMYVAL_0x7f07038d" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f0701d1" android:text="@string/APKTOOL_DUMMYVAL_0x7f14030f" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0334" style="?APKTOOL_DUMMYVAL_0x7f040a08" />
</androidx.constraintlayout.widget.ConstraintLayout>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0165.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0165.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0165.xml 2025-02-25 13:51:53.831108905 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0165.xml 2025-02-25 13:51:58.968090521 +0000
@@ -3,6 +3,6 @@
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.v7.widget.AppCompatEditText android:theme="@style/APKTOOL_DUMMYVAL_0x7f15020b" android:state_selected="false" android:gravity="start" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0333" android:focusable="true" android:focusableInTouchMode="true" android:layout_width="0.0dip" android:layout_height="wrap_content" android:minHeight="@dimen/APKTOOL_DUMMYVAL_0x7f0703ec" android:text="@string/APKTOOL_DUMMYVAL_0x7f140310" android:inputType="textEmailAddress" android:imeOptions="actionDone" android:textCursorDrawable="@drawable/APKTOOL_DUMMYVAL_0x7f0802b9" android:textAlignment="viewStart" android:backgroundTint="?APKTOOL_DUMMYVAL_0x7f04007a" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" style="?APKTOOL_DUMMYVAL_0x7f040a06" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0339" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f0701d3" android:text="@string/APKTOOL_DUMMYVAL_0x7f14030e" android:textAlignment="viewStart" app:APKTOOL_DUMMYVAL_0x7f0405a1="@id/APKTOOL_DUMMYVAL_0x7f0b0333" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0333" style="?APKTOOL_DUMMYVAL_0x7f040a08" />
- <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0335" android:layout_width="wrap_content" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f0701d0" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070d14" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0339" />
- <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b032f" android:layout_width="wrap_content" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f0701d0" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070d14" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070d14" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0335" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0339" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0335" android:layout_width="wrap_content" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f0701d0" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070d14" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b032f" android:layout_width="wrap_content" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f0701d0" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070d14" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070d14" />
</android.support.constraint.ConstraintLayout>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e016f.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e016f.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e016f.xml 2025-02-25 13:51:53.827108919 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e016f.xml 2025-02-25 13:51:59.245089530 +0000
@@ -6,6 +6,6 @@
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:ellipsize="end" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b04ba" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f07124e" android:maxLines="2" app:APKTOOL_DUMMYVAL_0x7f040588="@id/APKTOOL_DUMMYVAL_0x7f0b04b6" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a6="0.0" app:APKTOOL_DUMMYVAL_0x7f0405a7="APKTOOL_DUMMYVAL_0x7f0b0976" style="?APKTOOL_DUMMYVAL_0x7f0409d4" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a28" android:ellipsize="end" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b04b6" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f07124e" android:maxLines="2" app:APKTOOL_DUMMYVAL_0x7f040588="@id/APKTOOL_DUMMYVAL_0x7f0b074f" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b04ba" style="?APKTOOL_DUMMYVAL_0x7f0409ca" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:ellipsize="end" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b074f" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:maxLines="2" app:APKTOOL_DUMMYVAL_0x7f040588="@id/APKTOOL_DUMMYVAL_0x7f0b04b4" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b04b6" style="?APKTOOL_DUMMYVAL_0x7f0409ca" />
- <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b04b4" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b04b4" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" />
</androidx.constraintlayout.widget.ConstraintLayout>
</com.google.android.finsky.featureviews.liveops.EventView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0263.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0263.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0263.xml 2025-02-25 13:51:53.814108965 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0263.xml 2025-02-25 13:51:58.984090464 +0000
@@ -2,10 +2,10 @@
<com.google.android.finsky.toolbarframework.toolbars.itemtoolbarwithactionbutton.view.ItemToolbarWithActionButton android:layout_gravity="center_vertical" android:layout_width="fill_parent" android:layout_height="?APKTOOL_DUMMYVAL_0x7f040a6a" finsky:APKTOOL_DUMMYVAL_0x7f040240="0.0dip"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:finsky="http://schemas.android.com/apk/res-auto">
<androidx.constraintlayout.widget.ConstraintLayout android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0dfb" android:layout_width="fill_parent" android:layout_height="fill_parent">
- <com.google.android.finsky.uicomponentsmvc.thumbnail.view.InstallAwareThumbnailViewStub android:layout_gravity="center_vertical" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0dce" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070624" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070623" android:layout_marginStart="0.0dip" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070625" finsky:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.thumbnail.view.InstallAwareThumbnailViewStub android:layout_gravity="center_vertical" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0dce" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070624" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070623" android:layout_marginStart="0.0dip" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070625" />
<com.google.android.play.layout.PlayTextView android:ellipsize="end" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0053" android:layout_width="0.0dip" android:layout_height="wrap_content" android:maxLines="1" android:paddingStart="@dimen/APKTOOL_DUMMYVAL_0x7f070ef2" android:paddingEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070ef2" finsky:APKTOOL_DUMMYVAL_0x7f040588="@id/APKTOOL_DUMMYVAL_0x7f0b0d06" finsky:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b00c4" finsky:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0dce" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a7="APKTOOL_DUMMYVAL_0x7f0b0976" style="?APKTOOL_DUMMYVAL_0x7f040a03" />
<com.google.android.play.layout.StarRatingBar android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0b0e" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070ef2" android:layout_marginEnd="0.0dip" finsky:APKTOOL_DUMMYVAL_0x7f040210="true" finsky:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0053" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" style="@style/APKTOOL_DUMMYVAL_0x7f15037c" />
<com.google.android.play.layout.PlayTextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:ellipsize="end" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0d06" android:layout_width="wrap_content" android:layout_height="wrap_content" android:maxLines="1" android:paddingStart="@dimen/APKTOOL_DUMMYVAL_0x7f070ef2" android:paddingEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070ef2" finsky:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0dce" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0053" style="?APKTOOL_DUMMYVAL_0x7f0409d4" />
- <com.google.android.finsky.uicomponentsmvc.actionbuttons.view.SmallActionButtonGroupViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b00c4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070622" finsky:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.actionbuttons.view.SmallActionButtonGroupViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b00c4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070622" />
</androidx.constraintlayout.widget.ConstraintLayout>
</com.google.android.finsky.toolbarframework.toolbars.itemtoolbarwithactionbutton.view.ItemToolbarWithActionButton>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0271.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0271.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0271.xml 2025-02-25 13:51:53.812108973 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0271.xml 2025-02-25 13:51:59.255089494 +0000
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.finsky.kidsflagitempage.view.KidsFlagItemTitleView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0de7" android:layout_width="fill_parent" android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:finsky="http://schemas.android.com/apk/res-auto">
- <com.google.android.finsky.uicomponentsmvc.thumbnail.view.ThumbnailImageViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070386" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070386" android:layout_margin="@dimen/APKTOOL_DUMMYVAL_0x7f070385" finsky:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0053" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.thumbnail.view.ThumbnailImageViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070386" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070386" android:layout_margin="@dimen/APKTOOL_DUMMYVAL_0x7f070385" />
<TextView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0053" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f07093f" android:layout_height="wrap_content" android:maxLines="2" android:textAlignment="viewStart" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070385" finsky:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" />
<TextView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0159" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f07093f" android:layout_height="wrap_content" android:maxLines="2" android:textAlignment="viewStart" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070385" finsky:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="@id/APKTOOL_DUMMYVAL_0x7f0b0053" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0053" />
</com.google.android.finsky.kidsflagitempage.view.KidsFlagItemTitleView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0277.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0277.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0277.xml 2025-02-25 13:51:53.808108987 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0277.xml 2025-02-25 13:51:59.141089902 +0000
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.finsky.detailsmodules.features.modules.kidsinlinedetailstitle.view.KidsInlineDetailsTitleModuleView android:layout_width="fill_parent" android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:finsky="http://schemas.android.com/apk/res-auto">
- <com.google.android.finsky.uicomponentsmvc.thumbnail.view.InstallAwareThumbnailViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f071089" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f071089" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f0705d0" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.thumbnail.view.InstallAwareThumbnailViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f071089" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f071089" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f0705d0" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1" />
<TextView android:textAppearance="@style/APKTOOL_DUMMYVAL_0x7f150292" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0053" android:layout_width="0.0dip" android:layout_height="wrap_content" android:maxLines="2" android:textAlignment="viewStart" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f0705d0" finsky:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0c22" finsky:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" />
<TextView android:textAppearance="@style/APKTOOL_DUMMYVAL_0x7f150294" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b03f0" android:layout_width="0.0dip" android:layout_height="wrap_content" android:maxLines="1" android:textAlignment="viewStart" finsky:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0c22" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="@id/APKTOOL_DUMMYVAL_0x7f0b0053" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0053" />
<com.google.android.finsky.frameworkviews.ExtraLabelsSectionView android:orientation="horizontal" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0157" android:layout_width="0.0dip" android:layout_height="wrap_content" android:singleLine="true" android:requiresFadingEdge="horizontal" finsky:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0c22" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="@id/APKTOOL_DUMMYVAL_0x7f0b0053" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b03f0">
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0278.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0278.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0278.xml 2025-02-25 13:51:53.821108940 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0278.xml 2025-02-25 13:51:59.263089465 +0000
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.finsky.detailsmodules.features.modules.kidsinlinedetailstitle.view.KidsInlineDetailsTitleModuleView android:layout_width="fill_parent" android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:finsky="http://schemas.android.com/apk/res-auto">
- <com.google.android.finsky.uicomponentsmvc.thumbnail.view.InstallAwareThumbnailViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f071089" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f071089" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f0705d0" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.thumbnail.view.InstallAwareThumbnailViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f071089" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f071089" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f0705d0" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1" />
<TextView android:textAppearance="@style/APKTOOL_DUMMYVAL_0x7f150292" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0053" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f07093f" android:layout_height="wrap_content" android:maxLines="2" android:textAlignment="viewStart" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f0705d0" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1" finsky:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" />
<TextView android:textAppearance="@style/APKTOOL_DUMMYVAL_0x7f150294" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b03f0" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f07093f" android:layout_height="wrap_content" android:maxLines="1" android:textAlignment="viewStart" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1" finsky:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="@id/APKTOOL_DUMMYVAL_0x7f0b0053" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0053" />
<com.google.android.finsky.frameworkviews.ExtraLabelsSectionView android:orientation="horizontal" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0157" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" android:requiresFadingEdge="horizontal" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="@id/APKTOOL_DUMMYVAL_0x7f0b03f0" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b03f0">
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0299.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0299.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0299.xml 2025-02-25 13:51:53.821108940 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0299.xml 2025-02-25 13:51:59.170089798 +0000
@@ -15,7 +15,7 @@
</LinearLayout>
</LinearLayout>
<com.google.android.play.layout.PlayTextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b074f" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:maxLines="3" finsky:APKTOOL_DUMMYVAL_0x7f040588="@id/APKTOOL_DUMMYVAL_0x7f0b04b4" finsky:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f040597="0.0" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0aeb" style="?APKTOOL_DUMMYVAL_0x7f0409ca" />
- <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b04b5" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" finsky:APKTOOL_DUMMYVAL_0x7f040441="@id/APKTOOL_DUMMYVAL_0x7f0b04b4" finsky:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f040597="0.0" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b04b5" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</androidx.constraintlayout.widget.ConstraintLayout>
</LinearLayout>
</com.google.android.finsky.streammvc.features.controllers.liveops.view.LiveOpsSingleCardContentView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e02e8.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e02e8.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e02e8.xml 2025-02-25 13:51:53.809108983 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e02e8.xml 2025-02-25 13:51:59.200089691 +0000
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.finsky.uicomponentsmvc.metadatabar.view.MetadataBarView android:orientation="horizontal" android:focusable="false" android:layout_width="fill_parent" android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:finsky="http://schemas.android.com/apk/res-auto">
- <com.google.android.finsky.uicomponentsmvc.thumbnail.view.InstallAwareThumbnailViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0664" android:visibility="gone" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f07097e" android:layout_height="0.0dip" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" finsky:APKTOOL_DUMMYVAL_0x7f040086="false" finsky:APKTOOL_DUMMYVAL_0x7f040441="@id/APKTOOL_DUMMYVAL_0x7f0b0663" />
- <com.google.android.finsky.uicomponentsmvc.thumbnail.view.ThumbnailImageViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0154" android:visibility="gone" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f07097e" android:layout_height="0.0dip" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" finsky:APKTOOL_DUMMYVAL_0x7f040086="false" finsky:APKTOOL_DUMMYVAL_0x7f040441="@id/APKTOOL_DUMMYVAL_0x7f0b0151" />
+ <com.google.android.finsky.uicomponentsmvc.thumbnail.view.InstallAwareThumbnailViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0664" android:visibility="gone" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f07097e" android:layout_height="0.0dip" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" />
+ <com.google.android.finsky.uicomponentsmvc.thumbnail.view.ThumbnailImageViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0154" android:visibility="gone" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f07097e" android:layout_height="0.0dip" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" />
<com.google.android.finsky.uicomponentsmvc.metadata.view.MetadataViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b07c3" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_weight="1.0" />
<ViewStub android:layout_gravity="center_vertical" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0262" android:visibility="gone" android:layout="@layout/APKTOOL_DUMMYVAL_0x7f0e04de" android:inflatedId="@id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070977" />
</com.google.android.finsky.uicomponentsmvc.metadatabar.view.MetadataBarView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0316.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0316.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0316.xml 2025-02-25 13:51:53.830108908 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0316.xml 2025-02-25 13:51:59.046090242 +0000
@@ -2,12 +2,12 @@
<com.google.android.finsky.myappsv3shared.applist.view.MyAppsV3AppRowView android:gravity="center_vertical" android:orientation="vertical" android:background="@drawable/APKTOOL_DUMMYVAL_0x7f0804eb" android:focusable="true" android:clickable="true" android:layout_width="fill_parent" android:layout_height="wrap_content" android:foreground="@drawable/APKTOOL_DUMMYVAL_0x7f0805a4" style="@style/APKTOOL_DUMMYVAL_0x7f150397"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
<androidx.constraintlayout.widget.ConstraintLayout android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0158" android:layout_width="fill_parent" android:layout_height="wrap_content" android:paddingStart="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1" android:paddingEnd="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1">
- <com.google.android.finsky.uicomponentsmvc.thumbnail.view.InstallAwareThumbnailViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f07108c" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f07108c" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0053" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.thumbnail.view.InstallAwareThumbnailViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f07108c" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f07108c" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a28" android:ellipsize="end" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0053" android:paddingBottom="0.0dip" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="wrap_content" android:layout_marginBottom="0.0dip" android:singleLine="true" android:includeFontPadding="false" app:APKTOOL_DUMMYVAL_0x7f040588="@id/APKTOOL_DUMMYVAL_0x7f0b07c3" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0f1b" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" app:APKTOOL_DUMMYVAL_0x7f0405a5="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" app:APKTOOL_DUMMYVAL_0x7f0405a7="APKTOOL_DUMMYVAL_0x7f0b0976" style="?APKTOOL_DUMMYVAL_0x7f040a08" />
<com.caverock.androidsvg.SVGImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0f08" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070979" app:APKTOOL_DUMMYVAL_0x7f040587="@id/APKTOOL_DUMMYVAL_0x7f0b07c3" app:APKTOOL_DUMMYVAL_0x7f04058c="1:1" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b07c3" app:APKTOOL_DUMMYVAL_0x7f0405a1="@id/APKTOOL_DUMMYVAL_0x7f0b0053" app:APKTOOL_DUMMYVAL_0x7f0405a5="@id/APKTOOL_DUMMYVAL_0x7f0b07c3" app:APKTOOL_DUMMYVAL_0x7f04098a="@raw/APKTOOL_DUMMYVAL_0x7f13014f" app:APKTOOL_DUMMYVAL_0x7f04098b="?APKTOOL_DUMMYVAL_0x7f0402ec" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:ellipsize="end" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b07c3" android:paddingTop="0.0dip" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070efb" android:maxLines="1" android:singleLine="true" app:APKTOOL_DUMMYVAL_0x7f040587="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" app:APKTOOL_DUMMYVAL_0x7f04058d="@id/APKTOOL_DUMMYVAL_0x7f0b0053" app:APKTOOL_DUMMYVAL_0x7f040599="1.0" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0f08" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0053" style="?APKTOOL_DUMMYVAL_0x7f0409d4" />
<ImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0f1b" android:layout_width="wrap_content" android:layout_height="wrap_content" android:tint="?APKTOOL_DUMMYVAL_0x7f0403e7" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/button" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0053" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
- <com.google.android.finsky.uicomponentsmvc.button.view.SmallButtonViewStub android:id="@id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0b58" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0f1b" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.SmallButtonViewStub android:id="@id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0b58" android:background="@drawable/APKTOOL_DUMMYVAL_0x7f080545" android:focusable="true" android:layout_width="24.0dip" android:layout_height="24.0dip" android:tint="?APKTOOL_DUMMYVAL_0x7f0403e7" android:contentDescription="@string/APKTOOL_DUMMYVAL_0x7f140992" android:layout_marginStart="0.0dip" android:layout_marginEnd="16.0dip" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0282" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/button" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04088c="@drawable/APKTOOL_DUMMYVAL_0x7f080431" />
<ImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0282" android:background="@drawable/APKTOOL_DUMMYVAL_0x7f080545" android:focusable="true" android:layout_width="24.0dip" android:layout_height="24.0dip" android:tint="?APKTOOL_DUMMYVAL_0x7f0403e7" android:contentDescription="@string/APKTOOL_DUMMYVAL_0x7f140991" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b02d5" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0b58" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04088c="@drawable/APKTOOL_DUMMYVAL_0x7f08058b" />
<CheckBox android:id="@id/APKTOOL_DUMMYVAL_0x7f0b02d5" android:padding="0.0dip" android:layout_width="wrap_content" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:drawablePadding="0.0dip" android:layout_marginStart="0.0dip" android:layout_marginEnd="-4.0dip" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0282" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e033f.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e033f.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e033f.xml 2025-02-25 13:51:53.818108951 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e033f.xml 2025-02-25 13:51:59.146089884 +0000
@@ -4,7 +4,7 @@
<com.caverock.androidsvg.SVGImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b095f" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070b3f" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070b3e" android:scaleType="center" android:contentDescription="@null" app:APKTOOL_DUMMYVAL_0x7f040587="@id/APKTOOL_DUMMYVAL_0x7f0b095e" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04098a="@drawable/APKTOOL_DUMMYVAL_0x7f080403" />
<TextView android:gravity="center" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b095e" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/APKTOOL_DUMMYVAL_0x7f140bb2" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070657" android:layout_marginEnd="0.0dip" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b095f" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" style="?APKTOOL_DUMMYVAL_0x7f040a06" />
<LinearLayout android:gravity="center_vertical" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124e" android:minHeight="@dimen/APKTOOL_DUMMYVAL_0x7f070550" app:APKTOOL_DUMMYVAL_0x7f0405a1="@id/APKTOOL_DUMMYVAL_0x7f0b095e" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b095e">
- <com.google.android.finsky.uicomponentsmvc.chip.view.StandardChipViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b096f" android:layout_width="wrap_content" android:layout_height="wrap_content" app:APKTOOL_DUMMYVAL_0x7f040086="false" />
- <com.google.android.finsky.uicomponentsmvc.chip.view.StandardChipViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0969" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" app:APKTOOL_DUMMYVAL_0x7f040086="false" />
+ <com.google.android.finsky.uicomponentsmvc.chip.view.StandardChipViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b096f" android:layout_width="wrap_content" android:layout_height="wrap_content" />
+ <com.google.android.finsky.uicomponentsmvc.chip.view.StandardChipViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0969" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0366.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0366.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0366.xml 2025-02-25 13:51:53.810108980 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0366.xml 2025-02-25 13:51:58.957090560 +0000
@@ -3,5 +3,5 @@
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
<com.google.android.finsky.uicomponentsmvc.thumbnail.view.ThumbnailImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070b2e" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070b2e" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
<TextView android:ellipsize="end" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0053" android:layout_width="0.0dip" android:layout_height="wrap_content" android:maxLines="1" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070657" app:APKTOOL_DUMMYVAL_0x7f040587="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0a84" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" app:APKTOOL_DUMMYVAL_0x7f0405a5="@id/APKTOOL_DUMMYVAL_0x7f0b0dcc" style="?APKTOOL_DUMMYVAL_0x7f040a02" />
- <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0a84" android:layout_width="wrap_content" android:layout_height="wrap_content" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0a84" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</com.google.android.finsky.streammvc.features.controllers.orderhistory.view.OrderHistoryBundleItemRowViewV2>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0371.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0371.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0371.xml 2025-02-25 13:51:53.819108948 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0371.xml 2025-02-25 13:51:58.941090618 +0000
@@ -4,6 +4,6 @@
<include android:id="@id/APKTOOL_DUMMYVAL_0x7f0b05c2" android:layout_width="fill_parent" android:layout_height="1.0dip" android:contentDescription="@null" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" layout="@layout/APKTOOL_DUMMYVAL_0x7f0e020e" />
<com.caverock.androidsvg.SVGImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b064c" android:focusable="true" android:clickable="true" android:layout_width="24.0dip" android:layout_height="24.0dip" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" android:scaleType="fitXY" android:contentDescription="" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070657" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0def" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04098a="@raw/APKTOOL_DUMMYVAL_0x7f1300e0" app:APKTOOL_DUMMYVAL_0x7f04098b="?APKTOOL_DUMMYVAL_0x7f0403e7" />
<TextView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0def" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" android:text="You can also get updates from the connected device. Your device will share a list of your installed apps to see if updates are available on the connected device." android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070657" app:APKTOOL_DUMMYVAL_0x7f040581="true" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f040597="0.0" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b064c" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" style="?APKTOOL_DUMMYVAL_0x7f040a08" />
- <com.google.android.finsky.uicomponentsmvc.button.view.SmallButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0079" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070977" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b040e" app:APKTOOL_DUMMYVAL_0x7f040597="0.0" app:APKTOOL_DUMMYVAL_0x7f040598="APKTOOL_DUMMYVAL_0x7f0b0976" app:APKTOOL_DUMMYVAL_0x7f0405a1="@id/APKTOOL_DUMMYVAL_0x7f0b0def" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0def" app:APKTOOL_DUMMYVAL_0x7f0405a6="0.0" />
- <com.google.android.finsky.uicomponentsmvc.button.view.SmallButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b040e" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070977" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058e="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0079" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0def" app:APKTOOL_DUMMYVAL_0x7f0405a6="0.0" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.SmallButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0079" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070977" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.SmallButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b040e" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070977" />
</com.google.android.finsky.p2pui.transfer.view.P2pAppUpdatesConsentView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0378.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0378.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0378.xml 2025-02-25 13:51:53.815108962 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0378.xml 2025-02-25 13:51:59.113090002 +0000
@@ -6,6 +6,6 @@
<com.caverock.androidsvg.SVGImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b02bd" android:layout_width="0.0dip" android:layout_height="0.0dip" app:APKTOOL_DUMMYVAL_0x7f040580="true" app:APKTOOL_DUMMYVAL_0x7f040581="true" app:APKTOOL_DUMMYVAL_0x7f040588="@id/APKTOOL_DUMMYVAL_0x7f0b0681" app:APKTOOL_DUMMYVAL_0x7f04058c="1:1" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f040594="@dimen/APKTOOL_DUMMYVAL_0x7f0706e7" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0cd6" app:APKTOOL_DUMMYVAL_0x7f0405a6="0.0" app:APKTOOL_DUMMYVAL_0x7f0405a7="APKTOOL_DUMMYVAL_0x7f0b0976" app:APKTOOL_DUMMYVAL_0x7f0405ab="@dimen/APKTOOL_DUMMYVAL_0x7f0706e7" app:APKTOOL_DUMMYVAL_0x7f04098a="@drawable/APKTOOL_DUMMYVAL_0x7f0804be" />
<TextView android:gravity="center" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0681" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" android:text="@string/APKTOOL_DUMMYVAL_0x7f140822" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070657" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070657" app:APKTOOL_DUMMYVAL_0x7f040588="@id/APKTOOL_DUMMYVAL_0x7f0b0682" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b02bd" style="?APKTOOL_DUMMYVAL_0x7f0409ea" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:gravity="center" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0682" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124e" android:text="@string/APKTOOL_DUMMYVAL_0x7f140823" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070657" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070657" app:APKTOOL_DUMMYVAL_0x7f040588="@id/APKTOOL_DUMMYVAL_0x7f0b0367" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0681" style="?APKTOOL_DUMMYVAL_0x7f0409ca" />
- <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0367" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f0706e6" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0682" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0367" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f0706e6" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" />
</androidx.constraintlayout.widget.ConstraintLayout>
</com.google.android.finsky.p2pui.permission.view.P2pPermissionRequestView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e037c.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e037c.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e037c.xml 2025-02-25 13:51:53.836108887 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e037c.xml 2025-02-25 13:51:59.062090185 +0000
@@ -11,6 +11,6 @@
<TextView android:ellipsize="none" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0d11" android:fadingEdge="horizontal" android:fadingEdgeLength="@dimen/APKTOOL_DUMMYVAL_0x7f070bce" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070efb" android:singleLine="true" android:requiresFadingEdge="horizontal" android:layout_marginStart="0.0dip" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070bd0" app:APKTOOL_DUMMYVAL_0x7f040581="true" app:APKTOOL_DUMMYVAL_0x7f040587="@id/APKTOOL_DUMMYVAL_0x7f0b02be" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b00c4" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0f09" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0def" style="?APKTOOL_DUMMYVAL_0x7f0409d4" />
<TextView android:ellipsize="none" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b04f6" android:visibility="gone" android:fadingEdge="horizontal" android:fadingEdgeLength="@dimen/APKTOOL_DUMMYVAL_0x7f070bce" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070efb" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:singleLine="true" android:requiresFadingEdge="horizontal" android:layout_marginStart="0.0dip" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070bd0" app:APKTOOL_DUMMYVAL_0x7f040581="true" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b00c4" app:APKTOOL_DUMMYVAL_0x7f040597="0.0" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0dec" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0d11" style="?APKTOOL_DUMMYVAL_0x7f0409d4" />
<androidx.constraintlayout.widget.Guideline android:orientation="vertical" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b00c7" android:layout_width="wrap_content" android:layout_height="wrap_content" app:APKTOOL_DUMMYVAL_0x7f040590="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1" />
- <com.google.android.finsky.uicomponentsmvc.button.view.SmallButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b00c4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="0.0dip" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" app:APKTOOL_DUMMYVAL_0x7f040587="@id/APKTOOL_DUMMYVAL_0x7f0b02be" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0284" app:APKTOOL_DUMMYVAL_0x7f0405a5="@id/APKTOOL_DUMMYVAL_0x7f0b02be" app:APKTOOL_DUMMYVAL_0x7f0405ce="0.0dip" app:APKTOOL_DUMMYVAL_0x7f0405d0="0.0dip" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.SmallButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b00c4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="0.0dip" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" />
<ImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0284" android:background="@drawable/APKTOOL_DUMMYVAL_0x7f080545" android:focusable="true" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f0710c6" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f0710c6" app:APKTOOL_DUMMYVAL_0x7f040587="@id/APKTOOL_DUMMYVAL_0x7f0b02be" app:APKTOOL_DUMMYVAL_0x7f04058d="@id/APKTOOL_DUMMYVAL_0x7f0b00c7" app:APKTOOL_DUMMYVAL_0x7f0405a5="@id/APKTOOL_DUMMYVAL_0x7f0b02be" app:APKTOOL_DUMMYVAL_0x7f04088c="@drawable/APKTOOL_DUMMYVAL_0x7f08058b" />
</com.google.android.finsky.p2pui.transfer.view.P2pTransferView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0418.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0418.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0418.xml 2025-02-25 13:51:53.807108990 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0418.xml 2025-02-25 13:51:59.274089426 +0000
@@ -7,7 +7,7 @@
<com.google.android.finsky.frameworkviews.PhoneskyFifeImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0de4" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f07108d" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f07108d" android:scaleType="centerCrop" android:contentDescription="@null" finsky:APKTOOL_DUMMYVAL_0x7f040338="true" finsky:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
<com.google.android.finsky.frameworkviews.PhoneskyFifeImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0d0e" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070f5d" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070f5d" android:scaleType="centerCrop" android:contentDescription="@null" finsky:APKTOOL_DUMMYVAL_0x7f040338="true" finsky:APKTOOL_DUMMYVAL_0x7f040587="@id/APKTOOL_DUMMYVAL_0x7f0b0d06" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0053" />
<com.google.android.play.layout.PlayTextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0d06" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="wrap_content" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginEnd="0.0dip" finsky:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0de4" finsky:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0d0e" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0053" finsky:APKTOOL_DUMMYVAL_0x7f0405d1="0.0dip" style="?APKTOOL_DUMMYVAL_0x7f0409ca" />
- <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b00c3" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" finsky:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0d06" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b00c3" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" />
<com.google.android.finsky.frameworkviews.PhoneskyFifeImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0baa" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070f5d" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070f5d" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:scaleType="centerCrop" android:contentDescription="@null" finsky:APKTOOL_DUMMYVAL_0x7f040338="true" finsky:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b00c3" />
<com.google.android.play.layout.PlayTextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ba8" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginEnd="0.0dip" finsky:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0baa" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b00c3" finsky:APKTOOL_DUMMYVAL_0x7f0405d1="0.0dip" style="?APKTOOL_DUMMYVAL_0x7f0409ca" />
<com.google.android.play.layout.PlayTextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b03b7" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070657" finsky:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b00c3" style="?APKTOOL_DUMMYVAL_0x7f0409ca" />
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0419.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0419.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0419.xml 2025-02-25 13:51:53.831108905 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0419.xml 2025-02-25 13:51:59.099090052 +0000
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.finsky.streammvc.features.controllers.pointspromotionitemlist.view.PointsPromotionItemListCardView android:paddingTop="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:paddingBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_width="fill_parent" android:layout_height="wrap_content" android:paddingStart="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1" android:paddingEnd="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:finsky="http://schemas.android.com/apk/res-auto">
- <com.google.android.finsky.uicomponentsmvc.thumbnail.view.InstallAwareThumbnailViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0dce" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f07108a" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f07108a" finsky:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b07c4" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
- <com.google.android.finsky.uicomponentsmvc.metadata.view.MetadataViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b07cb" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="fill_parent" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" finsky:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b00c4" finsky:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0dce" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
- <com.google.android.finsky.uicomponentsmvc.actionbuttons.view.SmallActionButtonGroupViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b00c4" android:layout_width="wrap_content" android:layout_height="wrap_content" finsky:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.thumbnail.view.InstallAwareThumbnailViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0dce" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f07108a" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f07108a" />
+ <com.google.android.finsky.uicomponentsmvc.metadata.view.MetadataViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b07cb" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070940" android:layout_height="fill_parent" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" />
+ <com.google.android.finsky.uicomponentsmvc.actionbuttons.view.SmallActionButtonGroupViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b00c4" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</com.google.android.finsky.streammvc.features.controllers.pointspromotionitemlist.view.PointsPromotionItemListCardView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0444.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0444.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0444.xml 2025-02-25 13:51:53.836108887 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0444.xml 2025-02-25 13:51:59.208089662 +0000
@@ -5,5 +5,5 @@
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ab4" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0ab3" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0ab5" style="?APKTOOL_DUMMYVAL_0x7f0409ca" />
<com.google.android.finsky.frameworkviews.PhoneskyFifeImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ab3" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070d48" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070d48" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:contentDescription="@null" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0ab5" />
<ImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ab2" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070d47" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070d47" android:contentDescription="@string/APKTOOL_DUMMYVAL_0x7f140ce7" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04088c="@drawable/APKTOOL_DUMMYVAL_0x7f08058b" />
- <com.google.android.finsky.uicomponentsmvc.buttongroup.view.StandardButtonGroupViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ab1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0ab4" />
+ <com.google.android.finsky.uicomponentsmvc.buttongroup.view.StandardButtonGroupViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ab1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" />
</com.google.android.finsky.detailsmodules.features.modules.protectbanner.view.ProtectBannerModuleView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0447.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0447.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0447.xml 2025-02-25 13:51:53.820108944 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0447.xml 2025-02-25 13:51:59.153089859 +0000
@@ -2,5 +2,5 @@
<com.google.android.finsky.protect.view.ProtectInfoCardView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ac4" android:layout_width="fill_parent" android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ac6" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070657" android:textDirection="anyRtl" app:APKTOOL_DUMMYVAL_0x7f040588="@id/APKTOOL_DUMMYVAL_0x7f0b0ac5" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405cd="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" style="?APKTOOL_DUMMYVAL_0x7f0409ca" />
- <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ac5" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ac5" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" />
</com.google.android.finsky.protect.view.ProtectInfoCardView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e044b.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e044b.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e044b.xml 2025-02-25 13:51:53.825108926 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e044b.xml 2025-02-25 13:51:59.031090296 +0000
@@ -5,7 +5,7 @@
<include android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0acb" layout="@layout/APKTOOL_DUMMYVAL_0x7f0e044c" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a28" android:gravity="center_horizontal" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ce9" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:textDirection="locale" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0acb" style="?APKTOOL_DUMMYVAL_0x7f0409e8" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:gravity="center_horizontal" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ce7" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070979" android:textDirection="locale" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0ce9" style="?APKTOOL_DUMMYVAL_0x7f040a08" />
- <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ce3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070657" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0ce7" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ce3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070657" />
</androidx.constraintlayout.widget.ConstraintLayout>
<View android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ce5" android:background="?APKTOOL_DUMMYVAL_0x7f0403a4" android:layout_width="fill_parent" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070c54" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070f23" />
</com.google.android.finsky.protect.view.StatusCardView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0497.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0497.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0497.xml 2025-02-25 13:51:53.820108944 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0497.xml 2025-02-25 13:51:59.222089612 +0000
@@ -3,5 +3,5 @@
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
<com.google.android.finsky.frameworkviews.PhoneskyFifeImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0bab" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070e5b" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070e5b" android:baselineAlignBottom="true" android:layout_alignBaseline="@id/APKTOOL_DUMMYVAL_0x7f0b0ba9" android:layout_alignTop="@id/APKTOOL_DUMMYVAL_0x7f0b0ba9" android:contentDescription="@null" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" />
<TextView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ba9" android:layout_width="wrap_content" android:layout_height="wrap_content" android:includeFontPadding="false" android:textAlignment="viewStart" android:paddingStart="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:paddingEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" app:APKTOOL_DUMMYVAL_0x7f040581="true" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0bab" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" style="?APKTOOL_DUMMYVAL_0x7f040a08" />
- <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0cf7" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" app:APKTOOL_DUMMYVAL_0x7f040086="false" app:APKTOOL_DUMMYVAL_0x7f040441="@id/APKTOOL_DUMMYVAL_0x7f0b0721" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0bab" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0ba9" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0cf7" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" />
</com.google.android.finsky.uicomponentsmvc.ribbon.view.RibbonView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e04db.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e04db.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e04db.xml 2025-02-25 13:51:53.835108890 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e04db.xml 2025-02-25 13:51:59.192089719 +0000
@@ -21,6 +21,6 @@
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a28" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0c99" android:layout_width="wrap_content" android:layout_height="wrap_content" style="?APKTOOL_DUMMYVAL_0x7f0409d4" />
</LinearLayout>
</LinearLayout>
- <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ca1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f07029b" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070299" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070299" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0c9b" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ca1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f07029b" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070299" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070299" />
</androidx.constraintlayout.widget.ConstraintLayout>
</com.google.android.finsky.detailsmodules.features.modules.skupromotion.view.SkuPromotionView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e04dc.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e04dc.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e04dc.xml 2025-02-25 13:51:53.826108923 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e04dc.xml 2025-02-25 13:51:59.302089326 +0000
@@ -9,6 +9,6 @@
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a28" android:ellipsize="end" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b02a4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef7" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070299" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070299" style="?APKTOOL_DUMMYVAL_0x7f040a05" />
<TextView android:textColorLink="?APKTOOL_DUMMYVAL_0x7f040a28" android:ellipsize="end" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0291" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef7" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070299" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070299" style="?APKTOOL_DUMMYVAL_0x7f0409d4" />
</LinearLayout>
- <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b028f" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07029a" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070299" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070299" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b028d" app:APKTOOL_DUMMYVAL_0x7f0405a6="1.0" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b028f" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07029a" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070299" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070299" />
</androidx.constraintlayout.widget.ConstraintLayout>
</com.google.android.finsky.detailsmodules.features.modules.skupromotion.view.SkuPromotionCardView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e04e5.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e04e5.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e04e5.xml 2025-02-25 13:51:53.815108962 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e04e5.xml 2025-02-25 13:51:58.973090503 +0000
@@ -4,6 +4,6 @@
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a28" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0cf1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070efb" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070efb" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" style="?APKTOOL_DUMMYVAL_0x7f040a04" />
<ProgressBar android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0a97" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:max="100" android:progress="1" android:indeterminate="false" android:progressTint="?APKTOOL_DUMMYVAL_0x7f040a28" android:progressBackgroundTint="?APKTOOL_DUMMYVAL_0x7f040a2a" finsky:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0ced" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0cf1" finsky:APKTOOL_DUMMYVAL_0x7f0405aa="APKTOOL_DUMMYVAL_0x7f0b0cbe" style="?android:progressBarStyleHorizontal" />
<ImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ced" android:padding="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_width="48.0dip" android:layout_height="48.0dip" android:tint="?APKTOOL_DUMMYVAL_0x7f0403e7" finsky:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
- <com.google.android.finsky.uicomponentsmvc.decidebar.view.DecideBarViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0cee" android:layout_width="fill_parent" android:layout_height="wrap_content" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0a97" />
+ <com.google.android.finsky.uicomponentsmvc.decidebar.view.DecideBarViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0cee" android:layout_width="fill_parent" android:layout_height="wrap_content" />
<View android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070657" finsky:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0cee" style="@style/APKTOOL_DUMMYVAL_0x7f150224" />
</com.google.android.finsky.uninstallmanagerv4.view.StorageInfoSectionView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e059f.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e059f.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e059f.xml 2025-02-25 13:51:53.808108987 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e059f.xml 2025-02-25 13:51:59.085090102 +0000
@@ -2,6 +2,6 @@
<com.google.android.finsky.pageapi.hierarchy.toolbarandinstallbar.ToolbarAndInstallBarAppBarLayout android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0dfa" android:layout_width="fill_parent" android:layout_height="wrap_content" finsky:APKTOOL_DUMMYVAL_0x7f0402c9="0.0dip"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:finsky="http://schemas.android.com/apk/res-auto">
<include layout="@layout/APKTOOL_DUMMYVAL_0x7f0e05a1" />
- <com.google.android.finsky.uicomponentsmvc.installbar.view.InstallBarViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0669" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1" finsky:APKTOOL_DUMMYVAL_0x7f040441="@id/APKTOOL_DUMMYVAL_0x7f0b0666" />
+ <com.google.android.finsky.uicomponentsmvc.installbar.view.InstallBarViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0669" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1" />
<include layout="@layout/APKTOOL_DUMMYVAL_0x7f0e0204" />
</com.google.android.finsky.pageapi.hierarchy.toolbarandinstallbar.ToolbarAndInstallBarAppBarLayout>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e05a2.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e05a2.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e05a2.xml 2025-02-25 13:51:53.817108955 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e05a2.xml 2025-02-25 13:51:59.006090385 +0000
@@ -5,6 +5,6 @@
<ImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b004a" android:focusable="false" android:layout_width="wrap_content" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f07108f" android:scaleType="fitStart" android:contentDescription="@null" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
<com.google.android.play.layout.PlayTextView android:ellipsize="end" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0053" android:layout_width="wrap_content" android:layout_height="wrap_content" android:maxLines="1" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070977" app:APKTOOL_DUMMYVAL_0x7f040588="@id/APKTOOL_DUMMYVAL_0x7f0b0d06" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0386" app:APKTOOL_DUMMYVAL_0x7f040598="APKTOOL_DUMMYVAL_0x7f0b0cbf" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b004a" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a7="APKTOOL_DUMMYVAL_0x7f0b0976" style="?APKTOOL_DUMMYVAL_0x7f0409ea" />
<com.google.android.play.layout.PlayTextView android:ellipsize="end" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0d06" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" android:maxLines="1" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" app:APKTOOL_DUMMYVAL_0x7f040581="true" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0386" app:APKTOOL_DUMMYVAL_0x7f040597="0.0" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b004a" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0053" style="?APKTOOL_DUMMYVAL_0x7f0409d4" />
- <com.google.android.finsky.uicomponentsmvc.button.view.SmallButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0386" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070657" app:APKTOOL_DUMMYVAL_0x7f040581="true" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0053" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.SmallButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0386" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070657" />
</androidx.constraintlayout.widget.ConstraintLayout>
</com.google.android.finsky.toolbarframework.toolbars.ctatoolbar.view.CtaToolbar>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e05a6.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e05a6.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e05a6.xml 2025-02-25 13:51:53.811108976 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e05a6.xml 2025-02-25 13:51:59.020090335 +0000
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.finsky.streammvc.features.controllers.topchartsv2.view.TopChartsV2CardView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0e1f" android:paddingTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:paddingBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:focusable="true" android:layout_width="fill_parent" android:layout_height="wrap_content" android:foreground="@drawable/APKTOOL_DUMMYVAL_0x7f080545" android:paddingStart="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1" android:paddingEnd="@dimen/APKTOOL_DUMMYVAL_0x7f0701e1"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:finsky="http://schemas.android.com/apk/res-auto">
- <com.google.android.finsky.uicomponentsmvc.metadatabar.view.MetadataBarViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b07c4" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f0710b4" finsky:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.metadatabar.view.MetadataBarViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b07c4" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f0710b4" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0b05" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" finsky:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b07c4" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" style="?APKTOOL_DUMMYVAL_0x7f040a08" />
<ImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0e4a" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f0710b5" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f0710b5" finsky:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b07c4" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0b05" />
</com.google.android.finsky.streammvc.features.controllers.topchartsv2.view.TopChartsV2CardView>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e05b4.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e05b4.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e05b4.xml 2025-02-25 13:51:53.811108976 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e05b4.xml 2025-02-25 13:51:59.227089594 +0000
@@ -7,7 +7,7 @@
<LinearLayout android:gravity="center" android:layout_gravity="center" android:orientation="vertical" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0e65" android:layout_width="0.0dip" android:layout_height="wrap_content" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0e5f" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0e66" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994">
<include layout="@layout/APKTOOL_DUMMYVAL_0x7f0e05b3" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a28" android:gravity="center" android:layout_gravity="center" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0e64" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f0710f5" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0e60" style="?APKTOOL_DUMMYVAL_0x7f0409d4" />
- <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:layout_gravity="center" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0e63" android:layout_width="wrap_content" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f0710e7" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f0710f3" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f0700bd" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0e64" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:layout_gravity="center" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0e63" android:layout_width="wrap_content" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f0710e7" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f0710f3" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f0700bd" />
</LinearLayout>
<ImageView android:gravity="end|center|top" android:layout_gravity="end|center|top" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0e61" android:tint="?APKTOOL_DUMMYVAL_0x7f0403e7" android:contentDescription="@string/APKTOOL_DUMMYVAL_0x7f140347" app:APKTOOL_DUMMYVAL_0x7f0405a1="@id/APKTOOL_DUMMYVAL_0x7f0b0e5f" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0e62" style="@style/APKTOOL_DUMMYVAL_0x7f15039f" />
</android.support.constraint.ConstraintLayout>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e05b6.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e05b6.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e05b6.xml 2025-02-25 13:51:53.829108912 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e05b6.xml 2025-02-25 13:51:58.890090800 +0000
@@ -8,6 +8,6 @@
<ProgressBar android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0e5d" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f0710ea" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f0710e9" android:indeterminateOnly="true" style="?android:progressBarStyleHorizontal" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a28" android:gravity="center" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0e5e" android:focusable="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f0710eb" style="?APKTOOL_DUMMYVAL_0x7f0409d4" />
</LinearLayout>
- <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b082d" android:layout_width="wrap_content" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f0710e7" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f0710e8" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f0710e8" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" />
- <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:layout_gravity="end" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0a5e" android:layout_width="wrap_content" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f0710e7" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f0710e8" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f0710e8" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b082d" android:layout_width="wrap_content" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f0710e7" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f0710e8" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f0710e8" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:layout_gravity="end" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0a5e" android:layout_width="wrap_content" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f0710e7" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f0710e8" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f0710e8" />
</android.support.constraint.ConstraintLayout>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0680.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0680.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e0680.xml 2025-02-25 13:51:53.829108912 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e0680.xml 2025-02-25 13:51:59.318089268 +0000
@@ -14,6 +14,6 @@
<TextView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ea7" android:focusable="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124e" style="?APKTOOL_DUMMYVAL_0x7f0409ca" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
- <com.google.android.finsky.uicomponentsmvc.buttongroup.view.StandardButtonGroupViewStub android:id="@id/button_group" android:layout_width="wrap_content" android:layout_height="wrap_content" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0eab" />
+ <com.google.android.finsky.uicomponentsmvc.buttongroup.view.StandardButtonGroupViewStub android:id="@id/button_group" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:textColorLink="?APKTOOL_DUMMYVAL_0x7f040a2a" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ea9" android:paddingBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:focusable="true" android:layout_width="wrap_content" android:layout_height="wrap_content" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/button_group" style="?APKTOOL_DUMMYVAL_0x7f040a08" />
</com.google.android.finsky.streammvc.features.controllers.walletwellbeing.view.WalletWellbeingClusterViewV2>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e068c.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e068c.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e068c.xml 2025-02-25 13:51:53.815108962 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e068c.xml 2025-02-25 13:51:58.990090442 +0000
@@ -4,6 +4,6 @@
<ViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0cf5" android:focusable="false" android:layout="@layout/APKTOOL_DUMMYVAL_0x7f0e0171" android:inflatedId="@id/exoplayer_view" android:layout_width="fill_parent" android:layout_height="0.0dip" android:importantForAccessibility="no" finsky:APKTOOL_DUMMYVAL_0x7f04058c="H,16:9" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
<ViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0cf6" android:focusable="false" android:layout="@layout/APKTOOL_DUMMYVAL_0x7f0e017c" android:inflatedId="@id/fallback_image" android:layout_width="fill_parent" android:layout_height="0.0dip" android:importantForAccessibility="no" finsky:APKTOOL_DUMMYVAL_0x7f04058c="H,16:9" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
<ViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0680" android:layout="@layout/APKTOOL_DUMMYVAL_0x7f0e0259" android:inflatedId="@id/APKTOOL_DUMMYVAL_0x7f0b067f" android:layout_width="wrap_content" android:layout_height="wrap_content" finsky:APKTOOL_DUMMYVAL_0x7f040587="@id/APKTOOL_DUMMYVAL_0x7f0b01e3" finsky:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
- <com.google.android.finsky.uicomponentsmvc.metadatabar.view.MetadataBarViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b07c4" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f0703a0" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b01e3" />
+ <com.google.android.finsky.uicomponentsmvc.metadatabar.view.MetadataBarViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b07c4" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f0703a0" />
<androidx.constraintlayout.widget.Barrier android:id="@id/APKTOOL_DUMMYVAL_0x7f0b01e3" android:layout_width="wrap_content" android:layout_height="wrap_content" finsky:APKTOOL_DUMMYVAL_0x7f0400bb="APKTOOL_DUMMYVAL_0x7f0b0217" finsky:APKTOOL_DUMMYVAL_0x7f040216="exoplayer_view,fallback_image" />
</com.google.android.finsky.streammvc.features.controllers.widemedia.view.WideMediaCardViewPreview>
diff -Nupr play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e068e.xml play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e068e.xml
--- play_45.0.21-23.orig/res/layout/APKTOOL_DUMMYVAL_0x7f0e068e.xml 2025-02-25 13:51:53.807108990 +0000
+++ play_45.0.21-23/res/layout/APKTOOL_DUMMYVAL_0x7f0e068e.xml 2025-02-25 13:51:59.237089558 +0000
@@ -4,5 +4,5 @@
<com.google.android.finsky.frameworkviews.FadingEdgeImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0bde" android:layout_width="fill_parent" android:layout_height="0.0dip" android:scaleType="centerCrop" finsky:APKTOOL_DUMMYVAL_0x7f04058c="H,2:1" />
<View android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0945" android:layout_width="fill_parent" android:layout_height="0.0dip" finsky:APKTOOL_DUMMYVAL_0x7f04058c="H,16:1" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0bde" />
<TextView android:gravity="center_horizontal" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0947" android:paddingBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_width="fill_parent" android:layout_height="wrap_content" android:paddingStart="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:paddingEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" finsky:APKTOOL_DUMMYVAL_0x7f040587="@id/APKTOOL_DUMMYVAL_0x7f0b0945" style="?APKTOOL_DUMMYVAL_0x7f0409d6" />
- <com.google.android.finsky.uicomponentsmvc.metadatabar.view.MetadataBarViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b07c4" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f0703a0" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0945" />
+ <com.google.android.finsky.uicomponentsmvc.metadatabar.view.MetadataBarViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b07c4" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f0703a0" />
</com.google.android.finsky.streammvc.features.controllers.widemedia.view.WideMediaCardViewScreenshotEditorial>
diff -Nupr play_45.0.21-23.orig/res/layout/wide_media_card_screenshot.xml play_45.0.21-23/res/layout/wide_media_card_screenshot.xml
--- play_45.0.21-23.orig/res/layout/wide_media_card_screenshot.xml 2025-02-25 13:51:53.823108933 +0000
+++ play_45.0.21-23/res/layout/wide_media_card_screenshot.xml 2025-02-25 13:51:59.133089930 +0000
@@ -3,5 +3,5 @@
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:finsky="http://schemas.android.com/apk/res-auto">
<com.google.android.finsky.rotatingscreenshotsmvc.RotatingScreenshotsViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0bdd" android:layout_width="fill_parent" android:layout_height="0.0dip" finsky:APKTOOL_DUMMYVAL_0x7f040441="@id/APKTOOL_DUMMYVAL_0x7f0b0bdc" finsky:APKTOOL_DUMMYVAL_0x7f04058c="H,16:9" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
<ViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0680" android:layout="@layout/APKTOOL_DUMMYVAL_0x7f0e0259" android:inflatedId="@id/APKTOOL_DUMMYVAL_0x7f0b067f" android:layout_width="wrap_content" android:layout_height="wrap_content" finsky:APKTOOL_DUMMYVAL_0x7f040587="@id/APKTOOL_DUMMYVAL_0x7f0b0bdc" finsky:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
- <com.google.android.finsky.uicomponentsmvc.metadatabar.view.MetadataBarViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b07c4" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f0703a0" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0bdc" />
+ <com.google.android.finsky.uicomponentsmvc.metadatabar.view.MetadataBarViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b07c4" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f0703a0" />
</com.google.android.finsky.streammvc.features.controllers.widemedia.view.WideMediaCardViewScreenshot>
diff -Nupr play_45.0.21-23.orig/res/layout/wide_media_card_video.xml play_45.0.21-23/res/layout/wide_media_card_video.xml
--- play_45.0.21-23.orig/res/layout/wide_media_card_video.xml 2025-02-25 13:51:53.832108901 +0000
+++ play_45.0.21-23/res/layout/wide_media_card_video.xml 2025-02-25 13:51:58.946090600 +0000
@@ -2,5 +2,5 @@
<com.google.android.finsky.streammvc.features.controllers.widemedia.view.WideMediaCardViewVideo android:id="@id/play_card" style="@style/APKTOOL_DUMMYVAL_0x7f150a1e"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:finsky="http://schemas.android.com/apk/res-auto">
<include android:id="@id/APKTOOL_DUMMYVAL_0x7f0b07af" finsky:APKTOOL_DUMMYVAL_0x7f04058c="H,16:9" finsky:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" layout="@layout/APKTOOL_DUMMYVAL_0x7f0e0699" />
- <com.google.android.finsky.uicomponentsmvc.metadatabar.view.MetadataBarViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b07c4" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f0703a0" finsky:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b07af" />
+ <com.google.android.finsky.uicomponentsmvc.metadatabar.view.MetadataBarViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b07c4" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f0703a0" />
</com.google.android.finsky.streammvc.features.controllers.widemedia.view.WideMediaCardViewVideo>
diff -Nupr play_45.0.21-23.orig/res/layout-sw600dp/APKTOOL_DUMMYVAL_0x7f0e044b.xml play_45.0.21-23/res/layout-sw600dp/APKTOOL_DUMMYVAL_0x7f0e044b.xml
--- play_45.0.21-23.orig/res/layout-sw600dp/APKTOOL_DUMMYVAL_0x7f0e044b.xml 2025-02-25 13:51:53.873108754 +0000
+++ play_45.0.21-23/res/layout-sw600dp/APKTOOL_DUMMYVAL_0x7f0e044b.xml 2025-02-25 13:51:59.329089229 +0000
@@ -5,7 +5,7 @@
<include android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0acb" layout="@layout/APKTOOL_DUMMYVAL_0x7f0e044c" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a28" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ce9" android:layout_width="0.0dip" android:layout_height="wrap_content" android:textDirection="locale" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070657" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" app:APKTOOL_DUMMYVAL_0x7f040588="@id/APKTOOL_DUMMYVAL_0x7f0b0ce7" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0ce3" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0acb" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a7="APKTOOL_DUMMYVAL_0x7f0b0976" app:APKTOOL_DUMMYVAL_0x7f0405ce="0.0dip" style="?APKTOOL_DUMMYVAL_0x7f0409e8" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ce7" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070979" android:textDirection="locale" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070657" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0ce3" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0acb" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0ce9" app:APKTOOL_DUMMYVAL_0x7f0405ce="0.0dip" style="?APKTOOL_DUMMYVAL_0x7f040a08" />
- <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ce3" android:layout_width="wrap_content" android:layout_height="wrap_content" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ce3" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</androidx.constraintlayout.widget.ConstraintLayout>
<View android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ce5" android:background="?APKTOOL_DUMMYVAL_0x7f0403a4" android:layout_width="fill_parent" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070c54" />
</com.google.android.finsky.protect.view.StatusCardView>
diff -Nupr play_45.0.21-23.orig/res/layout-w1024dp/APKTOOL_DUMMYVAL_0x7f0e044b.xml play_45.0.21-23/res/layout-w1024dp/APKTOOL_DUMMYVAL_0x7f0e044b.xml
--- play_45.0.21-23.orig/res/layout-w1024dp/APKTOOL_DUMMYVAL_0x7f0e044b.xml 2025-02-25 13:51:53.871108761 +0000
+++ play_45.0.21-23/res/layout-w1024dp/APKTOOL_DUMMYVAL_0x7f0e044b.xml 2025-02-25 13:51:59.387089021 +0000
@@ -5,7 +5,7 @@
<include android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0acb" layout="@layout/APKTOOL_DUMMYVAL_0x7f0e044c" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a28" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ce9" android:layout_width="0.0dip" android:layout_height="wrap_content" android:textDirection="locale" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070657" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" app:APKTOOL_DUMMYVAL_0x7f040588="@id/APKTOOL_DUMMYVAL_0x7f0b0ce7" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0ce3" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0acb" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a7="APKTOOL_DUMMYVAL_0x7f0b0976" app:APKTOOL_DUMMYVAL_0x7f0405ce="0.0dip" style="?APKTOOL_DUMMYVAL_0x7f0409e8" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ce7" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f070979" android:textDirection="locale" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070657" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070977" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0ce3" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b0acb" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0ce9" app:APKTOOL_DUMMYVAL_0x7f0405ce="0.0dip" style="?APKTOOL_DUMMYVAL_0x7f040a08" />
- <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ce3" android:layout_width="wrap_content" android:layout_height="wrap_content" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.StandardButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ce3" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</androidx.constraintlayout.widget.ConstraintLayout>
<View android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0ce5" android:background="?APKTOOL_DUMMYVAL_0x7f0403a4" android:layout_width="fill_parent" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070c54" />
</com.google.android.finsky.protect.view.StatusCardView>
diff -Nupr play_45.0.21-23.orig/res/layout-w480dp-land/APKTOOL_DUMMYVAL_0x7f0e014e.xml play_45.0.21-23/res/layout-w480dp-land/APKTOOL_DUMMYVAL_0x7f0e014e.xml
--- play_45.0.21-23.orig/res/layout-w480dp-land/APKTOOL_DUMMYVAL_0x7f0e014e.xml 2025-02-25 13:51:53.870108765 +0000
+++ play_45.0.21-23/res/layout-w480dp-land/APKTOOL_DUMMYVAL_0x7f0e014e.xml 2025-02-25 13:51:59.343089179 +0000
@@ -15,8 +15,8 @@
<View android:id="@id/APKTOOL_DUMMYVAL_0x7f0b095d" android:background="@color/APKTOOL_DUMMYVAL_0x7f0605f2" android:layout_width="fill_parent" android:layout_height="1.0dip" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
<com.caverock.androidsvg.SVGImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b095f" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070b3f" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070b3e" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:scaleType="center" android:contentDescription="@null" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" android:layout_marginEnd="0.0dip" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b095d" app:APKTOOL_DUMMYVAL_0x7f04098a="@drawable/APKTOOL_DUMMYVAL_0x7f080403" />
<TextView android:gravity="center" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b095e" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:text="@string/APKTOOL_DUMMYVAL_0x7f140bb2" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070657" android:layout_marginEnd="0.0dip" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b095f" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b095d" style="?APKTOOL_DUMMYVAL_0x7f040a06" />
- <com.google.android.finsky.uicomponentsmvc.chip.view.StandardChipViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b096f" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginStart="0.0dip" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" app:APKTOOL_DUMMYVAL_0x7f040086="false" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0969" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b095d" />
- <com.google.android.finsky.uicomponentsmvc.chip.view.StandardChipViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0969" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" app:APKTOOL_DUMMYVAL_0x7f040086="false" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b095d" />
+ <com.google.android.finsky.uicomponentsmvc.chip.view.StandardChipViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b096f" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginStart="0.0dip" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" />
+ <com.google.android.finsky.uicomponentsmvc.chip.view.StandardChipViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0969" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" android:layout_marginBottom="@dimen/APKTOOL_DUMMYVAL_0x7f070977" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" />
</androidx.constraintlayout.widget.ConstraintLayout>
<LinearLayout android:gravity="center_vertical" android:layout_gravity="center_horizontal" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b04a3" android:paddingTop="@dimen/APKTOOL_DUMMYVAL_0x7f070da9" android:paddingBottom="8.0dip" android:visibility="invisible" android:layout_width="wrap_content" android:layout_height="wrap_content">
<include layout="@layout/APKTOOL_DUMMYVAL_0x7f0e0150" />
diff -Nupr play_45.0.21-23.orig/res/layout-w480dp-land/APKTOOL_DUMMYVAL_0x7f0e033f.xml play_45.0.21-23/res/layout-w480dp-land/APKTOOL_DUMMYVAL_0x7f0e033f.xml
--- play_45.0.21-23.orig/res/layout-w480dp-land/APKTOOL_DUMMYVAL_0x7f0e033f.xml 2025-02-25 13:51:53.870108765 +0000
+++ play_45.0.21-23/res/layout-w480dp-land/APKTOOL_DUMMYVAL_0x7f0e033f.xml 2025-02-25 13:51:59.376089061 +0000
@@ -3,6 +3,6 @@
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
<com.caverock.androidsvg.SVGImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b095f" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f070b3f" android:layout_height="@dimen/APKTOOL_DUMMYVAL_0x7f070b3e" android:scaleType="center" android:contentDescription="@null" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04098a="@drawable/APKTOOL_DUMMYVAL_0x7f080403" />
<TextView android:gravity="center" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b095e" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/APKTOOL_DUMMYVAL_0x7f140bb2" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f070657" android:layout_marginEnd="0.0dip" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b095f" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" style="?APKTOOL_DUMMYVAL_0x7f040a06" />
- <com.google.android.finsky.uicomponentsmvc.chip.view.StandardChipViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0969" android:layout_width="wrap_content" android:layout_height="wrap_content" app:APKTOOL_DUMMYVAL_0x7f040086="false" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f040597="1.0" app:APKTOOL_DUMMYVAL_0x7f040598="APKTOOL_DUMMYVAL_0x7f0b0cbe" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
- <com.google.android.finsky.uicomponentsmvc.chip.view.StandardChipViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b096f" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="0.0dip" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" app:APKTOOL_DUMMYVAL_0x7f040086="false" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0969" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" />
+ <com.google.android.finsky.uicomponentsmvc.chip.view.StandardChipViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0969" android:layout_width="wrap_content" android:layout_height="wrap_content" />
+ <com.google.android.finsky.uicomponentsmvc.chip.view.StandardChipViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b096f" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="0.0dip" android:layout_marginEnd="@dimen/APKTOOL_DUMMYVAL_0x7f070ef9" />
</androidx.constraintlayout.widget.ConstraintLayout>
diff -Nupr play_45.0.21-23.orig/res/layout-w480dp-land/APKTOOL_DUMMYVAL_0x7f0e0378.xml play_45.0.21-23/res/layout-w480dp-land/APKTOOL_DUMMYVAL_0x7f0e0378.xml
--- play_45.0.21-23.orig/res/layout-w480dp-land/APKTOOL_DUMMYVAL_0x7f0e0378.xml 2025-02-25 13:51:53.870108765 +0000
+++ play_45.0.21-23/res/layout-w480dp-land/APKTOOL_DUMMYVAL_0x7f0e0378.xml 2025-02-25 13:51:59.356089132 +0000
@@ -5,6 +5,6 @@
<com.caverock.androidsvg.SVGImageView android:id="@id/APKTOOL_DUMMYVAL_0x7f0b02bd" android:layout_width="0.0dip" android:layout_height="0.0dip" app:APKTOOL_DUMMYVAL_0x7f040580="true" app:APKTOOL_DUMMYVAL_0x7f040581="true" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058c="1:1" app:APKTOOL_DUMMYVAL_0x7f04058e="@id/APKTOOL_DUMMYVAL_0x7f0b0681" app:APKTOOL_DUMMYVAL_0x7f040594="@dimen/APKTOOL_DUMMYVAL_0x7f0706e7" app:APKTOOL_DUMMYVAL_0x7f040598="APKTOOL_DUMMYVAL_0x7f0b0976" app:APKTOOL_DUMMYVAL_0x7f0405a1="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405ab="@dimen/APKTOOL_DUMMYVAL_0x7f0706e7" app:APKTOOL_DUMMYVAL_0x7f04098a="@drawable/APKTOOL_DUMMYVAL_0x7f0804be" />
<TextView android:gravity="center" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0681" android:layout_width="0.0dip" android:layout_height="wrap_content" android:text="@string/APKTOOL_DUMMYVAL_0x7f140822" app:APKTOOL_DUMMYVAL_0x7f040581="true" app:APKTOOL_DUMMYVAL_0x7f040588="@id/APKTOOL_DUMMYVAL_0x7f0b0682" app:APKTOOL_DUMMYVAL_0x7f04058d="@id/APKTOOL_DUMMYVAL_0x7f0b0682" app:APKTOOL_DUMMYVAL_0x7f0405a1="@id/APKTOOL_DUMMYVAL_0x7f0b0682" app:APKTOOL_DUMMYVAL_0x7f0405a5="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a7="APKTOOL_DUMMYVAL_0x7f0b0976" app:APKTOOL_DUMMYVAL_0x7f0405ab="@dimen/APKTOOL_DUMMYVAL_0x7f0706e8" style="?APKTOOL_DUMMYVAL_0x7f0409ea" />
<TextView android:textColor="?APKTOOL_DUMMYVAL_0x7f040a2a" android:gravity="center" android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0682" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124e" android:text="@string/APKTOOL_DUMMYVAL_0x7f140823" android:layout_marginStart="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" android:layout_marginEnd="0.0dip" app:APKTOOL_DUMMYVAL_0x7f040581="true" app:APKTOOL_DUMMYVAL_0x7f040588="@id/APKTOOL_DUMMYVAL_0x7f0b0367" app:APKTOOL_DUMMYVAL_0x7f04058d="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f0405a0="@id/APKTOOL_DUMMYVAL_0x7f0b02bd" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0681" app:APKTOOL_DUMMYVAL_0x7f0405ab="@dimen/APKTOOL_DUMMYVAL_0x7f0706e8" style="?APKTOOL_DUMMYVAL_0x7f0409ca" />
- <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0367" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f0706e6" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" app:APKTOOL_DUMMYVAL_0x7f040587="APKTOOL_DUMMYVAL_0x7f0b0994" app:APKTOOL_DUMMYVAL_0x7f04058d="@id/APKTOOL_DUMMYVAL_0x7f0b0682" app:APKTOOL_DUMMYVAL_0x7f0405a1="@id/APKTOOL_DUMMYVAL_0x7f0b0682" app:APKTOOL_DUMMYVAL_0x7f0405a4="@id/APKTOOL_DUMMYVAL_0x7f0b0682" />
+ <com.google.android.finsky.uicomponentsmvc.button.view.LinkButtonViewStub android:id="@id/APKTOOL_DUMMYVAL_0x7f0b0367" android:layout_width="@dimen/APKTOOL_DUMMYVAL_0x7f0706e6" android:layout_height="wrap_content" android:layout_marginTop="@dimen/APKTOOL_DUMMYVAL_0x7f07124d" />
</androidx.constraintlayout.widget.ConstraintLayout>
</com.google.android.finsky.p2pui.permission.view.P2pPermissionRequestView>
diff -Nupr play_45.0.21-23.orig/res/values/public.xml play_45.0.21-23/res/values/public.xml
--- play_45.0.21-23.orig/res/values/public.xml 2025-02-25 13:51:53.879108733 +0000
+++ play_45.0.21-23/res/values/public.xml 2025-02-25 13:51:53.965108425 +0000
@@ -19320,6 +19320,7 @@
<public type="string" name="APKTOOL_DUMMYVAL_0x7f1413ca" id="0x7f1413ca" />
<public type="string" name="APKTOOL_DUMMYVAL_0x7f1413cb" id="0x7f1413cb" />
<public type="string" name="APKTOOL_DUMMYVAL_0x7f1413cc" id="0x7f1413cc" />
+<public type="string" name="fake_signature" />
<public type="style" name="APKTOOL_DUMMYVAL_0x7f150000" id="0x7f150000" />
<public type="style" name="APKTOOL_DUMMYVAL_0x7f150001" id="0x7f150001" />
<public type="style" name="APKTOOL_DUMMYVAL_0x7f150002" id="0x7f150002" />
diff -Nupr play_45.0.21-23.orig/res/values/strings.xml play_45.0.21-23/res/values/strings.xml
--- play_45.0.21-23.orig/res/values/strings.xml 2025-02-25 13:51:53.878108736 +0000
+++ play_45.0.21-23/res/values/strings.xml 2025-02-25 13:51:53.949108482 +0000
@@ -4360,4 +4360,5 @@ First turn on NFC in your settings, then
<string name="APKTOOL_DUMMYVAL_0x7f1413ca">Your achievements</string>
<string name="APKTOOL_DUMMYVAL_0x7f1413cb">Play</string>
<string name="APKTOOL_DUMMYVAL_0x7f1413cc">Your reservations</string>
+<string name="fake_signature">308204433082032ba003020102020900c2e08746644a308d300d06092a864886f70d01010405003074310b3009060355040613025553311330110603550408130a43616c69666f726e6961311630140603550407130d4d6f756e7461696e205669657731143012060355040a130b476f6f676c6520496e632e3110300e060355040b1307416e64726f69643110300e06035504031307416e64726f6964301e170d3038303832313233313333345a170d3336303130373233313333345a3074310b3009060355040613025553311330110603550408130a43616c69666f726e6961311630140603550407130d4d6f756e7461696e205669657731143012060355040a130b476f6f676c6520496e632e3110300e060355040b1307416e64726f69643110300e06035504031307416e64726f696430820120300d06092a864886f70d01010105000382010d00308201080282010100ab562e00d83ba208ae0a966f124e29da11f2ab56d08f58e2cca91303e9b754d372f640a71b1dcb130967624e4656a7776a92193db2e5bfb724a91e77188b0e6a47a43b33d9609b77183145ccdf7b2e586674c9e1565b1f4c6a5955bff251a63dabf9c55c27222252e875e4f8154a645f897168c0b1bfc612eabf785769bb34aa7984dc7e2ea2764cae8307d8c17154d7ee5f64a51a44a602c249054157dc02cd5f5c0e55fbef8519fbe327f0b1511692c5a06f19d18385f5c4dbc2d6b93f68cc2979c70e18ab93866b3bd5db8999552a0e3b4c99df58fb918bedc182ba35e003c1b4b10dd244a8ee24fffd333872ab5221985edab0fc0d0b145b6aa192858e79020103a381d93081d6301d0603551d0e04160414c77d8cc2211756259a7fd382df6be398e4d786a53081a60603551d2304819e30819b8014c77d8cc2211756259a7fd382df6be398e4d786a5a178a4763074310b3009060355040613025553311330110603550408130a43616c69666f726e6961311630140603550407130d4d6f756e7461696e205669657731143012060355040a130b476f6f676c6520496e632e3110300e060355040b1307416e64726f69643110300e06035504031307416e64726f6964820900c2e08746644a308d300c0603551d13040530030101ff300d06092a864886f70d010104050003820101006dd252ceef85302c360aaace939bcff2cca904bb5d7a1661f8ae46b2994204d0ff4a68c7ed1a531ec4595a623ce60763b167297a7ae35712c407f208f0cb109429124d7b106219c084ca3eb3f9ad5fb871ef92269a8be28bf16d44c8d9a08e6cb2f005bb3fe2cb96447e868e731076ad45b33f6009ea19c161e62641aa99271dfd5228c5c587875ddb7f452758d661f6cc0cccb7352e424cc4365c523532f7325137593c4ae341f4db41edda0d0b1071a7c440f0fe9ea01cb627ca674369d084bd2fd911ff06cdbf2cfa10dc0f893ae35762919048c7efc64c7144178342f70581c9de573af55b390dd7fdb9418631895d5f759f30112687ff621410c069308a</string>
</resources>
diff -Nupr play_45.0.21-23.orig/res/values/styles.xml play_45.0.21-23/res/values/styles.xml
--- play_45.0.21-23.orig/res/values/styles.xml 2025-02-25 13:51:53.877108740 +0000
+++ play_45.0.21-23/res/values/styles.xml 2025-02-25 13:51:54.008108271 +0000
@@ -505,7 +505,7 @@
<item name="android:windowAnimationStyle">@style/APKTOOL_DUMMYVAL_0x7f150040</item>
<item name="android:listDivider">?APKTOOL_DUMMYVAL_0x7f0401af</item>
<item name="android:backgroundDimEnabled">true</item>
- <item name="android:statusBarColor">@android:color/transparent</item>
+ <item name="android:statusBarColor">@*android:color/transparent</item>
<item name="APKTOOL_DUMMYVAL_0x7f0400f9">@style/APKTOOL_DUMMYVAL_0x7f150d44</item>
<item name="APKTOOL_DUMMYVAL_0x7f0401c3">?APKTOOL_DUMMYVAL_0x7f0407db</item>
<item name="APKTOOL_DUMMYVAL_0x7f0401df">?APKTOOL_DUMMYVAL_0x7f0407dd</item>
@@ -543,7 +543,7 @@
<item name="android:windowAnimationStyle">@style/APKTOOL_DUMMYVAL_0x7f150040</item>
<item name="android:listDivider">?APKTOOL_DUMMYVAL_0x7f0401af</item>
<item name="android:backgroundDimEnabled">true</item>
- <item name="android:statusBarColor">@android:color/transparent</item>
+ <item name="android:statusBarColor">@*android:color/transparent</item>
<item name="APKTOOL_DUMMYVAL_0x7f0400f9">@style/APKTOOL_DUMMYVAL_0x7f150d45</item>
<item name="APKTOOL_DUMMYVAL_0x7f0401c3">?APKTOOL_DUMMYVAL_0x7f0407e1</item>
<item name="APKTOOL_DUMMYVAL_0x7f0401c9">?APKTOOL_DUMMYVAL_0x7f0407e3</item>
@@ -713,7 +713,7 @@
<item name="APKTOOL_DUMMYVAL_0x7f040b03">com.google.android.material.theme.MaterialComponentsViewInflater</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f15010c" parent="@style/APKTOOL_DUMMYVAL_0x7f1507d4">
- <item name="android:windowBackground">@android:color/transparent</item>
+ <item name="android:windowBackground">@*android:color/transparent</item>
<item name="android:windowIsFloating">false</item>
<item name="android:windowAnimationStyle">@style/APKTOOL_DUMMYVAL_0x7f15003f</item>
<item name="APKTOOL_DUMMYVAL_0x7f0400f9">@style/APKTOOL_DUMMYVAL_0x7f150a9a</item>
@@ -1078,7 +1078,7 @@
<item name="APKTOOL_DUMMYVAL_0x7f040b03">com.google.android.material.theme.MaterialComponentsViewInflater</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150111" parent="@style/APKTOOL_DUMMYVAL_0x7f1507e9">
- <item name="android:windowBackground">@android:color/transparent</item>
+ <item name="android:windowBackground">@*android:color/transparent</item>
<item name="android:windowIsFloating">false</item>
<item name="android:windowAnimationStyle">@style/APKTOOL_DUMMYVAL_0x7f15003f</item>
<item name="APKTOOL_DUMMYVAL_0x7f0400f9">@style/APKTOOL_DUMMYVAL_0x7f150a9a</item>
@@ -4283,7 +4283,7 @@
<item name="APKTOOL_DUMMYVAL_0x7f040634">@style/APKTOOL_DUMMYVAL_0x7f1502bf</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150133" parent="@style/APKTOOL_DUMMYVAL_0x7f150100">
- <item name="android:windowBackground">@android:color/transparent</item>
+ <item name="android:windowBackground">@*android:color/transparent</item>
<item name="android:windowIsFloating">false</item>
<item name="android:windowAnimationStyle">@style/APKTOOL_DUMMYVAL_0x7f15003b</item>
<item name="android:windowSoftInputMode">adjustResize</item>
@@ -4291,7 +4291,7 @@
<item name="APKTOOL_DUMMYVAL_0x7f0402d3">true</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150134" parent="@style/APKTOOL_DUMMYVAL_0x7f150100">
- <item name="android:windowBackground">@android:color/transparent</item>
+ <item name="android:windowBackground">@*android:color/transparent</item>
<item name="android:windowIsFloating">false</item>
<item name="android:windowAnimationStyle">@style/APKTOOL_DUMMYVAL_0x7f15003c</item>
<item name="APKTOOL_DUMMYVAL_0x7f040866">@style/APKTOOL_DUMMYVAL_0x7f150c9f</item>
@@ -4408,7 +4408,7 @@
<item name="android:colorEdgeEffect">@color/APKTOOL_DUMMYVAL_0x7f06058a</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f15013e" parent="@style/APKTOOL_DUMMYVAL_0x7f15010c">
- <item name="android:statusBarColor">@android:color/transparent</item>
+ <item name="android:statusBarColor">@*android:color/transparent</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f15013f" parent="@style/APKTOOL_DUMMYVAL_0x7f15010e">
<item name="android:alertDialogTheme">@style/APKTOOL_DUMMYVAL_0x7f1508e5</item>
@@ -4421,7 +4421,7 @@
<item name="android:colorEdgeEffect">@color/APKTOOL_DUMMYVAL_0x7f06058a</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150141" parent="@style/APKTOOL_DUMMYVAL_0x7f150111">
- <item name="android:statusBarColor">@android:color/transparent</item>
+ <item name="android:statusBarColor">@*android:color/transparent</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150142" parent="@style/APKTOOL_DUMMYVAL_0x7f150113">
<item name="android:alertDialogTheme">@style/APKTOOL_DUMMYVAL_0x7f1508e9</item>
@@ -4463,7 +4463,7 @@
<item name="android:windowElevation">@dimen/APKTOOL_DUMMYVAL_0x7f07005b</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150150" parent="@style/APKTOOL_DUMMYVAL_0x7f15012e">
- <item name="android:statusBarColor">@android:color/transparent</item>
+ <item name="android:statusBarColor">@*android:color/transparent</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150151" parent="@style/APKTOOL_DUMMYVAL_0x7f15012f">
<item name="android:windowBackground">@drawable/APKTOOL_DUMMYVAL_0x7f0802a8</item>
@@ -4478,10 +4478,10 @@
<item name="android:windowElevation">@dimen/APKTOOL_DUMMYVAL_0x7f07056b</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150156" parent="@style/APKTOOL_DUMMYVAL_0x7f150133">
- <item name="android:statusBarColor">@android:color/transparent</item>
+ <item name="android:statusBarColor">@*android:color/transparent</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150157" parent="@style/APKTOOL_DUMMYVAL_0x7f150134">
- <item name="android:statusBarColor">@android:color/transparent</item>
+ <item name="android:statusBarColor">@*android:color/transparent</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150158" parent="@style/APKTOOL_DUMMYVAL_0x7f150139">
<item name="APKTOOL_DUMMYVAL_0x7f040021">?android:actionModeShareDrawable</item>
@@ -4517,7 +4517,7 @@
<item name="android:windowLightStatusBar">true</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150175" parent="@style/APKTOOL_DUMMYVAL_0x7f150381">
- <item name="android:panelBackground">@android:color/transparent</item>
+ <item name="android:panelBackground">@*android:color/transparent</item>
<item name="android:dropDownListViewStyle">@style/APKTOOL_DUMMYVAL_0x7f150a52</item>
<item name="android:textViewStyle">@style/APKTOOL_DUMMYVAL_0x7f150a64</item>
<item name="android:dropDownItemStyle">@style/APKTOOL_DUMMYVAL_0x7f150a36</item>
@@ -4663,7 +4663,7 @@
<item name="APKTOOL_DUMMYVAL_0x7f040b1c">true</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150177" parent="@style/APKTOOL_DUMMYVAL_0x7f150382">
- <item name="android:panelBackground">@android:color/transparent</item>
+ <item name="android:panelBackground">@*android:color/transparent</item>
<item name="android:dropDownListViewStyle">@style/APKTOOL_DUMMYVAL_0x7f150a52</item>
<item name="android:textViewStyle">@style/APKTOOL_DUMMYVAL_0x7f150a64</item>
<item name="android:dropDownItemStyle">@style/APKTOOL_DUMMYVAL_0x7f150a36</item>
@@ -5534,7 +5534,7 @@
<item name="android:fontFamily">@font/APKTOOL_DUMMYVAL_0x7f09001b</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f1501f4" parent="@style/APKTOOL_DUMMYVAL_0x7f150262">
- <item name="android:windowBackground">@android:color/transparent</item>
+ <item name="android:windowBackground">@*android:color/transparent</item>
<item name="android:windowIsFloating">false</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowContentOverlay">@null</item>
@@ -5644,7 +5644,7 @@
<item name="android:windowCloseOnTouchOutside">true</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f15021a">
- <item name="android:windowBackground">@android:color/transparent</item>
+ <item name="android:windowBackground">@*android:color/transparent</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f15021c">
<item name="android:gravity">center</item>
@@ -5666,8 +5666,8 @@
<style name="APKTOOL_DUMMYVAL_0x7f15021e" parent="@style/APKTOOL_DUMMYVAL_0x7f150262">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowAnimationStyle">@null</item>
- <item name="android:statusBarColor">@android:color/transparent</item>
- <item name="android:navigationBarColor">@android:color/transparent</item>
+ <item name="android:statusBarColor">@*android:color/transparent</item>
+ <item name="android:navigationBarColor">@*android:color/transparent</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f15021f" parent="@style/APKTOOL_DUMMYVAL_0x7f150243">
<item name="android:windowBackground">@drawable/APKTOOL_DUMMYVAL_0x7f08027a</item>
@@ -5676,7 +5676,7 @@
<item name="android:windowClipToOutline">false</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150221" parent="@style/APKTOOL_DUMMYVAL_0x7f1508a7">
- <item name="android:windowBackground">@android:color/transparent</item>
+ <item name="android:windowBackground">@*android:color/transparent</item>
<item name="android:windowFrame">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
@@ -5707,12 +5707,12 @@
<item name="android:windowNoTitle">true</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150226" parent="@android:style/Theme.DeviceDefault.Dialog">
- <item name="android:windowBackground">@android:color/transparent</item>
+ <item name="android:windowBackground">@*android:color/transparent</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">false</item>
<item name="android:windowAnimationStyle">@null</item>
- <item name="android:statusBarColor">@android:color/transparent</item>
- <item name="android:navigationBarColor">@android:color/transparent</item>
+ <item name="android:statusBarColor">@*android:color/transparent</item>
+ <item name="android:navigationBarColor">@*android:color/transparent</item>
<item name="android:windowElevation">0.0dip</item>
<item name="android:windowClipToOutline">false</item>
</style>
@@ -6067,7 +6067,7 @@
<item name="android:layout_height">wrap_content</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f15027e">
- <item name="android:popupBackground">@android:color/transparent</item>
+ <item name="android:popupBackground">@*android:color/transparent</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150280" parent="@style/APKTOOL_DUMMYVAL_0x7f1507e7">
<item name="APKTOOL_DUMMYVAL_0x7f040876">@style/APKTOOL_DUMMYVAL_0x7f150afd</item>
@@ -6921,7 +6921,7 @@
<item name="APKTOOL_DUMMYVAL_0x7f0406f3">@dimen/APKTOOL_DUMMYVAL_0x7f070b15</item>
<item name="APKTOOL_DUMMYVAL_0x7f0406f9">1.0dip</item>
<item name="APKTOOL_DUMMYVAL_0x7f040709">20.0dip</item>
- <item name="APKTOOL_DUMMYVAL_0x7f04070c">@android:color/transparent</item>
+ <item name="APKTOOL_DUMMYVAL_0x7f04070c">@*android:color/transparent</item>
<item name="APKTOOL_DUMMYVAL_0x7f04070e">8.0dip</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150323" parent="@android:style/Widget">
@@ -7076,7 +7076,7 @@
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150339" parent="@style/APKTOOL_DUMMYVAL_0x7f150338">
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
- <item name="android:statusBarColor">@android:color/transparent</item>
+ <item name="android:statusBarColor">@*android:color/transparent</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f15033a" parent="@style/APKTOOL_DUMMYVAL_0x7f150339">
<item name="android:windowLightStatusBar">false</item>
@@ -7100,7 +7100,7 @@
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150342" parent="@style/APKTOOL_DUMMYVAL_0x7f150343" />
<style name="APKTOOL_DUMMYVAL_0x7f150343" parent="@style/APKTOOL_DUMMYVAL_0x7f1507fa">
- <item name="android:windowBackground">@android:color/transparent</item>
+ <item name="android:windowBackground">@*android:color/transparent</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">false</item>
<item name="android:windowIsTranslucent">true</item>
@@ -7109,7 +7109,7 @@
<item name="android:windowTranslucentStatus">false</item>
<item name="android:windowTranslucentNavigation">false</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
- <item name="android:statusBarColor">@android:color/transparent</item>
+ <item name="android:statusBarColor">@*android:color/transparent</item>
<item name="APKTOOL_DUMMYVAL_0x7f040b23">true</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f15034e" parent="@style/APKTOOL_DUMMYVAL_0x7f15032b">
@@ -7524,7 +7524,7 @@
<item name="android:windowCloseOnTouchOutside">true</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f1503b0">
- <item name="android:windowBackground">@android:color/transparent</item>
+ <item name="android:windowBackground">@*android:color/transparent</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f1503b1" parent="@style/APKTOOL_DUMMYVAL_0x7f1503d4">
<item name="android:textSize">20.0sp</item>
@@ -7703,7 +7703,7 @@
<item name="android:scaleType">fitStart</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f1503fe">
- <item name="android:background">@android:color/transparent</item>
+ <item name="android:background">@*android:color/transparent</item>
<item name="android:paddingLeft">@dimen/APKTOOL_DUMMYVAL_0x7f070ce1</item>
<item name="android:paddingRight">@dimen/APKTOOL_DUMMYVAL_0x7f070ce1</item>
</style>
@@ -7717,7 +7717,7 @@
<item name="android:textColorHint">@color/APKTOOL_DUMMYVAL_0x7f060a94</item>
<item name="android:ellipsize">end</item>
<item name="android:layout_gravity">start|center</item>
- <item name="android:background">@android:color/transparent</item>
+ <item name="android:background">@*android:color/transparent</item>
<item name="android:paddingTop">@dimen/APKTOOL_DUMMYVAL_0x7f070cdc</item>
<item name="android:paddingBottom">@dimen/APKTOOL_DUMMYVAL_0x7f070cdc</item>
<item name="android:layout_width">fill_parent</item>
@@ -7832,14 +7832,14 @@
<item name="APKTOOL_DUMMYVAL_0x7f040a65">@style/APKTOOL_DUMMYVAL_0x7f150419</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150416" parent="@style/APKTOOL_DUMMYVAL_0x7f150743">
- <item name="android:textColor">@android:color/white</item>
+ <item name="android:textColor">@*android:color/white</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150417" parent="@style/APKTOOL_DUMMYVAL_0x7f150743">
<item name="android:textColor">@color/APKTOOL_DUMMYVAL_0x7f060dd1</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150418" parent="@style/APKTOOL_DUMMYVAL_0x7f150744">
<item name="android:textSize">20.0sp</item>
- <item name="android:textColor">@android:color/white</item>
+ <item name="android:textColor">@*android:color/white</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150419" parent="@style/APKTOOL_DUMMYVAL_0x7f150744">
<item name="android:textSize">20.0sp</item>
@@ -8056,7 +8056,7 @@
<item name="APKTOOL_DUMMYVAL_0x7f0401a3">?APKTOOL_DUMMYVAL_0x7f0406c8</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150453" parent="@style/APKTOOL_DUMMYVAL_0x7f150243">
- <item name="android:windowBackground">@android:color/transparent</item>
+ <item name="android:windowBackground">@*android:color/transparent</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f150454">
<item name="APKTOOL_DUMMYVAL_0x7f04037f">@dimen/APKTOOL_DUMMYVAL_0x7f070da5</item>
@@ -8160,7 +8160,7 @@
<item name="android:layout_marginStart">@dimen/APKTOOL_DUMMYVAL_0x7f070056</item>
</style>
<style name="APKTOOL_DUMMYVAL_0x7f15046e" parent="@style/APKTOOL_DUMMYVAL_0x7f1508b2">
- <item name="android:windowBackground">@android:color/transparent</item>
+ <item name="android:windowBackground">@*android:color/transparent</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:statusBarColor">@color/APKTOOL_DUMMYVAL_0x7f060cd6</item>
<item name="APKTOOL_DUMMYVAL_0x7f040b1a">false</item>
@@ -8323,8 +8323,8 @@
<style name="APKTOOL_DUMMYVAL_0x7f150491" parent="@style/APKTOOL_DUMMYVAL_0x7f1505d3">
<item name="android:textColorSecondary">@color/APKTOOL_DUMMYVAL_0x7f060ca9</item>
<item name="android:colorAccent">@color/APKTOOL_DUMMYVAL_0x7f060ca7</item>
- <item name="android:statusBarColor">@android:color/transparent</item>
- <item name="android:navigationBarColor">@android:color/transparent</item>
+ <item name="android:statusBarColor">@*android:color/transparent</item>
+ <item name="android:navigationBarColor">@*android:color/transparent</item>
<item name="APKTOOL_DUMMYVAL_0x7f04027d">false</item>
<item name="APKTOOL_DUMMYVAL_0x7f040819">@color/APKTOOL_DUMMYVAL_0x7f060ca3</item>
<item name="APKTOOL_DUMMYVAL_0x7f04081e">@color/APKTOOL_DUMMYVAL_0x7f060cb0</item>
@@ -8336,8 +8336,8 @@
<style name="APKTOOL_DUMMYVAL_0x7f150492" parent="@style/APKTOOL_DUMMYVAL_0x7f1505d5">
<item name="android:textColorSecondary">@color/APKTOOL_DUMMYVAL_0x7f060caa</item>
<item name="android:colorAccent">@color/APKTOOL_DUMMYVAL_0x7f060ca8</item>
- <item name="android:statusBarColor">@android:color/transparent</item>
- <item name="android:navigationBarColor">@android:color/transparent</item>
+ <item name="android:statusBarColor">@*android:color/transparent</item>
+ <item name="android:navigationBarColor">@*android:color/transparent</item>
<item name="APKTOOL_DUMMYVAL_0x7f04027d">false</item>
<item name="APKTOOL_DUMMYVAL_0x7f040819">@color/APKTOOL_DUMMYVAL_0x7f060ca4</item>
<item name="APKTOOL_DUMMYVAL_0x7f04081e">@color/APKTOOL_DUMMYVAL_0x7f060cb1</item>
@@ -8813,8 +8813,8 @@
<item name="android:textAppearanceListItemSmall">?APKTOOL_DUMMYVAL_0x7f0409fc</item>
<item name="android:listPreferredItemPaddingStart">?APKTOOL_DUMMYVAL_0x7f040965</item>
<item name="android:listPreferredItemPaddingEnd">?APKTOOL_DUMMYVAL_0x7f040964</item>
- <item name="android:statusBarColor">@android:color/transparent</item>
- <item name="android:navigationBarColor">@android:color/black</item>
+ <item name="android:statusBarColor">@*android:color/transparent</item>
+ <item name="android:navigationBarColor">@*android:color/black</item>
<item name="android:indeterminateTint">?APKTOOL_DUMMYVAL_0x7f0401a9</item>
<item name="android:indeterminateTintMode">src_in</item>
<item name="APKTOOL_DUMMYVAL_0x7f0401a3">@color/APKTOOL_DUMMYVAL_0x7f060ce2</item>
@@ -8844,7 +8844,7 @@
<item name="APKTOOL_DUMMYVAL_0x7f0408e5">@dimen/APKTOOL_DUMMYVAL_0x7f071007</item>
<item name="APKTOOL_DUMMYVAL_0x7f0408e6">@dimen/APKTOOL_DUMMYVAL_0x7f07101c</item>
<item name="APKTOOL_DUMMYVAL_0x7f0408f0">?android:colorBackground</item>
- <item name="APKTOOL_DUMMYVAL_0x7f0408f1">@android:color/black</item>
+ <item name="APKTOOL_DUMMYVAL_0x7f0408f1">@*android:color/black</item>
<item name="APKTOOL_DUMMYVAL_0x7f0408f4">@dimen/APKTOOL_DUMMYVAL_0x7f070f61</item>
<item name="APKTOOL_DUMMYVAL_0x7f0408f5">@dimen/APKTOOL_DUMMYVAL_0x7f070f62</item>
<item name="APKTOOL_DUMMYVAL_0x7f0408f7">@dimen/APKTOOL_DUMMYVAL_0x7f070f63</item>
@@ -8960,8 +8960,8 @@
<item name="android:textAppearanceListItemSmall">?APKTOOL_DUMMYVAL_0x7f0409fc</item>
<item name="android:listPreferredItemPaddingStart">?APKTOOL_DUMMYVAL_0x7f040965</item>
<item name="android:listPreferredItemPaddingEnd">?APKTOOL_DUMMYVAL_0x7f040964</item>
- <item name="android:statusBarColor">@android:color/transparent</item>
- <item name="android:navigationBarColor">@android:color/black</item>
+ <item name="android:statusBarColor">@*android:color/transparent</item>
+ <item name="android:navigationBarColor">@*android:color/black</item>
<item name="android:indeterminateTint">?APKTOOL_DUMMYVAL_0x7f0401a9</item>
<item name="android:indeterminateTintMode">src_in</item>
<item name="APKTOOL_DUMMYVAL_0x7f0401a3">@color/APKTOOL_DUMMYVAL_0x7f060ce3</item>
@@ -8991,7 +8991,7 @@
<item name="APKTOOL_DUMMYVAL_0x7f0408e5">@dimen/APKTOOL_DUMMYVAL_0x7f071007</item>
<item name="APKTOOL_DUMMYVAL_0x7f0408e6">@dimen/APKTOOL_DUMMYVAL_0x7f07101c</item>
<item name="APKTOOL_DUMMYVAL_0x7f0408f0">?android:colorBackground</item>
- <item name="APKTOOL_DUMMYVAL_0x7f0408f1">@android:color/black</item>
+ <item name="APKTOOL_DUMMYVAL_0x7f0408f1">@*android:color/black</item>
<item name="APKTOOL_DUMMYVAL_0x7f0408f4">@dimen/APKTOOL_DUMMYVAL_0x7f070f61</item>
<item name="APKTOOL_DUMMYVAL_0x7f0408f5">@dimen/APKTOOL_DUMMYVAL_0x7f070f62</item>
<item name="APKTOOL_DUMMYVAL_0x7f0408f7">@dimen/APKTOOL_DUMMYVAL_0x7f070f63</item>
@@ -9107,7 +9107,7 @@
<item name="android:alertDialogTheme">@style/APKTOOL_DUMMYVAL_0x7f1505ac</item>
<item name="android:listPreferredItemPaddingStart">?APKTOOL_DUMMYVAL_0x7f040965</item>
<item name="android:listPreferredItemPaddingEnd">?APKTOOL_DUMMYVAL_0x7f040964</item>
- <item name="android:statusBarColor">@android:color/transparent</item>
+ <item name="android:statusBarColor">@*android:color/transparent</item>
<item name="android:indeterminateTint">?APKTOOL_DUMMYVAL_0x7f0401a9</item>
<item name="android:indeterminateTintMode">src_in</item>
<item name="android:timePickerDialogTheme">@style/APKTOOL_DUMMYVAL_0x7f15054c</item>
@@ -9271,7 +9271,7 @@
<item name="android:alertDialogTheme">@style/APKTOOL_DUMMYVAL_0x7f1505ad</item>
<item name="android:listPreferredItemPaddingStart">?APKTOOL_DUMMYVAL_0x7f040965</item>
<item name="android:listPreferredItemPaddingEnd">?APKTOOL_DUMMYVAL_0x7f040964</item>
- <item name="android:statusBarColor">@android:color/transparent</item>
+ <item name="android:statusBarColor">@*android:color/transparent</item>
<item name="android:indeterminateTint">?APKTOOL_DUMMYVAL_0x7f0401a9</item>
<item name="android:indeterminateTintMode">src_in</item>
<item name="android:timePickerDialogTheme">@style/APKTOOL_DUMMYVAL_0x7f15054d</item>
@@ -10107,8 +10107,8 @@
<item name="android:textAppearanceListItemSmall">?APKTOOL_DUMMYVAL_0x7f0409fc</item>
<item name="android:listPreferredItemPaddingStart">?APKTOOL_DUMMYVAL_0x7f040965</item>
<item name="android:listPreferredItemPaddingEnd">?APKTOOL_DUMMYVAL_0x7f040964</item>
- <item name="android:statusBarColor">@android:color/black</item>
- <item name="android:navigationBarColor">@android:color/black</item>
+ <item name="android:statusBarColor">@*android:color/black</item>
+ <item name="android:navigationBarColor">@*android:color/black</item>
<item name="android:indeterminateTint">@color/APKTOOL_DUMMYVAL_0x7f060d26</item>
<item name="android:indeterminateTintMode">src_in</item>
<item name="APKTOOL_DUMMYVAL_0x7f0401a3">@color/APKTOOL_DUMMYVAL_0x7f060ce1</item>
@@ -10201,8 +10201,8 @@
<item name="android:textAppearanceListItemSmall">?APKTOOL_DUMMYVAL_0x7f0409fc</item>
<item name="android:listPreferredItemPaddingStart">?APKTOOL_DUMMYVAL_0x7f040965</item>
<item name="android:listPreferredItemPaddingEnd">?APKTOOL_DUMMYVAL_0x7f040964</item>
- <item name="android:statusBarColor">@android:color/black</item>
- <item name="android:navigationBarColor">@android:color/black</item>
+ <item name="android:statusBarColor">@*android:color/black</item>
+ <item name="android:navigationBarColor">@*android:color/black</item>
<item name="android:indeterminateTint">@color/APKTOOL_DUMMYVAL_0x7f060d27</item>
<item name="android:indeterminateTintMode">src_in</item>
<item name="APKTOOL_DUMMYVAL_0x7f0401a3">@color/APKTOOL_DUMMYVAL_0x7f060ce6</item>
@@ -11726,13 +11726,13 @@
<item name="APKTOOL_DUMMYVAL_0x7f04041d">8.0dip</item>
<item name="APKTOOL_DUMMYVAL_0x7f04041e">@dimen/APKTOOL_DUMMYVAL_0x7f071180</item>
<item name="APKTOOL_DUMMYVAL_0x7f04041f">APKTOOL_DUMMYVAL_0x7f0b0399</item>
- <item name="APKTOOL_DUMMYVAL_0x7f040420">@android:color/transparent</item>
+ <item name="APKTOOL_DUMMYVAL_0x7f040420">@*android:color/transparent</item>
<item name="APKTOOL_DUMMYVAL_0x7f040421">@null</item>
<item name="APKTOOL_DUMMYVAL_0x7f040422">0.0dip</item>
<item name="APKTOOL_DUMMYVAL_0x7f040423">?APKTOOL_DUMMYVAL_0x7f040ad5</item>
<item name="APKTOOL_DUMMYVAL_0x7f040424">?APKTOOL_DUMMYVAL_0x7f040ad5</item>
<item name="APKTOOL_DUMMYVAL_0x7f040425">?android:textAppearanceLarge</item>
- <item name="APKTOOL_DUMMYVAL_0x7f040426">@android:color/transparent</item>
+ <item name="APKTOOL_DUMMYVAL_0x7f040426">@*android:color/transparent</item>
<item name="APKTOOL_DUMMYVAL_0x7f040427">0.0sp</item>
<item name="APKTOOL_DUMMYVAL_0x7f040428">0.0dip</item>
<item name="APKTOOL_DUMMYVAL_0x7f040429">APKTOOL_DUMMYVAL_0x7f0b06f2</item>
@@ -11755,7 +11755,7 @@