@@ -71,12 +71,12 @@ protected PendingDynamicLinkData(
71
71
}
72
72
73
73
/**
74
- * Return the {@link Bundle} so that 1P dynamic links extensions can access extension data. The
74
+ * Returns the {@link Bundle} so that 1P dynamic links extensions can access extension data. The
75
75
* data is stored bundle with keys defined by the extension. The bundle is shared with all
76
76
* extensions, so the keys should be unique using the package name of the extension to define the
77
77
* namespace.
78
78
*
79
- * @return A bundle will all extension data.
79
+ * @return A bundle with all extensions data.
80
80
* @hide
81
81
*/
82
82
@ KeepForSdk
@@ -89,7 +89,7 @@ public Bundle getExtensions() {
89
89
}
90
90
91
91
/**
92
- * Return the link parameter of the dynamic link .
92
+ * Returns the link parameter of the Firebase Dynamic Link .
93
93
*
94
94
* <p>This link will be set as data in the launch Intent, see {@link Intent#setData(Uri)}, which
95
95
* will match {@link android.content.IntentFilter} to deep link into the app.
@@ -109,8 +109,8 @@ public Uri getLink() {
109
109
}
110
110
111
111
/**
112
- * Return the {@link Bundle} which contains utm parameters associated with the firebase dynamic
113
- * link .
112
+ * Returns the {@link Bundle} which contains utm parameters associated with the Firebase Dynamic
113
+ * Link .
114
114
*
115
115
* @return Bundle of utm parameters associated with firebase dynamic link.
116
116
*/
@@ -124,9 +124,9 @@ public Bundle getUtmParameters() {
124
124
}
125
125
126
126
/**
127
- * The minimum app version requested to process the dynamic link that can be compared directly
128
- * with {@link android.content.pm.PackageInfo#versionCode}. If the minimum version code is higher
129
- * than the installed app version code, the app can upgrade using {@link
127
+ * Gets the minimum app version requested to process the Firebase Dynamic Link that can be
128
+ * compared directly with {@link android.content.pm.PackageInfo#versionCode}. If the minimum
129
+ * version code is higher than the installed app version code, the app can upgrade using {@link
130
130
* #getUpdateAppIntent(Context)}.
131
131
*
132
132
* @return minimum version code set on the dynamic link, or 0 if not specified.
@@ -139,8 +139,8 @@ public int getMinimumAppVersion() {
139
139
}
140
140
141
141
/**
142
- * The time that the user clicked on the dynamic link . This can be used to determine the amount of
143
- * time that has passed since the user selected the link until the app is launched.
142
+ * Gets the time that the user clicked on the Firebase Dynamic Link . This can be used to determine
143
+ * the amount of time that has passed since the user selected the link until the app is launched.
144
144
*
145
145
* @return The number of milliseconds that have elapsed since January 1, 1970.
146
146
*/
@@ -152,7 +152,7 @@ public long getClickTimestamp() {
152
152
}
153
153
154
154
/**
155
- * Provides the redirect url, which is used as the alternative to opening the app. This url may
155
+ * Gets the redirect url, which is used as the alternative to opening the app. This url may
156
156
* install the app or go to an app specific website.
157
157
*
158
158
* @return Url that can be used to create an intent to launch an activity.
@@ -168,7 +168,7 @@ public Uri getRedirectUrl() {
168
168
}
169
169
170
170
/**
171
- * Provide an intent to update the app to the version in the Play Store.
171
+ * Gets the intent to update the app to the version in the Play Store.
172
172
*
173
173
* <p>An intent is returned to be used as a parameter to {@link
174
174
* android.app.Activity#startActivity(Intent)} to launch the Play Store update flow for the app.
0 commit comments