firebase:: dynamic_links:: IOSParameters
#include <components.h>
iOS 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 |
|
---|---|
IOSParameters(const char *bundle_id_)
Constructs a set of IOS parameters with the given bundle id.
|
|
IOSParameters()
Constructs an empty set of IOS parameters.
|
Public attributes |
|
---|---|
app_store_id
|
const char *
|
bundle_id
|
const char *
The parameters ID of the iOS app to use to open the link.
|
custom_scheme
|
const char *
The app's custom URL scheme, if defined to be something other than your app's parameters ID.
|
fallback_url
|
const char *
The link to open on iOS if the app is not installed.
|
ipad_bundle_id
|
const char *
The iPad parameters ID of the app.
|
ipad_fallback_url
|
const char *
The link to open on iPad if the app is not installed.
|
minimum_version
|
const char *
The minimum version of your app that can open the link.
|
Public attributes
app_store_id
const char * firebase::dynamic_links::IOSParameters::app_store_id
bundle_id
const char * firebase::dynamic_links::IOSParameters::bundle_id
The parameters ID of the iOS 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.
custom_scheme
const char * firebase::dynamic_links::IOSParameters::custom_scheme
The app's custom URL scheme, if defined to be something other than your app's parameters ID.
fallback_url
const char * firebase::dynamic_links::IOSParameters::fallback_url
The link to open on iOS if the app is not installed.
Specify this to do something other than install your app from the App 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.
ipad_bundle_id
const char * firebase::dynamic_links::IOSParameters::ipad_bundle_id
The iPad parameters ID of the app.
ipad_fallback_url
const char * firebase::dynamic_links::IOSParameters::ipad_fallback_url
The link to open on iPad if the app is not installed.
Overrides fallback_url when on iPad.
minimum_version
const char * firebase::dynamic_links::IOSParameters::minimum_version
The minimum version of your app that can open the link.
Public functions
IOSParameters
firebase::dynamic_links::IOSParameters::IOSParameters( const char *bundle_id_ )
Constructs a set of IOS parameters with the given bundle id.
Details | |||
---|---|---|---|
Parameters |
|
IOSParameters
firebase::dynamic_links::IOSParameters::IOSParameters()
Constructs an empty set of IOS parameters.