Skip to content

Commit

Permalink
Unity ADS SDK updated to version 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
AGulev committed Jul 13, 2018
1 parent 3cf22da commit 643faae
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
Binary file modified defunityads/lib/android/classes.jar
Binary file not shown.
Binary file modified defunityads/lib/ios/UnityAds.framework/UnityAds
Binary file not shown.
3 changes: 0 additions & 3 deletions defunityads/src/java/DefUnityAds.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ public static void DefUnityAds_Initialize(String gameId, boolean testMode) {
}

public static void DefUnityAds_Show(String placementId) {
if (!UnityAds.isInitialized()) {
return;
}
if (placementId == null || placementId.isEmpty()) {
UnityAds.show(activity);
} else {
Expand Down
1 change: 0 additions & 1 deletion defunityads/src/objc/DefUnityAdsIOS.mm
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ void DefUnityAds_Initialize(const char*game_id, bool is_debug) {
}

void DefUnityAds_Show(char* placementId) {
if (![UnityAds isInitialized]) return;
if ((placementId != NULL) && (placementId[0] == '\0')) {
[UnityAds show:uiViewController];
}
Expand Down

0 comments on commit 643faae

Please sign in to comment.