@@ -122,7 +122,7 @@ DynamicLinkComponents CreateDynamicLinkComponents() {
122
122
#endif
123
123
124
124
return new DynamicLinkComponents (
125
- // The base Link.
125
+ // The base Link. This should be in your allowlist in the Firebase console.
126
126
new System . Uri ( "https://google.com/abc" ) ,
127
127
// The dynamic link domain.
128
128
kDomainUriPrefix ) {
@@ -134,11 +134,11 @@ DynamicLinkComponents CreateDynamicLinkComponents() {
134
134
Content = "mycontent"
135
135
} ,
136
136
IOSParameters = new Firebase . DynamicLinks . IOSParameters ( appIdentifier ) {
137
- FallbackUrl = new System . Uri ( "https://mysite /fallback" ) ,
137
+ FallbackUrl = new System . Uri ( "https://google.com /fallback" ) ,
138
138
CustomScheme = "mycustomscheme" ,
139
139
MinimumVersion = "1.2.3" ,
140
140
IPadBundleId = appIdentifier ,
141
- IPadFallbackUrl = new System . Uri ( "https://mysite /fallbackipad" )
141
+ IPadFallbackUrl = new System . Uri ( "https://google.com /fallbackipad" )
142
142
} ,
143
143
ITunesConnectAnalyticsParameters =
144
144
new Firebase . DynamicLinks . ITunesConnectAnalyticsParameters ( ) {
@@ -147,13 +147,13 @@ DynamicLinkComponents CreateDynamicLinkComponents() {
147
147
ProviderToken = "pq-rstuv"
148
148
} ,
149
149
AndroidParameters = new Firebase . DynamicLinks . AndroidParameters ( appIdentifier ) {
150
- FallbackUrl = new System . Uri ( "https://mysite /fallback" ) ,
150
+ FallbackUrl = new System . Uri ( "https://google.com /fallback" ) ,
151
151
MinimumVersion = 12
152
152
} ,
153
153
SocialMetaTagParameters = new Firebase . DynamicLinks . SocialMetaTagParameters ( ) {
154
154
Title = "My App!" ,
155
155
Description = "My app is awesome!" ,
156
- ImageUrl = new System . Uri ( "https://mysite .com/someimage.jpg" )
156
+ ImageUrl = new System . Uri ( "https://google .com/someimage.jpg" )
157
157
} ,
158
158
} ;
159
159
}
0 commit comments