Skip to content

Commit 635d243

Browse files
committed
10.1.6 SDK Update
1 parent 4aeb67f commit 635d243

129 files changed

Lines changed: 61078 additions & 2729 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.DS_Store

10 KB
Binary file not shown.

plugins/.DS_Store

8 KB
Binary file not shown.

plugins/2018.3313/.DS_Store

14 KB
Binary file not shown.
Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
android.defaultConfig {
2-
minSdkVersion Math.max(minSdkVersion?.apiLevel ?: 15, 17)
2+
minSdkVersion Math.max(minSdkVersion?.apiLevel ?: 15, 21)
33
}
4-
ext["minSdkVersion"] = Math.max(ext.find("minSdkVersion")?:15, 17)
4+
ext["minSdkVersion"] = Math.max(ext.find("minSdkVersion")?:15, 21)
55
dependencies {
6-
implementation 'org.greenrobot:eventbus:3.2.0'
7-
implementation 'net.kidoz.sdk:kidoz-android-native:8.9.5'
6+
implementation("net.kidoz.sdk:kidoz-android-native:10.1.6")
87
}
-12.8 KB
Binary file not shown.
6 KB
Binary file not shown.
6 KB
Binary file not shown.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
//
2+
// KidozOMIDService.h
3+
// KidozSDK
4+
//
5+
// Created by Maria Yelfimova on 03/06/2024.
6+
//
7+
8+
#import <Foundation/Foundation.h>
9+
#import <WebKit/WebKit.h>
10+
11+
@class KidozOMIDSessionManager;
12+
@class OMIDAdSession;
13+
@class OMIDSDK;
14+
15+
@interface KidozOMIDService : NSObject
16+
17+
@property (class, nonatomic, readonly) NSString * _Nonnull partnerName;
18+
19+
+ (void)activateOMID;
20+
+ (KidozOMIDSessionManager *_Nonnull)createSession:(WKWebView * _Nonnull)webview;
21+
22+
@end
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
//
2+
// KidozOMIDSessionManager.h
3+
// KidozSDK
4+
//
5+
// Created by Maria Yelfimova on 03/06/2024.
6+
//
7+
8+
#import <Foundation/Foundation.h>
9+
10+
@class OMIDAdSession;
11+
@class OMIDKidoznetAdSession;
12+
13+
@interface KidozOMIDSessionManager : NSObject
14+
- (instancetype)initWithOMIDKidoznetAdSession:(OMIDKidoznetAdSession *)omidKidoznetAdSession;
15+
- (void)finish;
16+
- (void)start;
17+
18+
@end
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#import "KidozOMIDSessionManager.h"
2+
#import "KidozOMIDService.h"

0 commit comments

Comments
 (0)