-
Notifications
You must be signed in to change notification settings - Fork 566
Expand file tree
/
Copy pathResources.Designer.cs
More file actions
1805 lines (1606 loc) · 75.6 KB
/
Resources.Designer.cs
File metadata and controls
1805 lines (1606 loc) · 75.6 KB
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
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Xamarin.Android.Tasks.Properties {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "18.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class Resources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Xamarin.Android.Tasks.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to {0}.
///
///This error is likely caused by an issue with the AndroidManifest.xml file or an Android manifest generation attribute in a source code file..
/// </summary>
public static string AAPTManifestError {
get {
return ResourceManager.GetString("AAPTManifestError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unknown option `{0}`. Please check `$(AndroidAapt2CompileExtraArgs)` and `$(AndroidAapt2LinkExtraArgs)` to see if they include any `aapt` command line arguments that are no longer valid for `aapt2` and ensure that all other arguments are valid for `aapt2`..
/// </summary>
public static string APT0001 {
get {
return ResourceManager.GetString("APT0001", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid file name: It must contain only {0}..
/// </summary>
public static string APT0002 {
get {
return ResourceManager.GetString("APT0002", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid file name: It must contain only {0}..
/// </summary>
public static string APT0003 {
get {
return ResourceManager.GetString("APT0003", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid file name: It must start with A-z or a-z or an underscore..
/// </summary>
public static string APT0004 {
get {
return ResourceManager.GetString("APT0004", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid file name: Filenames cannot use Java reserved words..
/// </summary>
public static string APT0005 {
get {
return ResourceManager.GetString("APT0005", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This could be caused by the project exceeding the Windows maximum path length limitation. See https://learn.microsoft.com/dotnet/android/messages/apt2264 for details..
/// </summary>
public static string APT2264 {
get {
return ResourceManager.GetString("APT2264", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This could be caused by the project having non-ASCII characters in its filename or path. See https://learn.microsoft.com/dotnet/android/messages/apt2265 for details..
/// </summary>
public static string APT2265 {
get {
return ResourceManager.GetString("APT2265", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Directory '{0}' is from '{1}'..
/// </summary>
public static string XA_Directory_Is_From {
get {
return ResourceManager.GetString("XA_Directory_Is_From", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to
/// This code was generated by a tool.
/// It was generated from {0}
/// Changes to this file may cause incorrect behavior and will be lost if
/// the contents are regenerated.
/// .
/// </summary>
public static string XA_Manifest_AutoGenerated_Header {
get {
return ResourceManager.GetString("XA_Manifest_AutoGenerated_Header", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not determine API level for $(TargetFrameworkVersion) of '{0}'..
/// </summary>
public static string XA0000_API_for_TargetFrameworkVersion {
get {
return ResourceManager.GetString("XA0000_API_for_TargetFrameworkVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not determine $(AndroidApiLevel) or $(TargetFrameworkVersion); should not be reached..
/// </summary>
public static string XA0000_API_or_TargetFrameworkVersion_Fail {
get {
return ResourceManager.GetString("XA0000_API_or_TargetFrameworkVersion_Fail", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unhandled exception: {0}.
/// </summary>
public static string XA0000_Exception {
get {
return ResourceManager.GetString("XA0000_Exception", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not determine $(TargetFrameworkVersion) for API level '{0}.'.
/// </summary>
public static string XA0000_TargetFrameworkVersion_for_API {
get {
return ResourceManager.GetString("XA0000_TargetFrameworkVersion_for_API", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unsupported or invalid $(TargetFrameworkVersion) value of '{0}'. Please update your Project Options..
/// </summary>
public static string XA0001 {
get {
return ResourceManager.GetString("XA0001", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not find mono.android.jar.
/// </summary>
public static string XA0002 {
get {
return ResourceManager.GetString("XA0002", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid `android:versionCode` value `{0}` in `AndroidManifest.xml`. It must be an integer value..
/// </summary>
public static string XA0003 {
get {
return ResourceManager.GetString("XA0003", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid `android:versionCode` value `{0}` in `AndroidManifest.xml`. The value must be in the range of 0 to {1}..
/// </summary>
public static string XA0004 {
get {
return ResourceManager.GetString("XA0004", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Building with JDK version `{0}` is not supported. Please install JDK version `{1}`. See https://aka.ms/xamarin/jdk9-errors.
/// </summary>
public static string XA0030 {
get {
return ResourceManager.GetString("XA0030", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Java SDK {0} or above is required when using {1}.
///Download the latest JDK at: https://aka.ms/msopenjdk
///Note: the Android Designer is incompatible with Java SDK 11.0: https://aka.ms/vs2019-and-jdk-11.
/// </summary>
public static string XA0031 {
get {
return ResourceManager.GetString("XA0031", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Java SDK {0} or above is required when using .NET 6 or higher. Download the latest JDK at: https://aka.ms/msopenjdk.
/// </summary>
public static string XA0031_NET {
get {
return ResourceManager.GetString("XA0031_NET", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Java SDK {0} or above is required when using Android SDK Build-Tools {1}..
/// </summary>
public static string XA0032 {
get {
return ResourceManager.GetString("XA0032", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to get the Java SDK version because the returned value does not appear to contain a valid version number. `{0} -version` returned: ```{1}```.
/// </summary>
public static string XA0033 {
get {
return ResourceManager.GetString("XA0033", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to get the Java SDK version. Please ensure you have Java {0} or above installed..
/// </summary>
public static string XA0034 {
get {
return ResourceManager.GetString("XA0034", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to determine the Android ABI from the value '{0}'. Edit the project file in a text editor and set the 'RuntimeIdentifiers' MSBuild property to contain only valid identifiers for the Android platform..
/// </summary>
public static string XA0035 {
get {
return ResourceManager.GetString("XA0035", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The 'AndroidSupportedAbis' MSBuild property is no longer supported. Edit the project file in a text editor, remove any uses of 'AndroidSupportedAbis', and use the 'RuntimeIdentifiers' MSBuild property instead..
/// </summary>
public static string XA0036 {
get {
return ResourceManager.GetString("XA0036", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to EmbeddedNativeLibrary '{0}' is invalid in Android Application projects. Please use AndroidNativeLibrary instead..
/// </summary>
public static string XA0100 {
get {
return ResourceManager.GetString("XA0100", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid value for `$(AndroidSequencePointsMode)`: {0}.
/// </summary>
public static string XA0104 {
get {
return ResourceManager.GetString("XA0104", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The $(TargetFrameworkVersion) for {0} ({1}) is greater than the $(TargetFrameworkVersion) for the application project ({2}). Please increase the $(TargetFrameworkVersion) for the application project..
/// </summary>
public static string XA0105 {
get {
return ResourceManager.GetString("XA0105", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} is a Reference Assembly..
/// </summary>
public static string XA0107 {
get {
return ResourceManager.GetString("XA0107", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ignoring Reference Assembly `{0}`..
/// </summary>
public static string XA0107_Ignoring {
get {
return ResourceManager.GetString("XA0107_Ignoring", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not get version from '{0}'. Defaulting to 1.0.
/// </summary>
public static string XA0108 {
get {
return ResourceManager.GetString("XA0108", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unsupported version of AAPT2 found at path '{0}'. Open the project file in a text editor and remove the 'Aapt2ToolPath' MSBuild property or ensure it is set to a valid location..
/// </summary>
public static string XA0111 {
get {
return ResourceManager.GetString("XA0111", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AAPT2 was not found at path '{0}'. Open the project file in a text editor and remove the 'Aapt2ToolPath' MSBuild property or ensure it is set to a valid location..
/// </summary>
public static string XA0112 {
get {
return ResourceManager.GetString("XA0112", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Google Play requires that new applications and updates must use a TargetFrameworkVersion of {0} (API level {1}) or above. You are currently targeting {2} (API level {3})..
/// </summary>
public static string XA0113 {
get {
return ResourceManager.GetString("XA0113", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to find `EmbeddedResource` named `{0}`..
/// </summary>
public static string XA0116 {
get {
return ResourceManager.GetString("XA0116", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The TargetFrameworkVersion {0} is deprecated. Please update it to be v5.0 or higher..
/// </summary>
public static string XA0117 {
get {
return ResourceManager.GetString("XA0117", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not parse '{0}'.
/// </summary>
public static string XA0118_Parse {
get {
return ResourceManager.GetString("XA0118_Parse", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not resolve `target` in lock file for '{0}'.
/// </summary>
public static string XA0118_Target {
get {
return ResourceManager.GetString("XA0118_Target", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Using Fast Deployment and Android App Bundles at the same time is not currently supported. Use Fast Deployment for Debug configurations and Android App Bundles for Release configurations..
/// </summary>
public static string XA0119_AAB {
get {
return ResourceManager.GetString("XA0119_AAB", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Using fast deployment and AOT at the same time is not recommended. Use fast deployment for Debug configurations and AOT for Release configurations..
/// </summary>
public static string XA0119_AOT {
get {
return ResourceManager.GetString("XA0119_AOT", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Disabling the interpreter; using the interpreter and AOT at the same time is not supported. Use the interpreter for hot reload support in Debug configurations and AOT for Release configurations..
/// </summary>
public static string XA0119_Interpreter {
get {
return ResourceManager.GetString("XA0119_Interpreter", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Using fast deployment and the linker at the same time is not recommended. Use fast deployment for Debug configurations and the linker for Release configurations..
/// </summary>
public static string XA0119_LinkMode {
get {
return ResourceManager.GetString("XA0119_LinkMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Using fast deployment and a code shrinker at the same time is not recommended. Use fast deployment for Debug configurations and a code shrinker for Release configurations..
/// </summary>
public static string XA0119_LinkTool {
get {
return ResourceManager.GetString("XA0119_LinkTool", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Assembly '{0}' is using '[assembly: {1}]', which is no longer supported. Use a newer version of this NuGet package or notify the library author..
/// </summary>
public static string XA0121 {
get {
return ResourceManager.GetString("XA0121", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Assembly '{0}' is using a deprecated attribute '[assembly: {1}]'. Use a newer version of this NuGet package or notify the library author..
/// </summary>
public static string XA0122 {
get {
return ResourceManager.GetString("XA0122", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Removing {0} from {1}. Lint {2} does not support this check..
/// </summary>
public static string XA0123 {
get {
return ResourceManager.GetString("XA0123", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '{0}' is using a deprecated debug information level.
///Set the debugging information to Portable in the Visual Studio project property pages or edit the project file in a text editor and set the 'DebugType' MSBuild property to 'portable' to use the newer, cross-platform debug information level.
///If this file comes from a NuGet package, update to a newer version of the NuGet package or notify the library author..
/// </summary>
public static string XA0125 {
get {
return ResourceManager.GetString("XA0125", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to %(AndroidAsset.AssetPack) and %(AndroidAsset.AssetPack) item metadata are only supported when `$(AndroidApplication)` is `true`..
/// </summary>
public static string XA0138 {
get {
return ResourceManager.GetString("XA0138", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to `@(AndroidAsset)` `{0}` has an invalid `DeliveryType` metadata of `{1}`. Supported values are `installtime`, `ondemand` or `fastfollow`..
/// </summary>
public static string XA0139 {
get {
return ResourceManager.GetString("XA0139", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The AssetPack value defined for `{0}` has invalid characters. `{1}` should only contain A-z, a-z, 0-9 or an underscore..
/// </summary>
public static string XA0140 {
get {
return ResourceManager.GetString("XA0140", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Android 16 will require 16 KB page sizes, shared library '{3}' does not have a 16 KB page size. Please inform the authors of the NuGet package '{0}' version '{1}' which contains '{2}'. See https://developer.android.com/guide/practices/page-sizes for more details..
/// </summary>
public static string XA0141 {
get {
return ResourceManager.GetString("XA0141", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Command '{0}' failed.\n{1}.
/// </summary>
public static string XA0142 {
get {
return ResourceManager.GetString("XA0142", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to launch the Android emulator for AVD '{0}': {1}.
/// </summary>
public static string XA0143 {
get {
return ResourceManager.GetString("XA0143", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Android emulator for AVD '{0}' failed with error '{1}': {2}.
/// </summary>
public static string XA0144 {
get {
return ResourceManager.GetString("XA0144", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Android emulator for AVD '{0}' did not finish booting within {1} seconds. Increase 'BootTimeoutSeconds' or check the emulator configuration..
/// </summary>
public static string XA0145 {
get {
return ResourceManager.GetString("XA0145", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There was a problem parsing {0}. This is likely due to incomplete or invalid XML. Exception: {1}.
/// </summary>
public static string XA1000 {
get {
return ResourceManager.GetString("XA1000", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AndroidResgen: Warning while updating resource XML '{0}': {1}.
/// </summary>
public static string XA1001 {
get {
return ResourceManager.GetString("XA1001", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The closest match found for '{0}' is '{1}', but the capitalization does not match. Please correct the capitalization..
/// </summary>
public static string XA1002 {
get {
return ResourceManager.GetString("XA1002", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Attempting basic type name matching for element with ID '{0}' and type '{1}'.
/// </summary>
public static string XA1005 {
get {
return ResourceManager.GetString("XA1005", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to If basic type name matching fails, please add a `xamarin:managedType` attribute to the element to specify the fully qualified managed type name of the element..
/// </summary>
public static string XA1005_Instructions {
get {
return ResourceManager.GetString("XA1005_Instructions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The TargetFrameworkVersion (Android API level {0}) is higher than the targetSdkVersion ({1}). Please increase the `android:targetSdkVersion` in the `AndroidManifest.xml` so that the API levels match..
/// </summary>
public static string XA1006 {
get {
return ResourceManager.GetString("XA1006", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The minSdkVersion ({0}) is greater than the targetSdkVersion. Please change the value such that the minSdkVersion is less than or equal to the targetSdkVersion ({1})..
/// </summary>
public static string XA1007 {
get {
return ResourceManager.GetString("XA1007", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The TargetFrameworkVersion (Android API level {0}) is lower than the targetSdkVersion ({1}). Please increase the `$(TargetFrameworkVersion)` or decrease the `android:targetSdkVersion` in the `AndroidManifest.xml` so that the API levels match..
/// </summary>
public static string XA1008 {
get {
return ResourceManager.GetString("XA1008", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid `$(AndroidManifestPlaceholders)` value for Android manifest placeholders. Please use `key1=value1;key2=value2` format. The specified value was: `{0}`.
/// </summary>
public static string XA1010 {
get {
return ResourceManager.GetString("XA1010", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Using ProGuard with the D8 DEX compiler is no longer supported. Please set the code shrinker to 'r8' in the Visual Studio project property pages or edit the project file in a text editor and set the 'AndroidLinkTool' MSBuild property to 'r8'..
/// </summary>
public static string XA1011 {
get {
return ResourceManager.GetString("XA1011", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Included layout root element override ID '{0}' is not valid..
/// </summary>
public static string XA1012 {
get {
return ResourceManager.GetString("XA1012", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to parse ID of node '{0}' in the layout file '{1}'..
/// </summary>
public static string XA1013 {
get {
return ResourceManager.GetString("XA1013", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to JAR library references with identical file names but different contents were found: {0}. Please remove any conflicting libraries from EmbeddedJar, InputJar and AndroidJavaLibrary..
/// </summary>
public static string XA1014 {
get {
return ResourceManager.GetString("XA1014", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to More than one Android Wear project is specified as the paired project. It can be at most one..
/// </summary>
public static string XA1015 {
get {
return ResourceManager.GetString("XA1015", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Target Wear application's project '{0}' does not specify required 'AndroidManifest' project property..
/// </summary>
public static string XA1016 {
get {
return ResourceManager.GetString("XA1016", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Target Wear application's AndroidManifest.xml does not specify required 'package' attribute..
/// </summary>
public static string XA1017 {
get {
return ResourceManager.GetString("XA1017", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specified AndroidManifest file does not exist: {0}..
/// </summary>
public static string XA1018 {
get {
return ResourceManager.GetString("XA1018", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to `LibraryProjectProperties` file `{0}` is located in a parent directory of the bindings project's intermediate output directory. Please adjust the path to use the original `project.properties` file directly from the Android library project directory..
/// </summary>
public static string XA1019 {
get {
return ResourceManager.GetString("XA1019", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to At least one Java library is required for binding. Check that a Java library is included in the project and has the appropriate build action: 'LibraryProjectZip' (for AAR or ZIP), 'EmbeddedJar', 'InputJar' (for JAR), or 'LibraryProjectProperties' (project.properties)..
/// </summary>
public static string XA1020 {
get {
return ResourceManager.GetString("XA1020", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specified source Java library not found: {0}.
/// </summary>
public static string XA1021 {
get {
return ResourceManager.GetString("XA1021", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specified reference Java library not found: {0}.
/// </summary>
public static string XA1022 {
get {
return ResourceManager.GetString("XA1022", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Using the DX DEX Compiler is not supported. Please set the DEX compiler to 'd8' in the Visual Studio project property pages or edit the project file in a text editor and set the 'AndroidDexTool' MSBuild property to 'd8'..
/// </summary>
public static string XA1023 {
get {
return ResourceManager.GetString("XA1023", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ignoring configuration file '{0}'. .NET configuration files are not supported in .NET for Android projects that target .NET 6 or higher..
/// </summary>
public static string XA1024 {
get {
return ResourceManager.GetString("XA1024", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The experimental 'Hybrid' value for the 'AndroidAotMode' MSBuild property is not currently compatible with the armeabi-v7a target ABI. To continue using the experimental 'Hybrid' value for 'AndroidAotMode', deselect the armeabi-v7a target ABI in the Visual Studio project property pages or edit the project file in a text editor and remove 'armeabi-v7a' from the 'AndroidSupportedAbis' MSBuild property..
/// </summary>
public static string XA1025 {
get {
return ResourceManager.GetString("XA1025", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The 'EnableProguard' MSBuild property is set to 'true' and the 'AndroidLinkTool' MSBuild property is empty, so 'AndroidLinkTool' will default to 'proguard'..
/// </summary>
public static string XA1027 {
get {
return ResourceManager.GetString("XA1027", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The 'AndroidEnableProguard' MSBuild property is set to 'true' and the 'AndroidLinkTool' MSBuild property is empty, so 'AndroidLinkTool' will default to 'proguard'..
/// </summary>
public static string XA1028 {
get {
return ResourceManager.GetString("XA1028", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The 'AotAssemblies' MSBuild property is deprecated. Edit the project file in a text editor to remove this property, and use the 'RunAOTCompilation' MSBuild property instead..
/// </summary>
public static string XA1029 {
get {
return ResourceManager.GetString("XA1029", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The 'RunAOTCompilation' MSBuild property is only supported when trimming is enabled. Edit the project file in a text editor to set 'PublishTrimmed' to 'true' for this build configuration..
/// </summary>
public static string XA1030 {
get {
return ResourceManager.GetString("XA1030", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The 'AndroidHttpClientHandlerType' property value '{0}' must derive from '{1}'.
///Please change the value to an assembly-qualifed type name which inherits from '{1}' or remove the property completely..
/// </summary>
public static string XA1031 {
get {
return ResourceManager.GetString("XA1031", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The 'AndroidHttpClientHandlerType' property value '{0}' must not derive from 'System.Net.Htt.HttpClientHandler'.
///Please change the value to an assembly-qualifed type name which inherits from 'System.Net.Http.HttpMessageHandler' or remove the property completely..
/// </summary>
public static string XA1031_HCH {
get {
return ResourceManager.GetString("XA1031_HCH", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to resolve '{0}' from '{1}'. Please check your `AndroidHttpClientHandlerType` setting..
/// </summary>
public static string XA1032 {
get {
return ResourceManager.GetString("XA1032", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not resolve '{0}'. Please check your `AndroidHttpClientHandlerType` setting..
/// </summary>
public static string XA1033 {
get {
return ResourceManager.GetString("XA1033", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Your project references '{0}' which uses the `_Microsoft.Android.Resource.Designer` assembly, but you do not have this feature enabled. Please set the `AndroidUseDesignerAssembly` MSBuild property to `true` in your project file..
/// </summary>
public static string XA1034 {
get {
return ResourceManager.GetString("XA1034", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The 'BundleAssemblies' property is deprecated and it has no effect on the application build. Equivalent functionality is implemented by the 'AndroidUseAssemblyStore' and 'AndroidEnableAssemblyCompression' properties..
/// </summary>
public static string XA1035 {
get {
return ResourceManager.GetString("XA1035", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AndroidManifest.xml //uses-sdk/@android:minSdkVersion '{0}' does not match the $(SupportedOSPlatformVersion) value '{1}' in the project file (if there is no $(SupportedOSPlatformVersion) value in the project file, then a default value has been assumed).
///Either change the value in the AndroidManifest.xml to match the $(SupportedOSPlatformVersion) value, or remove the value in the AndroidManifest.xml (and add a $(SupportedOSPlatformVersion) value to the project file if it doesn't already exist)..
/// </summary>
public static string XA1036 {
get {
return ResourceManager.GetString("XA1036", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The '{0}' MSBuild property is deprecated and will be removed in .NET {1}. See https://aka.ms/net-android-deprecations for more details..
/// </summary>
public static string XA1037 {
get {
return ResourceManager.GetString("XA1037", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The '{0}' MSBuild property has an invalid value of '{1}'. A valid value is one of: {2}..
/// </summary>
public static string XA1038 {
get {
return ResourceManager.GetString("XA1038", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Android Support libraries are not supported in .NET 9 and later, please migrate to AndroidX. See https://aka.ms/net-android/androidx for more details..
/// </summary>
public static string XA1039 {
get {
return ResourceManager.GetString("XA1039", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The {0} runtime on Android is an experimental feature and not yet suitable for production use. File issues at: https://github.com/dotnet/android/issues.
/// </summary>
public static string XA1040 {
get {
return ResourceManager.GetString("XA1040", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The MSBuild property '{0}' has an invalid value of '{1}'. The value is expected to be a directory path representing the relative location of your Assets or Resources..
/// </summary>
public static string XA1041 {
get {
return ResourceManager.GetString("XA1041", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use of AppDomain.CreateDomain() detected in assembly: {0}. .NET 6 and higher will only support a single AppDomain, so this API will no longer be available in .NET for Android once .NET 6 is released..
/// </summary>
public static string XA2000 {
get {
return ResourceManager.GetString("XA2000", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Support for the 'MONO_GC_PARAMS=bridge-implementation=old' value will be removed in .NET 7..
/// </summary>
public static string XA2000_gcParams_bridgeImpl {
get {
return ResourceManager.GetString("XA2000_gcParams_bridgeImpl", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Source file '{0}' could not be found..
/// </summary>
public static string XA2001 {
get {
return ResourceManager.GetString("XA2001", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can not resolve reference: `{0}`, referenced by {1}. Perhaps it doesn't exist in the .NET for Android profile?.
/// </summary>
public static string XA2002_Framework {
get {
return ResourceManager.GetString("XA2002_Framework", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can not resolve reference: `{0}`, referenced by {1}. Please add a NuGet package or assembly reference for `{0}`, or remove the reference to `{2}`..
/// </summary>
public static string XA2002_NuGet {
get {
return ResourceManager.GetString("XA2002_NuGet", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not resolve reference to '{0}' (defined in assembly '{1}') with scope '{2}'. When the scope is different from the defining assembly, it usually means that the type is forwarded..
/// </summary>
public static string XA2006 {
get {
return ResourceManager.GetString("XA2006", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Exception while loading assemblies: {0}.
/// </summary>
public static string XA2007 {
get {
return ResourceManager.GetString("XA2007", resourceCulture);