We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bug
If add PrebidSDK as Maven artifact AndroidStudio does not see Util.CreativeSizeCompletionHandler and Util.CreativeSize
Util.CreativeSizeCompletionHandler
Util.CreativeSize
implementation 'org.prebid:prebid-mobile-sdk:1.1.1'
Util.findPrebidCreativeSize()
Utility classes(CreativeSizeCompletionHandler, CreativeSize) should be available from a client side
CreativeSizeCompletionHandler
CreativeSize
Static nested classes are not open to use
PrebidSDK v1.1.1
I think that the issue is in proguard
The API
dfpAdView.setAdListener(new AdListener() { @Override public void onAdLoaded() { super.onAdLoaded(); Util.findPrebidCreativeSize(dfpAdView, new Util.CreativeSizeCompletionHandler() { @Override public void onSize(@Nullable Util.CreativeSize size) { if (size != null) { dfpAdView.setAdSizes(new AdSize(size.getWidth(), size.getHeight())); } } }); } });
The text was updated successfully, but these errors were encountered:
Resolved with 1.1.2 release
Sorry, something went wrong.
ppuviarasu
No branches or pull requests
Type of issue
bug
Description
If add PrebidSDK as Maven artifact AndroidStudio does not see
Util.CreativeSizeCompletionHandler
andUtil.CreativeSize
Steps to reproduce
implementation 'org.prebid:prebid-mobile-sdk:1.1.1'
)Util.findPrebidCreativeSize()
Expected results
Utility classes(
CreativeSizeCompletionHandler
,CreativeSize
) should be available from a client sideActual results
Static nested classes are not open to use
Platform details
PrebidSDK v1.1.1
Other information
I think that the issue is in proguard
The API
The text was updated successfully, but these errors were encountered: