forked from kaltura/playkit-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Load ad before content (kaltura#201)
* integrate 0.2.17 into develop * add PKAdProviderListener * add AdResponseType * add private AdResponseType adResponseType; to config * add void setAdProviderListener(AdEnabledPlayerController adEnabledPlayerController); void removeAdProviderListener(); to AdsProvider * fix LOG ERROR behaviour Add prepare impl in decorator * start from pos 0 * fix remove all views * clean = null * fix typo * add new line * protect npe * add hide in java doc * refactor AD_RESPONSE_TYPE to AD_TAG_TYPE * remove unneeded handler * fix codacy * codify
- Loading branch information
Showing
8 changed files
with
251 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package com.kaltura.playkit.ads; | ||
|
||
public enum AdTagType { | ||
UNKNOWN, | ||
VMAP, | ||
VAST, | ||
VPAID | ||
} |
6 changes: 6 additions & 0 deletions
6
playkit/src/main/java/com/kaltura/playkit/ads/PKAdProviderListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package com.kaltura.playkit.ads; | ||
|
||
public interface PKAdProviderListener { | ||
void onAdLoadingFinished(); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.