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
f902e76b
Commit
f902e76b
authored
Oct 24, 2025
by
fengchao
Browse files
Merge branch 'feat-unity-ios' into 'develop'
fix(code):修复报送 extra无数据的问题。 See merge request
!18
parents
83feed21
d9213b62
Changes
1
Show whitespace changes
Inline
Side-by-side
Assets/Plugins/iOS/UnityBridge.mm
View file @
f902e76b
...
...
@@ -234,8 +234,9 @@ extern "C" {
[
keyValuePairs
addObject
:[
NSString
stringWithFormat
:
@"%@:%@"
,
key
,
value
]];
}];
playerInfo
.
extra
=
[
keyValuePairs
componentsJoinedByString
:
@";"
];
}
else
if
([
extraObj
isKindOfClass
:[
NSString
class
]])
{
playerInfo
.
extra
=
(
NSString
*
)
extraObj
;
}
[
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