Skip to content

Commit be2b7a8

Browse files
committed
Update the text.
1 parent dd6849e commit be2b7a8

File tree

1 file changed

+22
-24
lines changed
  • gma/src/include/firebase

1 file changed

+22
-24
lines changed

gma/src/include/firebase/gma.h

Lines changed: 22 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -55,36 +55,32 @@ template <typename ResultType>
5555
class Future {
5656
// Empty class (used for documentation only).
5757
};
58+
59+
/// @brief Firebase App class. For more information, see the <a
60+
/// href="https://firebase.google.com/docs/reference/cpp/class/firebase/app">Firebase
61+
/// C++ SDK documentation</a>.
62+
class App {
63+
// Empty class (used for documentation only).
64+
};
65+
5866
#endif // defined(DOXYGEN_ADMOB)
5967

6068
/// @brief API for Google Mobile Ads with Firebase.
6169
///
6270
/// The GMA API allows you to load and display mobile ads using the Google
6371
/// Mobile Ads SDK. Each ad format has its own header file.
6472
///
65-
/// @deprecated The Google Mobile Ads (GMA) C++ SDK has been deprecated as of
66-
/// June 17, 2024.
67-
///
68-
/// Over the subequent 12 months, we’ll provide support for critical bugs only,
69-
/// until the GMA C++ SDK reaches the End-of-Maintenance (EoM) phase on June 17,
70-
/// 2025.
71-
///
72-
/// To ensure continuity and seamless functionality, we suggest updating your
73-
/// mobile applications to use the GMA's iOS and Android SDKs.
74-
///
75-
/// Please follow the steps in [Get started with AdMob in your iOS
76-
/// project](https://firebase.google.com/docs/admob/ios/quick-start) and [Get
77-
/// started with AdMob in your Android
78-
/// project](https://firebase.google.com/docs/admob/android/quick-start) to
79-
/// incorporate the GMA's iOS and Android SDKs into your mobile
80-
/// applications. This approach will help mitigate any disruptions caused by the
81-
/// discontinuation of the C++ SDK.
82-
///
83-
/// We know this change may take some planning, and we're here to support you
84-
/// during this transition. If you have any questions or require assistance,
85-
/// please contact [Google Mobile Ads SDK Technical
86-
/// Forum](https://groups.google.com/g/google-admob-ads-sdk) or [Firebase
87-
/// Support](https://firebase.google.com/support).
73+
/// @deprecated **The Google Mobile Ads (GMA) C++ SDK is _deprecated_ as of June
74+
/// 17, 2024 and should not be adopted in projects that don't already use it. It
75+
/// will enter _End-of-Maintenance (EoM)_ on June 17, 2025. Note that versions
76+
/// of the SDK released before the EoM date will continue to function, but no
77+
/// further bug fixes or changes will be released after the EoM date.**
78+
///
79+
/// Instead of the Google Mobile Ads C++ SDK, consider using the
80+
/// [iOS](/docs/admob/ios/quick-start) and
81+
/// [Android](/docs/admob/android/quick-start) SDKs from AdMob. For support,
82+
/// reach out to the [Google Mobile Ads SDK Technical
83+
/// Forum](https://groups.google.com/g/google-admob-ads-sdk).
8884
namespace gma {
8985

9086
/// Initializes Google Mobile Ads (GMA) via Firebase.
@@ -104,7 +100,9 @@ namespace gma {
104100
/// Otherwise, the returned Future will have kFutureStatusInvalid.
105101
///
106102
/// @deprecated The Google Mobile Ads C++ SDK is now deprecated. Please see
107-
/// https://developers.google.com/admob/cpp/reference/namespace/firebase/gma
103+
/// the [SDK reference
104+
/// documentation](
105+
/// /admob/cpp/reference/namespace/firebase/gma)
108106
/// for more information.
109107
FIREBASE_DEPRECATED Future<AdapterInitializationStatus> Initialize(
110108
const ::firebase::App& app, InitResult* init_result_out = nullptr);

0 commit comments

Comments
 (0)