forked from BugSplat-Git/bugsplat-unreal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BugSplat.uplugin
44 lines (44 loc) · 1.53 KB
/
BugSplat.uplugin
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"FileVersion": 3,
"Version": "1.2",
"VersionName": "1.1.1",
"FriendlyName": "BugSplat",
"Description": "BugSplat provides crash reporting for Unreal projects, and gives invaluable insight into the issues tripping up your users.",
"Category": "Code Plugins",
"CreatedBy": "BugSplat",
"CreatedByURL": "https://www.bugsplat.com",
"DocsURL": "https://docs.bugsplat.com/introduction/getting-started/integrations/game-development/unreal-engine#unreal-engine-plugin",
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/product/f26128f947f5471fa7d24184545b3d09",
"SupportURL": "https://www.bugsplat.com",
"EnabledByDefault": true,
"CanContainContent": true,
"IsBetaVersion": false,
"Installed": false,
"Modules": [
{
"Name": "BugSplat",
"Type": "Editor",
"LoadingPhase": "Default"
},
{
"Name": "BugSplatRuntime",
"Type": "Runtime",
"LoadingPhase": "Default",
"WhitelistPlatforms": [
"Win64",
"Mac",
"Android",
"IOS",
"Linux"
]
}
],
"PostBuildSteps": {
"Win64": [
"call \"$(PluginDir)\\Source\\Scripts\\upload-symbols-win64.bat\" $(TargetPlatform) \"$(ProjectDir)\" $(TargetName)"
],
"Mac": [
"sh \"$(PluginDir)/Source/Scripts/setup-upload-symbols-ios.sh\" $(TargetPlatform) $(TargetName) \"$(ProjectDir)\" $(PluginDir)"
]
}
}