...
opensdk:publisher_id
oradview.setPublisherId(Int publisherID)
: The publisherID ID associated with your app's inventory. You must include a publisher ID or an error will be thrown. Example:123456
. You can get this value from your Account Manager.opensdk:placement_id
is an internal value that will be used to identify the placement in your app. Please use any name that will help you to identify the placementnote that two different placements cannot use the same identifier.opensdk:auto_refresh_interval
oradview.setAutoRefreshInterval(long interval)
: The interval, in milliseconds, at which the ad view will request new ads, if autorefresh is enabled. The minimum period is 15 seconds. The default period is 30 seconds. Set this to 0 to disable autorefresh. Example:"60000"
.opensdk:ad_width
oradview.setAdSize(int width, int height)
: The width of the advertisement to request from the server. If this is not set, the SDK requests an ad of at leastandroid:layout_width
. Note that the Java methodsetAdSize
sets the width and height at the same time. Example:"320"
.opensdk:ad_height
oradview.setAdSize(int width, int height)
: The height of the view. Note that the Java methodsetAdSize
sets the width and height at the same time. Example:"50dp"
.
...