-
@RestrictTo(value = {RestrictTo.Scope.LIBRARY_GROUP}) public interface CloudXAdapterMetadataProvider
Interface for ad network adapters to report their version metadata.
Implement this as a
@Keep object MetadataProviderin each adapter module. The SDK discovers implementations via reflection using the adapter package prefix.Called during config request construction — before adapter initialization — so the server can make informed decisions based on installed adapter versions.
-
-
Method Summary
Modifier and Type Method Description abstract StringgetAdapterVersion()Version of the adapter module (e.g., "2.1.0"). abstract StringgetNetworkSdkVersion()Version of the underlying ad network SDK (e.g., "11.0.1"). -
-
Method Detail
-
getAdapterVersion
abstract String getAdapterVersion()
Version of the adapter module (e.g., "2.1.0").
-
getNetworkSdkVersion
abstract String getNetworkSdkVersion()
Version of the underlying ad network SDK (e.g., "11.0.1").
-
-
-
-