Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
sdk-public
unity_sdk_demo
Commits
d9213b62
Commit
d9213b62
authored
Oct 24, 2025
by
fengchao
Browse files
fix(code):修复报送 extra无数据的问题。
parent
83feed21
Changes
1
Hide whitespace changes
Inline
Side-by-side
Assets/Plugins/iOS/UnityBridge.mm
View file @
d9213b62
...
@@ -234,8 +234,9 @@ extern "C" {
...
@@ -234,8 +234,9 @@ extern "C" {
[
keyValuePairs
addObject
:[
NSString
stringWithFormat
:
@"%@:%@"
,
key
,
value
]];
[
keyValuePairs
addObject
:[
NSString
stringWithFormat
:
@"%@:%@"
,
key
,
value
]];
}];
}];
playerInfo
.
extra
=
[
keyValuePairs
componentsJoinedByString
:
@";"
];
playerInfo
.
extra
=
[
keyValuePairs
componentsJoinedByString
:
@";"
];
}
else
if
([
extraObj
isKindOfClass
:[
NSString
class
]])
{
playerInfo
.
extra
=
(
NSString
*
)
extraObj
;
}
}
[
sdk
report
:(
EventType
)
eventType
data
:
playerInfo
];
[
sdk
report
:(
EventType
)
eventType
data
:
playerInfo
];
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment