Skip to content

Commit e11be1a

Browse files
[interactive_media_ads] Updates readme to clarify currently supported features (flutter#7398)
1 parent b60ff4a commit e11be1a

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

packages/interactive_media_ads/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.2+1
2+
3+
* Updates README to clarify supported features and link to issues tracker.
4+
15
## 0.1.2
26

37
* Adds support for all `AdEventType`s and ad data. See `AdEvent.adData`.

packages/interactive_media_ads/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ a separate video player positioned on top of the app's content video player.
1313
|-------------|---------|-------|
1414
| **Support** | SDK 21+ | 12.0+ |
1515

16-
**This package is still in development.**
16+
**NOTE:**
17+
* The initial release for this package supports linear pre-roll video ads on iOS and Android
18+
* platforms.
19+
* Companion ads, Background Audio ads and Google Dynamic Ad Insertion methods are currently not
20+
* supported.
1721

1822
## IMA client-side overview
1923

packages/interactive_media_ads/android/src/main/kotlin/dev/flutter/packages/interactive_media_ads/AdsRequestProxyApi.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class AdsRequestProxyApi(override val pigeonRegistrar: ProxyApiRegistrar) :
2121
*
2222
* This must match the version in pubspec.yaml.
2323
*/
24-
const val pluginVersion = "0.1.2"
24+
const val pluginVersion = "0.1.2+1"
2525
}
2626

2727
override fun setAdTagUrl(pigeon_instance: AdsRequest, adTagUrl: String) {

packages/interactive_media_ads/ios/interactive_media_ads/Sources/interactive_media_ads/AdsRequestProxyAPIDelegate.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class AdsRequestProxyAPIDelegate: PigeonApiDelegateIMAAdsRequest {
1313
/// The current version of the `interactive_media_ads` plugin.
1414
///
1515
/// This must match the version in pubspec.yaml.
16-
static let pluginVersion = "0.1.2"
16+
static let pluginVersion = "0.1.2+1"
1717

1818
func pigeonDefaultConstructor(
1919
pigeonApi: PigeonApiIMAAdsRequest, adTagUrl: String, adDisplayContainer: IMAAdDisplayContainer,

packages/interactive_media_ads/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: interactive_media_ads
22
description: A Flutter plugin for using the Interactive Media Ads SDKs on Android and iOS.
33
repository: https://github.com/flutter/packages/tree/main/packages/interactive_media_ads
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+interactive_media_ads%22
5-
version: 0.1.2 # This must match the version in
5+
version: 0.1.2+1 # This must match the version in
66
# `android/src/main/kotlin/dev/flutter/packages/interactive_media_ads/AdsRequestProxyApi.kt` and
77
# `ios/interactive_media_ads/Sources/interactive_media_ads/AdsRequestProxyAPIDelegate.swift`
88

0 commit comments

Comments
 (0)