Class POBApplicationInfo
-
- All Implemented Interfaces:
public class POBApplicationInfoProvides setters to pass application information like store URL, domain, IAB categories etc. It is very important to provide transparency for buyers of your app inventory.
-
-
Constructor Summary
Constructors Constructor Description POBApplicationInfo()
-
Method Summary
Modifier and Type Method Description StringgetDomain()(Internal for OpenWrap SDK) voidsetDomain(@Nullable() String domain)Sets the domain of the mobile application (e.g., "mygame.foo. URLgetStoreURL()(Internal for OpenWrap SDK) voidsetStoreURL(@Nullable() URL storeURL)Sets URL of application on Play store. StringgetCategories()(Internal for OpenWrap SDK) voidsetCategories(@Nullable() String categories)Sets IAB category for the application. StringgetKeywords()(Internal for OpenWrap SDK) Returns the application keywords set by the application developer. voidsetKeywords(@Nullable() String keywords)Sets the comma separated list of keywords about the application BooleanisPaid()(Internal for OpenWrap SDK) voidsetPaid(boolean paid)Sets whether the mobile application is a paid version or not. -
-
Method Detail
-
getDomain
@Nullable() String getDomain()
(Internal for OpenWrap SDK)
- Returns:
Domain of the mobile application
-
setDomain
void setDomain(@Nullable() String domain)
Sets the domain of the mobile application (e.g., "mygame.foo.com")
- Parameters:
domain- application domain
-
getStoreURL
@Nullable() URL getStoreURL()
(Internal for OpenWrap SDK)
- Returns:
URL of application on Play store
-
setStoreURL
void setStoreURL(@Nullable() URL storeURL)
Sets URL of application on Play store. It is mandatory to pass a valid storeURL. It is very important for platform identification.
- Parameters:
storeURL- Play store URL of app
-
getCategories
@Nullable() String getCategories()
(Internal for OpenWrap SDK)
- Returns:
IAB category for the application
-
setCategories
void setCategories(@Nullable() String categories)
Sets IAB category for the application. e.g. "IAB-1, IAB-2".
- Parameters:
categories- Comma separated list of IAB categories for the application.
-
getKeywords
@Nullable() String getKeywords()
(Internal for OpenWrap SDK) Returns the application keywords set by the application developer.
- Returns:
Comma separated application keywords
-
setKeywords
void setKeywords(@Nullable() String keywords)
Sets the comma separated list of keywords about the application
- Parameters:
keywords- Comma separated list of keywords about the app
-
isPaid
@Nullable() Boolean isPaid()
(Internal for OpenWrap SDK)
- Returns:
State of mobile application's paid version
-
setPaid
void setPaid(boolean paid)
Sets whether the mobile application is a paid version or not. Possible values are: false - Free version true - Paid version
- Parameters:
paid- state of application paid status
-
-
-
-