This repository was archived by the owner on Aug 30, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,17 +20,8 @@ It supports any platform that you can target with Unity.
2020
2121Open the package manager, click the + icon, and add git url.
2222
23- In the field that opens, enter the url of the repo, i.e.:
24-
25- ```
26- https://github.com/getsentry/sentry-unity-lite.git
27- ```
28-
29- If you wish to install a specific version you can do that as well by appending
30- it to the url.
31-
3223```
33- https://github.com/getsentry/sentry-unity-lite.git#1.0.0"
24+ https://github.com/getsentry/sentry-unity-lite.git#1.0.1
3425```
3526
3627#### Through unitypackage
@@ -46,8 +37,8 @@ You can also add it programatically. There can only be one `SentrySdk`
4637in your whole project. To add it programatically do:
4738
4839``` C#
49- var sentry = myGameObject .AddComponent ( typeof ( SentrySdk )) as SentrySdk ;
50- sentry .dsn = " __YOUR_DSN__" ; // get it on sentry.io when you create a project, or on project settings.
40+ var sentry = gameObject .AddComponent < SentrySdk >() ;
41+ sentry .Dsn = " __YOUR_DSN__" ; // get it on sentry.io when you create a project, or on project settings.
5142```
5243
5344The SDK needs to know which project within Sentry your errors should go to. That's defined via the DSN.
Original file line number Diff line number Diff line change @@ -265,7 +265,7 @@ public class App
265265 public class SdkVersion
266266 {
267267 public string name = "sentry.unity.lite" ;
268- public string version = "1.0.0 " ;
268+ public string version = "1.0.1 " ;
269269 }
270270
271271 [ Serializable ]
Original file line number Diff line number Diff line change 11{
2- "name" : " io.sentry.sentry-unity" ,
3- "version" : " 0 .0.5 " ,
4- "displayName" : " Sentry Unity" ,
2+ "name" : " io.sentry.sentry-unity-lite " ,
3+ "version" : " 1 .0.1 " ,
4+ "displayName" : " Sentry Unity Lite " ,
55 "description" : " Sentry SDK for Unity" ,
66 "unity" : " 2018.1" ,
77 "license" : " MIT" ,
1010 " diagnostics"
1111 ],
1212 "author" : {
13- "name" : " Sentry (https://sentry.io) and individual contributors. " ,
14- "email" : " sales @sentry.io" ,
15- "url" : " https://github.com/getsentry/sentry-unity"
13+ "name" : " Sentry Application Monitoring " ,
14+ "email" : " oss @sentry.io" ,
15+ "url" : " https://github.com/getsentry/sentry-unity-lite "
1616 },
1717 "samples" : [
1818 {
You can’t perform that action at this time.
0 commit comments