-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
58bc618
commit bc8ce72
Showing
3 changed files
with
63 additions
and
47 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
6 changes: 3 additions & 3 deletions
6
SmartAdmob/src/main/java/com/bdtopcoder/smartadmob/SplashOpenAdCallBack.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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package com.bdtopcoder.smartadmob; | ||
|
||
public interface SplashOpenAdCallBack { | ||
void loadingTimer(long time); | ||
default void loadingTimer(long time){} | ||
|
||
void loadingDone(boolean isDone); | ||
default void loadingDone(boolean isDone){} | ||
|
||
void startYourActivity(); | ||
default void startYourActivity(){} | ||
} |
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