Skip to content

Commit c1584e1

Browse files
committed
[修复]1. 修复Windows下没有唯一ID的问题
1 parent a3f14e3 commit c1584e1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Assets/Scripts/Framework/Procedure/HttpHelper.cs

+4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ public static Dictionary<string, object> GetBaseParams()
3030
#endif
3131
#else
3232
DictionaryParams["Platform"] = PathHelper.GetPlatformName;
33+
#if UNITY_STANDALONE_WIN
34+
DictionaryParams["PackageName"] = Application.productName;
35+
#else
3336
DictionaryParams["PackageName"] = Application.identifier;
37+
#endif
3438
DictionaryParams["Channel"] = BlankGetChannel.GetChannelName();
3539
DictionaryParams["SubChannel"] = BlankGetChannel.GetChannelName();
3640
#endif

0 commit comments

Comments
 (0)