We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67d35ab commit 37df06aCopy full SHA for 37df06a
Assets/Adjust/iOS/Test/AdjustUnityTestLibrary.mm
@@ -31,10 +31,12 @@ - (id)init {
31
32
extern "C"
33
{
34
- void _ATLInitialize(const char* baseUrl) {
+ void _ATLInitialize(const char* baseUrl, const char* controlUrl) {
35
NSString *sBaseUrl = [NSString stringWithUTF8String:baseUrl];
36
+ NSString *sControlUrl = [NSString stringWithUTF8String:controlUrl];
37
commandDelegate = [[AdjustUnityCommandExecutor alloc] init];
38
testLibrary = [ATLTestLibrary testLibraryWithBaseUrl:sBaseUrl
39
+ andControlUrl:sControlUrl
40
andCommandDelegate:commandDelegate];
41
}
42
0 commit comments