firebase:: dynamic_links:: AndroidParameters
#include <components.h>
Android Parameters.
Summary
Note that the strings used by the struct are not copied, as so must either be statically allocated, or must persist in memory until the DynamicLinkComponents that uses them goes out of scope.
Constructors and Destructors |
|
---|---|
AndroidParameters(const char *package_name_)
Constructs a set of Android parameters with the given package name.
|
|
AndroidParameters()
Constructs an empty set of Android parameters.
|
Public attributes |
|
---|---|
fallback_url
|
const char *
The link to open when the app isn't installed.
|
minimum_version
|
int
The versionCode of the minimum version of your app that can open the link.
|
package_name
|
const char *
The package name of the Android app to use to open the link.
|
Public attributes
fallback_url
const char * firebase::dynamic_links::AndroidParameters::fallback_url
The link to open when the app isn't installed.
Specify this to do something other than install your app from the Play Store when the app isn't installed, such as open the mobile web version of the content, or display a promotional page for your app.
minimum_version
int firebase::dynamic_links::AndroidParameters::minimum_version
The versionCode of the minimum version of your app that can open the link.
package_name
const char * firebase::dynamic_links::AndroidParameters::package_name
The package name of the Android app to use to open the link.
The app must be connected to your project from the Overview page of the Firebase console. Note this field is required.
Public functions
AndroidParameters
firebase::dynamic_links::AndroidParameters::AndroidParameters( const char *package_name_ )
Constructs a set of Android parameters with the given package name.
The package name of the Android app to use to open the link.
AndroidParameters
firebase::dynamic_links::AndroidParameters::AndroidParameters()
Constructs an empty set of Android parameters.