@@ -55,36 +55,32 @@ template <typename ResultType>
55
55
class Future {
56
56
// Empty class (used for documentation only).
57
57
};
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
+
58
66
#endif // defined(DOXYGEN_ADMOB)
59
67
60
68
// / @brief API for Google Mobile Ads with Firebase.
61
69
// /
62
70
// / The GMA API allows you to load and display mobile ads using the Google
63
71
// / Mobile Ads SDK. Each ad format has its own header file.
64
72
// /
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).
88
84
namespace gma {
89
85
90
86
// / Initializes Google Mobile Ads (GMA) via Firebase.
@@ -104,7 +100,9 @@ namespace gma {
104
100
// / Otherwise, the returned Future will have kFutureStatusInvalid.
105
101
// /
106
102
// / @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)
108
106
// / for more information.
109
107
FIREBASE_DEPRECATED Future<AdapterInitializationStatus> Initialize (
110
108
const ::firebase::App& app, InitResult* init_result_out = nullptr );
0 commit comments