SDK technical metadata
You can retrieve technical information about the AwesomeAds Publisher SDK, such as name and version number, as described in the following examples:
To retrieve information about the AwesomeAds SDK (iOS), use the info() function on the AwesomeAds object.
For example:
- Return the version number of the SDK and the platform; for example ios_x.y.z:
AwesomeAds.info()?.version - Return the version number of the SDK only; for example x.y.z:
AwesomeAds.info()?.versionNumber - Return the bundle name for the app:
AwesomeAds.info()?.bundle - Return the name of the app:
AwesomeAds.info()?.name - Return the preferred locale language and region; for example en_UK:
AwesomeAds.info()?.lang
- Return the version number of the SDK and the platform; for example ios_x.y.z:
[[AwesomeAds info] version]; - Return the version number of the SDK only; for example x.y.z:
[[AwesomeAds info] versionNumber]; - Return the bundle name for the app:
[[AwesomeAds info] bundle]; - Return the name of the app:
[[AwesomeAds info] name]; - Return the preferred locale language and region; for example en_UK:
[[AwesomeAds info] lang];