├── .clang-format ├── .craft.yml ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── blank.yml │ ├── bug_report.yml │ ├── config.yml │ └── feature.yml ├── labeler.yml ├── sentry-wordmark-dark-400x119.svg ├── unity-verified-logo.svg └── workflows │ ├── build.yml │ ├── ci.yml │ ├── create-unity-matrix.yml │ ├── danger.yml │ ├── format-code.yml │ ├── release.yml │ ├── sdk.yml │ ├── smoke-test-build-android.yml │ ├── smoke-test-build-ios.yml │ ├── smoke-test-compile-ios.yml │ ├── smoke-test-create.yml │ ├── smoke-test-run-android.yml │ ├── smoke-test-run-ios.yml │ └── update-deps.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE.md ├── NuGet.config ├── README.md ├── Sentry.Unity.sln ├── before.Sentry.Unity.sln.targets ├── global.json ├── modules ├── Directory.Build.props ├── Directory.Build.targets ├── README.md ├── sentry-cli.properties └── sentry-cocoa.properties ├── package-dev ├── Editor │ ├── Sentry.Unity.Editor.dll.meta │ ├── SentryEditorPlatformSetUp.cs │ ├── SentryEditorPlatformSetUp.cs.meta │ ├── SentryUserFeedbackEditor.cs │ ├── SentryUserFeedbackEditor.cs.meta │ ├── iOS │ │ └── Sentry.Unity.Editor.iOS.dll.meta │ ├── io.sentry.unity.dev.editor.asmdef │ └── io.sentry.unity.dev.editor.asmdef.meta ├── Plugins │ ├── Android │ │ └── proguard-sentry-unity.pro │ ├── Linux │ │ ├── Sentry.meta │ │ └── Sentry │ │ │ ├── libsentry.dbg.so.meta │ │ │ └── libsentry.so.meta │ ├── Windows │ │ └── Sentry │ │ │ └── sentry.dll.meta │ ├── iOS │ │ ├── SentryCxaThrowHook.cpp │ │ ├── SentryCxaThrowHook.cpp.meta │ │ ├── SentryNativeBridge.m │ │ ├── SentryNativeBridge.m.meta │ │ ├── SentryNativeBridgeNoOp.m │ │ └── SentryNativeBridgeNoOp.m.meta │ └── macOS │ │ ├── Sentry │ │ └── Sentry.dylib.meta │ │ ├── SentryNativeBridge.m │ │ └── SentryNativeBridge.m.meta ├── Prefabs │ ├── SentryUserFeedback.prefab │ └── SentryUserFeedback.prefab.meta ├── README.md ├── Runtime │ ├── Sentry.Unity.Android.dll.meta │ ├── Sentry.Unity.Native.dll.meta │ ├── Sentry.Unity.dll.meta │ ├── Sentry.Unity.iOS.dll.meta │ ├── Sentry.dll.meta │ ├── SentryInitialization.cs │ ├── SentryUserFeedback.cs │ ├── SentryUserFeedback.cs.meta │ ├── io.sentry.unity.dev.runtime.asmdef │ └── io.sentry.unity.dev.runtime.asmdef.meta ├── Tests │ ├── Editor.meta │ ├── Editor │ │ ├── Sentry.Unity.Editor.Tests.dll.meta │ │ └── Sentry.Unity.Editor.iOS.Tests.dll.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── Sentry.Unity.Android.Tests.dll.meta │ │ ├── Sentry.Unity.Tests.dll.meta │ │ └── Sentry.Unity.iOS.Tests.dll.meta ├── Textures │ ├── Logo.png │ ├── Logo.png.meta │ ├── Megaphone.png │ └── Megaphone.png.meta ├── assembly-alias.ps1 └── package.json ├── package ├── CHANGELOG.md.meta ├── Documentation~ │ └── index.md ├── Editor │ ├── io.sentry.unity.editor.asmdef │ └── io.sentry.unity.editor.asmdef.meta ├── LICENSE.md.meta ├── README.md ├── Runtime │ ├── io.sentry.unity.runtime.asmdef │ └── io.sentry.unity.runtime.asmdef.meta ├── Samples~ │ └── unity-of-bugs │ │ ├── Scenes.meta │ │ └── Scripts.meta └── package.json ├── samples ├── Directory.Build.props ├── Directory.Build.targets └── unity-of-bugs │ ├── .gitignore │ ├── Assets │ ├── Editor.meta │ ├── Editor │ │ ├── GradleProjectUpdater.cs │ │ ├── GradleProjectUpdater.cs.meta │ │ ├── XcodeProjectUpdater.cs │ │ └── XcodeProjectUpdater.cs.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── Android.meta │ │ ├── Android │ │ │ ├── proguard-user.txt │ │ │ └── proguard-user.txt.meta │ │ ├── Sentry.meta │ │ └── Sentry │ │ │ ├── SentryCliConfiguration.asset │ │ │ └── SentryCliConfiguration.asset.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Sentry.meta │ │ └── Sentry │ │ │ ├── SentryOptionConfiguration.asset │ │ │ ├── SentryOptionConfiguration.asset.meta │ │ │ ├── SentryOptions.asset │ │ │ └── SentryOptions.asset.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── 1_BugFarm.unity │ │ ├── 1_BugFarm.unity.meta │ │ ├── 2_NativeSupport.unity │ │ ├── 2_NativeSupport.unity.meta │ │ ├── 3_AdditionalSamples.unity │ │ ├── 3_AdditionalSamples.unity.meta │ │ ├── 4_ThreadedSamples.unity │ │ ├── 4_ThreadedSamples.unity.meta │ │ ├── 5_ForceCrashSamples.unity │ │ ├── 5_ForceCrashSamples.unity.meta │ │ ├── 6_ThirdPartySamples.unity │ │ └── 6_ThirdPartySamples.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── AdditionalSampleButtons.cs │ │ ├── AdditionalSampleButtons.cs.meta │ │ ├── AutoInputModuleManager.cs │ │ ├── AutoInputModuleManager.cs.meta │ │ ├── BugFarmButtons.cs │ │ ├── BugFarmButtons.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── ThirdPartyDefineSetup.cs │ │ └── ThirdPartyDefineSetup.cs.meta │ │ ├── ForceCrashButtons.cs │ │ ├── ForceCrashButtons.cs.meta │ │ ├── NativeSupport.meta │ │ ├── NativeSupport │ │ ├── AndroidButtons.cs │ │ ├── AndroidButtons.cs.meta │ │ ├── CPlugin.c │ │ ├── CPlugin.c.meta │ │ ├── CppPlugin.cpp │ │ ├── CppPlugin.cpp.meta │ │ ├── IosButtons.cs │ │ ├── IosButtons.cs.meta │ │ ├── JavaScriptPlugin.jslib │ │ ├── JavaScriptPlugin.jslib.meta │ │ ├── KotlinPlugin.kt │ │ ├── KotlinPlugin.kt.meta │ │ ├── NativeButtons.cs │ │ ├── NativeButtons.cs.meta │ │ ├── NativeSupportScene.cs │ │ ├── NativeSupportScene.cs.meta │ │ ├── ObjectiveCPlugin.m │ │ ├── ObjectiveCPlugin.m.meta │ │ ├── WebGLButtons.cs │ │ └── WebGLButtons.cs.meta │ │ ├── SceneButtons.cs │ │ ├── SceneButtons.cs.meta │ │ ├── SentryCliConfiguration.cs │ │ ├── SentryCliConfiguration.cs.meta │ │ ├── SentryOptionConfiguration.cs │ │ ├── SentryOptionConfiguration.cs.meta │ │ ├── ThirdPartySampleButtons.cs │ │ ├── ThirdPartySampleButtons.cs.meta │ │ ├── ThreadingSamples.cs │ │ └── ThreadingSamples.cs.meta │ ├── Packages │ ├── manifest.json │ └── packages-lock.json │ ├── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Packages │ │ └── com.unity.testtools.codecoverage │ │ │ └── Settings.json │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ ├── XRSettings.asset │ └── boot.config │ └── README.md ├── scripts ├── build-and-alias.ps1 ├── bump-version.ps1 ├── bump-version.sh ├── ci-docker.sh ├── ci-env.ps1 ├── ci-setup-java.ps1 ├── commit-formatted-code.sh ├── create-build-size-summary.ps1 ├── download-sentry-cli.ps1 ├── logcat.sh ├── pack.ps1 ├── repack.ps1 ├── samples-setup-apple-id.ps1 ├── samples-setup-cli-options.ps1 ├── setup-cocoa-sdk.ps1 ├── smoke-test-android.ps1 ├── smoke-test-ios.ps1 ├── smoke-test-webgl.py ├── unity-utils.ps1 └── unity.ps1 ├── src ├── Directory.Build.props ├── Sentry.Unity.Android │ ├── AndroidJavaScopeObserver.cs │ ├── AndroidOptionConfiguration.cs │ ├── BreadcrumbExtensions.cs │ ├── IAndroidJNI.cs │ ├── NativeContextWriter.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ScopeCallback.cs │ ├── Sentry.Unity.Android.csproj │ ├── SentryJava.cs │ ├── SentryNative.cs │ └── SentryNativeAndroid.cs ├── Sentry.Unity.Editor.iOS │ ├── BuildPostProcess.cs │ ├── NativeMain.cs │ ├── NativeOptions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Sentry.Unity.Editor.iOS.csproj │ └── SentryXcodeProject.cs ├── Sentry.Unity.Editor │ ├── Android │ │ ├── AndroidManifestConfiguration.cs │ │ ├── AndroidUtils.cs │ │ ├── DebugSymbolUpload.cs │ │ ├── GradleSetup.cs │ │ └── ProguardSetup.cs │ ├── AutoInstrumentation │ │ ├── SentryPerformanceAutoInstrumentation.cs │ │ └── SentryPlayerReaderWriter.cs │ ├── ConfigurationWindow │ │ ├── AdvancedTab.cs │ │ ├── ConfigurationCreator.cs │ │ ├── CoreTab.cs │ │ ├── DebugSymbolsTab.cs │ │ ├── EnrichmentTab.cs │ │ ├── LoggingTab.cs │ │ ├── OptionsConfigurationTab.cs │ │ ├── SentryEditorWindowInstrumentation.cs │ │ ├── SentryTestWindow.cs │ │ ├── SentryWindow.cs │ │ ├── TransportTab.cs │ │ ├── Wizard.cs │ │ └── WizardApi.cs │ ├── Il2CppBuildPreProcess.cs │ ├── Native │ │ └── BuildPostProcess.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── SentryLogoDark.png │ │ └── SentryLogoLight.png │ ├── ScriptableSentryUnityOptionsEditor.cs │ ├── Sentry.Unity.Editor.csproj │ ├── SentryCli.cs │ ├── SentryCliOptionsEditor.cs │ ├── SentryFileUtil.cs │ ├── SentryPackageInfo.cs │ ├── SentryScriptableObject.cs │ ├── SentryUnityVersion.cs │ ├── UnityCommandLineArguments.cs │ └── WebGL │ │ └── BuildPreProcess.cs ├── Sentry.Unity.Native │ ├── NativeContextWriter.cs │ ├── NativeScopeObserver.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Sentry.Unity.Native.csproj │ ├── SentryNative.cs │ └── SentryNativeBridge.cs ├── Sentry.Unity.iOS │ ├── NativeContextWriter.cs │ ├── NativeScopeObserver.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Sentry.Unity.iOS.csproj │ ├── SentryCocoaBridgeProxy.cs │ └── SentryNativeCocoa.cs └── Sentry.Unity │ ├── ContextWriter.cs │ ├── EventCapture.cs │ ├── Extensions │ └── JsonExtensions.cs │ ├── ISentryUnityInfo.cs │ ├── Il2CppEventProcessor.cs │ ├── Integrations │ ├── AnrIntegration.cs │ ├── ApplicationNotRespondingException.cs │ ├── IApplication.cs │ ├── ISceneManager.cs │ ├── LifeCycleIntegration.cs │ ├── LowMemoryIntegration.cs │ ├── SceneManagerIntegration.cs │ ├── SceneManagerTracingIntegration.cs │ ├── StartupTracingIntegration.cs │ ├── TraceGenerationIntegration.cs │ ├── UnityApplicationLoggingIntegration.cs │ ├── UnityBadGatewayExceptionFilter.cs │ ├── UnityBeforeSceneLoadIntegration.cs │ ├── UnityLogEventFactory.cs │ ├── UnityLogHandlerIntegration.cs │ ├── UnityScopeIntegration.cs │ ├── UnitySocketExceptionFilter.cs │ ├── UnityStackTraceParser.cs │ ├── UnityWebExceptionFilter.cs │ └── UnityWebGLExceptionHandler.cs │ ├── Json │ └── SafeSerializer.cs │ ├── MainThreadData.cs │ ├── NativeUtils │ ├── CFunctions.cs │ ├── ContextWriter.cs │ └── SentryPlatformServices.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Protocol │ └── Unity.cs │ ├── ScopeObserver.cs │ ├── ScreenshotEventProcessor.cs │ ├── ScriptableSentryUnityOptions.cs │ ├── Sentry.Unity.csproj │ ├── SentryCliOptions.cs │ ├── SentryCliOptionsConfiguration.cs │ ├── SentryMonoBehaviour.cs │ ├── SentryOptionsConfiguration.cs │ ├── SentryScreenshot.cs │ ├── SentrySdk.Dotnet.cs │ ├── SentrySdk.cs │ ├── SentryUnityOptions.cs │ ├── SentryUnityOptionsExtensions.cs │ ├── SentryUnitySdk.cs │ ├── SystemInfoAdapter.cs │ ├── TimeDebounceBase.cs │ ├── UnityEventProcessor.cs │ ├── UnityLogger.cs │ ├── UnityViewHierarchyNode.cs │ ├── UnityWebRequestTransport.cs │ ├── ViewHierarchyEventProcessor.cs │ └── WebGL │ └── SentryWebGL.cs ├── test.sh └── test ├── Directory.Build.props ├── Scripts.Integration.Test ├── Editor │ ├── AndroidManifestUpdater.cs │ ├── Builder.cs │ └── SentrySetup.cs ├── Scenes │ └── SmokeTest.unity ├── Scripts │ ├── CliConfiguration.cs │ ├── CppPlugin.cpp │ ├── CppPlugin.cpp.meta │ ├── ObjectiveCPlugin.m │ ├── ObjectiveCPlugin.m.meta │ ├── OptionsConfiguration.cs │ ├── SmokeTester.cs │ └── SmokeTester.cs.meta ├── add-sentry.ps1 ├── build-project.ps1 ├── common.ps1 ├── configure-sentry.ps1 ├── crash-test-server.py ├── create-project.ps1 ├── extract-package.ps1 ├── globals.ps1 ├── gradle │ ├── README.md │ ├── v5.1.1 │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ └── gradlew.bat │ └── v6.1.1 │ │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.jar │ │ ├── gradlew │ │ └── gradlew.bat ├── integration-test.ps1 ├── measure-build-size.ps1 ├── modify-gradle-project.ps1 ├── run-smoke-test.ps1 └── symbol-upload-server.py ├── Scripts.Tests ├── android-libs.snapshot ├── package-release.zip.snapshot └── test-pack-contents.ps1 ├── Sentry.Unity.Android.Tests ├── Sentry.Unity.Android.Tests.csproj ├── SentryJavaTests.cs ├── SentryNativeAndroidTests.cs └── TestSentryJava.cs ├── Sentry.Unity.Editor.Tests ├── Android │ ├── AndroidManifestConfigurationTests.cs │ ├── DebugSymbolUploadTests.cs │ ├── GradleSetupTests.cs │ └── ProguardSetupTests.cs ├── EditorModeTests.cs ├── EmbeddedResourcesTests.cs ├── Il2CppBuildPreProcess.cs ├── ScriptableSentryUnityOptionsTests.cs ├── Sentry.Unity.Editor.Tests.csproj ├── SentryCliTests.cs ├── SentryScriptableObjectTests.cs ├── SentryUnityVersionTests.cs ├── TestFiles │ ├── Android │ │ ├── AddingProguard │ │ │ ├── build.gradle_test_1.txt │ │ │ ├── build.gradle_test_1_expected.txt │ │ │ ├── build.gradle_test_2.txt │ │ │ └── build.gradle_test_2_expected.txt │ │ ├── Empty-AndroidManifest.xml │ │ └── InsertIntoScope │ │ │ ├── build.gradle_test_1.txt │ │ │ ├── build.gradle_test_1_expected.txt │ │ │ ├── build.gradle_test_2.txt │ │ │ └── build.gradle_test_2_expected.txt │ └── SymbolsUploadProject │ │ ├── GradleProject │ │ ├── build.gradle │ │ ├── launcher │ │ │ └── build.gradle │ │ ├── settings.gradle │ │ └── unityLibrary │ │ │ ├── build.gradle │ │ │ ├── libs │ │ │ └── unity-classes.jar │ │ │ └── src │ │ │ └── main │ │ │ └── jniLibs │ │ │ └── armeabi-v7a │ │ │ ├── libil2cpp.so │ │ │ ├── libmain.so │ │ │ └── libunity.so │ │ ├── UnityProject │ │ ├── Library │ │ │ └── Bee │ │ │ │ ├── Android │ │ │ │ └── Prj │ │ │ │ │ └── IL2CPP │ │ │ │ │ └── Gradle │ │ │ │ │ └── build.gradle │ │ │ │ └── artifacts │ │ │ │ └── Android │ │ │ │ ├── libil2cpp.dbg.so │ │ │ │ ├── libil2cpp.sym.so │ │ │ │ └── libunity.sym.so │ │ ├── Packages │ │ │ └── io.sentry.unity.dev │ │ │ │ └── Plugins │ │ │ │ └── Android │ │ │ │ └── Sentry~ │ │ │ │ └── androidSdk.jar │ │ └── Temp │ │ │ ├── StagingArea │ │ │ └── symbols │ │ │ │ └── armeabi-v7 │ │ │ │ ├── libil2cpp.dbg.so │ │ │ │ ├── libil2cpp.sym.so │ │ │ │ └── libunity.sym.so │ │ │ └── gradleOut │ │ │ └── build.gradle │ │ └── fake-sentry-cli └── WizardTests.cs ├── Sentry.Unity.Editor.iOS.Tests ├── BuildPostProcessorTests.cs ├── NativeMainTests.cs ├── NativeOptionsTests.cs ├── Sentry.Unity.Editor.iOS.Tests.csproj ├── SentryNativeBridgeTests.cs ├── SentryXcodeProjectTests.cs └── TestFiles │ └── 2019_4 │ ├── MainApp │ └── main.mm │ ├── Unity-iPhone.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Unity-iPhone.xcscheme │ ├── main.txt │ └── main_expected.txt ├── Sentry.Unity.Tests ├── AnrIntegrationTests.cs ├── ContextWriterTests.cs ├── DebouncerTests.cs ├── IntegrationTests.cs ├── Json │ └── SafeSerializerTests.cs ├── LifeCycleIntegrationTests.cs ├── LowMemoryIntegrationTests.cs ├── Protocol │ └── UnityTests.cs ├── README.md ├── SceneManagerIntegrationTests.cs ├── SceneManagerTracingIntegrationTests.cs ├── ScreenshotEventProcessorTests.cs ├── ScriptableSentryUnityOptionsTests.cs ├── Sentry.Unity.Tests.csproj ├── SentryMonoBehaviourTests.cs ├── SentryScreenshotTests.cs ├── SentryTests.cs ├── SentryUnityOptionsExtensionsTests.cs ├── SentryUnityOptionsTests.cs ├── SentryUnityTests.cs ├── StartupTracingIntegrationTests.cs ├── Stubs │ ├── SentryTestMonoBehaviour.cs │ ├── TestHub.cs │ └── TestStructuredLogger.cs ├── TestBehaviours │ └── TestMonoBehaviour.cs ├── TestHttpClientHandler.cs ├── TestSentryOptions.json ├── TraceGenerationIntegrationTests.cs ├── UnityApplicationLoggingIntegrationTests.cs ├── UnityBadGatewayExceptionFilterTests.cs ├── UnityBeforeSceneLoadIntegrationTests.cs ├── UnityEventScopeTests.cs ├── UnityIl2CppEventExceptionProcessorTests.cs ├── UnityLogEventFactoryTests.cs ├── UnityLogHandlerIntegrationTests.cs ├── UnityLoggerTests.cs ├── UnitySocketExceptionFilterTests.cs ├── UnityStackTraceParserTests.cs ├── UnityWebExceptionFilterTests.cs ├── UnityWebGLExceptionHandlerTests.cs └── ViewHierarchyEventProcessorTests.cs ├── Sentry.Unity.iOS.Tests ├── NativeScopeObserverTests.cs ├── Sentry.Unity.iOS.Tests.csproj └── SentryNativeIosTests.cs └── SharedClasses ├── README.md ├── TestApplication.cs ├── TestEnvironment.cs ├── TestLogger.cs ├── TestUnityInfo.cs └── UnityTestLogger.cs /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.clang-format -------------------------------------------------------------------------------- /.craft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.craft.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/blank.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/ISSUE_TEMPLATE/blank.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- 1 | 'Platform: Unity': 2 | - ** 3 | -------------------------------------------------------------------------------- /.github/sentry-wordmark-dark-400x119.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/sentry-wordmark-dark-400x119.svg -------------------------------------------------------------------------------- /.github/unity-verified-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/unity-verified-logo.svg -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/create-unity-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/workflows/create-unity-matrix.yml -------------------------------------------------------------------------------- /.github/workflows/danger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/workflows/danger.yml -------------------------------------------------------------------------------- /.github/workflows/format-code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/workflows/format-code.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/sdk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/workflows/sdk.yml -------------------------------------------------------------------------------- /.github/workflows/smoke-test-build-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/workflows/smoke-test-build-android.yml -------------------------------------------------------------------------------- /.github/workflows/smoke-test-build-ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/workflows/smoke-test-build-ios.yml -------------------------------------------------------------------------------- /.github/workflows/smoke-test-compile-ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/workflows/smoke-test-compile-ios.yml -------------------------------------------------------------------------------- /.github/workflows/smoke-test-create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/workflows/smoke-test-create.yml -------------------------------------------------------------------------------- /.github/workflows/smoke-test-run-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/workflows/smoke-test-run-android.yml -------------------------------------------------------------------------------- /.github/workflows/smoke-test-run-ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/workflows/smoke-test-run-ios.yml -------------------------------------------------------------------------------- /.github/workflows/update-deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.github/workflows/update-deps.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/README.md -------------------------------------------------------------------------------- /Sentry.Unity.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/Sentry.Unity.sln -------------------------------------------------------------------------------- /before.Sentry.Unity.sln.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/before.Sentry.Unity.sln.targets -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/global.json -------------------------------------------------------------------------------- /modules/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/modules/Directory.Build.props -------------------------------------------------------------------------------- /modules/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/modules/Directory.Build.targets -------------------------------------------------------------------------------- /modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/modules/README.md -------------------------------------------------------------------------------- /modules/sentry-cli.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/modules/sentry-cli.properties -------------------------------------------------------------------------------- /modules/sentry-cocoa.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/modules/sentry-cocoa.properties -------------------------------------------------------------------------------- /package-dev/Editor/Sentry.Unity.Editor.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Editor/Sentry.Unity.Editor.dll.meta -------------------------------------------------------------------------------- /package-dev/Editor/SentryEditorPlatformSetUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Editor/SentryEditorPlatformSetUp.cs -------------------------------------------------------------------------------- /package-dev/Editor/SentryEditorPlatformSetUp.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Editor/SentryEditorPlatformSetUp.cs.meta -------------------------------------------------------------------------------- /package-dev/Editor/SentryUserFeedbackEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Editor/SentryUserFeedbackEditor.cs -------------------------------------------------------------------------------- /package-dev/Editor/SentryUserFeedbackEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Editor/SentryUserFeedbackEditor.cs.meta -------------------------------------------------------------------------------- /package-dev/Editor/iOS/Sentry.Unity.Editor.iOS.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Editor/iOS/Sentry.Unity.Editor.iOS.dll.meta -------------------------------------------------------------------------------- /package-dev/Editor/io.sentry.unity.dev.editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Editor/io.sentry.unity.dev.editor.asmdef -------------------------------------------------------------------------------- /package-dev/Editor/io.sentry.unity.dev.editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Editor/io.sentry.unity.dev.editor.asmdef.meta -------------------------------------------------------------------------------- /package-dev/Plugins/Android/proguard-sentry-unity.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Plugins/Android/proguard-sentry-unity.pro -------------------------------------------------------------------------------- /package-dev/Plugins/Linux/Sentry.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Plugins/Linux/Sentry.meta -------------------------------------------------------------------------------- /package-dev/Plugins/Linux/Sentry/libsentry.dbg.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Plugins/Linux/Sentry/libsentry.dbg.so.meta -------------------------------------------------------------------------------- /package-dev/Plugins/Linux/Sentry/libsentry.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Plugins/Linux/Sentry/libsentry.so.meta -------------------------------------------------------------------------------- /package-dev/Plugins/Windows/Sentry/sentry.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Plugins/Windows/Sentry/sentry.dll.meta -------------------------------------------------------------------------------- /package-dev/Plugins/iOS/SentryCxaThrowHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Plugins/iOS/SentryCxaThrowHook.cpp -------------------------------------------------------------------------------- /package-dev/Plugins/iOS/SentryCxaThrowHook.cpp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Plugins/iOS/SentryCxaThrowHook.cpp.meta -------------------------------------------------------------------------------- /package-dev/Plugins/iOS/SentryNativeBridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Plugins/iOS/SentryNativeBridge.m -------------------------------------------------------------------------------- /package-dev/Plugins/iOS/SentryNativeBridge.m.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Plugins/iOS/SentryNativeBridge.m.meta -------------------------------------------------------------------------------- /package-dev/Plugins/iOS/SentryNativeBridgeNoOp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Plugins/iOS/SentryNativeBridgeNoOp.m -------------------------------------------------------------------------------- /package-dev/Plugins/iOS/SentryNativeBridgeNoOp.m.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Plugins/iOS/SentryNativeBridgeNoOp.m.meta -------------------------------------------------------------------------------- /package-dev/Plugins/macOS/Sentry/Sentry.dylib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Plugins/macOS/Sentry/Sentry.dylib.meta -------------------------------------------------------------------------------- /package-dev/Plugins/macOS/SentryNativeBridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Plugins/macOS/SentryNativeBridge.m -------------------------------------------------------------------------------- /package-dev/Plugins/macOS/SentryNativeBridge.m.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Plugins/macOS/SentryNativeBridge.m.meta -------------------------------------------------------------------------------- /package-dev/Prefabs/SentryUserFeedback.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Prefabs/SentryUserFeedback.prefab -------------------------------------------------------------------------------- /package-dev/Prefabs/SentryUserFeedback.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Prefabs/SentryUserFeedback.prefab.meta -------------------------------------------------------------------------------- /package-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/README.md -------------------------------------------------------------------------------- /package-dev/Runtime/Sentry.Unity.Android.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Runtime/Sentry.Unity.Android.dll.meta -------------------------------------------------------------------------------- /package-dev/Runtime/Sentry.Unity.Native.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Runtime/Sentry.Unity.Native.dll.meta -------------------------------------------------------------------------------- /package-dev/Runtime/Sentry.Unity.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Runtime/Sentry.Unity.dll.meta -------------------------------------------------------------------------------- /package-dev/Runtime/Sentry.Unity.iOS.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Runtime/Sentry.Unity.iOS.dll.meta -------------------------------------------------------------------------------- /package-dev/Runtime/Sentry.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Runtime/Sentry.dll.meta -------------------------------------------------------------------------------- /package-dev/Runtime/SentryInitialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Runtime/SentryInitialization.cs -------------------------------------------------------------------------------- /package-dev/Runtime/SentryUserFeedback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Runtime/SentryUserFeedback.cs -------------------------------------------------------------------------------- /package-dev/Runtime/SentryUserFeedback.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Runtime/SentryUserFeedback.cs.meta -------------------------------------------------------------------------------- /package-dev/Runtime/io.sentry.unity.dev.runtime.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Runtime/io.sentry.unity.dev.runtime.asmdef -------------------------------------------------------------------------------- /package-dev/Runtime/io.sentry.unity.dev.runtime.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Runtime/io.sentry.unity.dev.runtime.asmdef.meta -------------------------------------------------------------------------------- /package-dev/Tests/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Tests/Editor.meta -------------------------------------------------------------------------------- /package-dev/Tests/Editor/Sentry.Unity.Editor.Tests.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Tests/Editor/Sentry.Unity.Editor.Tests.dll.meta -------------------------------------------------------------------------------- /package-dev/Tests/Editor/Sentry.Unity.Editor.iOS.Tests.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Tests/Editor/Sentry.Unity.Editor.iOS.Tests.dll.meta -------------------------------------------------------------------------------- /package-dev/Tests/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Tests/Runtime.meta -------------------------------------------------------------------------------- /package-dev/Tests/Runtime/Sentry.Unity.Android.Tests.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Tests/Runtime/Sentry.Unity.Android.Tests.dll.meta -------------------------------------------------------------------------------- /package-dev/Tests/Runtime/Sentry.Unity.Tests.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Tests/Runtime/Sentry.Unity.Tests.dll.meta -------------------------------------------------------------------------------- /package-dev/Tests/Runtime/Sentry.Unity.iOS.Tests.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Tests/Runtime/Sentry.Unity.iOS.Tests.dll.meta -------------------------------------------------------------------------------- /package-dev/Textures/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Textures/Logo.png -------------------------------------------------------------------------------- /package-dev/Textures/Logo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Textures/Logo.png.meta -------------------------------------------------------------------------------- /package-dev/Textures/Megaphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Textures/Megaphone.png -------------------------------------------------------------------------------- /package-dev/Textures/Megaphone.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/Textures/Megaphone.png.meta -------------------------------------------------------------------------------- /package-dev/assembly-alias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/assembly-alias.ps1 -------------------------------------------------------------------------------- /package-dev/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package-dev/package.json -------------------------------------------------------------------------------- /package/CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package/CHANGELOG.md.meta -------------------------------------------------------------------------------- /package/Documentation~/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package/Documentation~/index.md -------------------------------------------------------------------------------- /package/Editor/io.sentry.unity.editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package/Editor/io.sentry.unity.editor.asmdef -------------------------------------------------------------------------------- /package/Editor/io.sentry.unity.editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package/Editor/io.sentry.unity.editor.asmdef.meta -------------------------------------------------------------------------------- /package/LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package/LICENSE.md.meta -------------------------------------------------------------------------------- /package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package/README.md -------------------------------------------------------------------------------- /package/Runtime/io.sentry.unity.runtime.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package/Runtime/io.sentry.unity.runtime.asmdef -------------------------------------------------------------------------------- /package/Runtime/io.sentry.unity.runtime.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package/Runtime/io.sentry.unity.runtime.asmdef.meta -------------------------------------------------------------------------------- /package/Samples~/unity-of-bugs/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package/Samples~/unity-of-bugs/Scenes.meta -------------------------------------------------------------------------------- /package/Samples~/unity-of-bugs/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package/Samples~/unity-of-bugs/Scripts.meta -------------------------------------------------------------------------------- /package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/package/package.json -------------------------------------------------------------------------------- /samples/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/Directory.Build.props -------------------------------------------------------------------------------- /samples/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/Directory.Build.targets -------------------------------------------------------------------------------- /samples/unity-of-bugs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/.gitignore -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Editor.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Editor/GradleProjectUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Editor/GradleProjectUpdater.cs -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Editor/GradleProjectUpdater.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Editor/GradleProjectUpdater.cs.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Editor/XcodeProjectUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Editor/XcodeProjectUpdater.cs -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Editor/XcodeProjectUpdater.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Editor/XcodeProjectUpdater.cs.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Plugins.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Plugins/Android.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Plugins/Android/proguard-user.txt: -------------------------------------------------------------------------------- 1 | -keep class unity.of.bugs.** { *; } 2 | -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Plugins/Android/proguard-user.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Plugins/Android/proguard-user.txt.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Plugins/Sentry.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Plugins/Sentry.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Plugins/Sentry/SentryCliConfiguration.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Plugins/Sentry/SentryCliConfiguration.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Plugins/Sentry/SentryCliConfiguration.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Plugins/Sentry/SentryCliConfiguration.asset.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Resources.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Resources/Sentry.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Resources/Sentry.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Resources/Sentry/SentryOptionConfiguration.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Resources/Sentry/SentryOptionConfiguration.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Resources/Sentry/SentryOptionConfiguration.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Resources/Sentry/SentryOptionConfiguration.asset.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Resources/Sentry/SentryOptions.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Resources/Sentry/SentryOptions.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Resources/Sentry/SentryOptions.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Resources/Sentry/SentryOptions.asset.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scenes.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scenes/1_BugFarm.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scenes/1_BugFarm.unity -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scenes/1_BugFarm.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scenes/1_BugFarm.unity.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scenes/2_NativeSupport.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scenes/2_NativeSupport.unity -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scenes/2_NativeSupport.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scenes/2_NativeSupport.unity.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scenes/3_AdditionalSamples.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scenes/3_AdditionalSamples.unity -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scenes/3_AdditionalSamples.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scenes/3_AdditionalSamples.unity.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scenes/4_ThreadedSamples.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scenes/4_ThreadedSamples.unity -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scenes/4_ThreadedSamples.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scenes/4_ThreadedSamples.unity.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scenes/5_ForceCrashSamples.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scenes/5_ForceCrashSamples.unity -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scenes/5_ForceCrashSamples.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scenes/5_ForceCrashSamples.unity.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scenes/6_ThirdPartySamples.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scenes/6_ThirdPartySamples.unity -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scenes/6_ThirdPartySamples.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scenes/6_ThirdPartySamples.unity.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/AdditionalSampleButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/AdditionalSampleButtons.cs -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/AdditionalSampleButtons.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/AdditionalSampleButtons.cs.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/AutoInputModuleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/AutoInputModuleManager.cs -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/AutoInputModuleManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/AutoInputModuleManager.cs.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/BugFarmButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/BugFarmButtons.cs -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/BugFarmButtons.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/BugFarmButtons.cs.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/Editor.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/Editor/ThirdPartyDefineSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/Editor/ThirdPartyDefineSetup.cs -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/Editor/ThirdPartyDefineSetup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/Editor/ThirdPartyDefineSetup.cs.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/ForceCrashButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/ForceCrashButtons.cs -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/ForceCrashButtons.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/ForceCrashButtons.cs.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/AndroidButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/AndroidButtons.cs -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/AndroidButtons.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/AndroidButtons.cs.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/CPlugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/CPlugin.c -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/CPlugin.c.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/CPlugin.c.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/CppPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/CppPlugin.cpp -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/CppPlugin.cpp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/CppPlugin.cpp.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/IosButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/IosButtons.cs -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/IosButtons.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/IosButtons.cs.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/JavaScriptPlugin.jslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/JavaScriptPlugin.jslib -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/JavaScriptPlugin.jslib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/JavaScriptPlugin.jslib.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/KotlinPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/KotlinPlugin.kt -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/KotlinPlugin.kt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/KotlinPlugin.kt.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/NativeButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/NativeButtons.cs -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/NativeButtons.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/NativeButtons.cs.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/NativeSupportScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/NativeSupportScene.cs -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/NativeSupportScene.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/NativeSupportScene.cs.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/ObjectiveCPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/ObjectiveCPlugin.m -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/ObjectiveCPlugin.m.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/ObjectiveCPlugin.m.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/WebGLButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/WebGLButtons.cs -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/NativeSupport/WebGLButtons.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/NativeSupport/WebGLButtons.cs.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/SceneButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/SceneButtons.cs -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/SceneButtons.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/SceneButtons.cs.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/SentryCliConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/SentryCliConfiguration.cs -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/SentryCliConfiguration.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/SentryCliConfiguration.cs.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/SentryOptionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/SentryOptionConfiguration.cs -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/SentryOptionConfiguration.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/SentryOptionConfiguration.cs.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/ThirdPartySampleButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/ThirdPartySampleButtons.cs -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/ThirdPartySampleButtons.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/ThirdPartySampleButtons.cs.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/ThreadingSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/ThreadingSamples.cs -------------------------------------------------------------------------------- /samples/unity-of-bugs/Assets/Scripts/ThreadingSamples.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Assets/Scripts/ThreadingSamples.cs.meta -------------------------------------------------------------------------------- /samples/unity-of-bugs/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Packages/manifest.json -------------------------------------------------------------------------------- /samples/unity-of-bugs/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/Packages/packages-lock.json -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /samples/unity-of-bugs/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/unity-of-bugs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/samples/unity-of-bugs/README.md -------------------------------------------------------------------------------- /scripts/build-and-alias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/build-and-alias.ps1 -------------------------------------------------------------------------------- /scripts/bump-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/bump-version.ps1 -------------------------------------------------------------------------------- /scripts/bump-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/bump-version.sh -------------------------------------------------------------------------------- /scripts/ci-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/ci-docker.sh -------------------------------------------------------------------------------- /scripts/ci-env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/ci-env.ps1 -------------------------------------------------------------------------------- /scripts/ci-setup-java.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/ci-setup-java.ps1 -------------------------------------------------------------------------------- /scripts/commit-formatted-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/commit-formatted-code.sh -------------------------------------------------------------------------------- /scripts/create-build-size-summary.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/create-build-size-summary.ps1 -------------------------------------------------------------------------------- /scripts/download-sentry-cli.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/download-sentry-cli.ps1 -------------------------------------------------------------------------------- /scripts/logcat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/logcat.sh -------------------------------------------------------------------------------- /scripts/pack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/pack.ps1 -------------------------------------------------------------------------------- /scripts/repack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/repack.ps1 -------------------------------------------------------------------------------- /scripts/samples-setup-apple-id.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/samples-setup-apple-id.ps1 -------------------------------------------------------------------------------- /scripts/samples-setup-cli-options.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/samples-setup-cli-options.ps1 -------------------------------------------------------------------------------- /scripts/setup-cocoa-sdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/setup-cocoa-sdk.ps1 -------------------------------------------------------------------------------- /scripts/smoke-test-android.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/smoke-test-android.ps1 -------------------------------------------------------------------------------- /scripts/smoke-test-ios.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/smoke-test-ios.ps1 -------------------------------------------------------------------------------- /scripts/smoke-test-webgl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/smoke-test-webgl.py -------------------------------------------------------------------------------- /scripts/unity-utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/unity-utils.ps1 -------------------------------------------------------------------------------- /scripts/unity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/scripts/unity.ps1 -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Sentry.Unity.Android/AndroidJavaScopeObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Android/AndroidJavaScopeObserver.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Android/AndroidOptionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Android/AndroidOptionConfiguration.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Android/BreadcrumbExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Android/BreadcrumbExtensions.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Android/IAndroidJNI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Android/IAndroidJNI.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Android/NativeContextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Android/NativeContextWriter.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Android/ScopeCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Android/ScopeCallback.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Android/Sentry.Unity.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Android/Sentry.Unity.Android.csproj -------------------------------------------------------------------------------- /src/Sentry.Unity.Android/SentryJava.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Android/SentryJava.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Android/SentryNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Android/SentryNative.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Android/SentryNativeAndroid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Android/SentryNativeAndroid.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor.iOS/BuildPostProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor.iOS/BuildPostProcess.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor.iOS/NativeMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor.iOS/NativeMain.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor.iOS/NativeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor.iOS/NativeOptions.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor.iOS/Sentry.Unity.Editor.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor.iOS/Sentry.Unity.Editor.iOS.csproj -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor.iOS/SentryXcodeProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor.iOS/SentryXcodeProject.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/Android/AndroidManifestConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/Android/AndroidManifestConfiguration.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/Android/AndroidUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/Android/AndroidUtils.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/Android/DebugSymbolUpload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/Android/DebugSymbolUpload.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/Android/GradleSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/Android/GradleSetup.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/Android/ProguardSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/Android/ProguardSetup.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/AutoInstrumentation/SentryPerformanceAutoInstrumentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/AutoInstrumentation/SentryPerformanceAutoInstrumentation.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/AutoInstrumentation/SentryPlayerReaderWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/AutoInstrumentation/SentryPlayerReaderWriter.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/ConfigurationWindow/AdvancedTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/ConfigurationWindow/AdvancedTab.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/ConfigurationWindow/ConfigurationCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/ConfigurationWindow/ConfigurationCreator.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/ConfigurationWindow/CoreTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/ConfigurationWindow/CoreTab.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/ConfigurationWindow/DebugSymbolsTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/ConfigurationWindow/DebugSymbolsTab.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/ConfigurationWindow/EnrichmentTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/ConfigurationWindow/EnrichmentTab.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/ConfigurationWindow/LoggingTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/ConfigurationWindow/LoggingTab.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/ConfigurationWindow/OptionsConfigurationTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/ConfigurationWindow/OptionsConfigurationTab.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/ConfigurationWindow/SentryTestWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/ConfigurationWindow/SentryTestWindow.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/ConfigurationWindow/TransportTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/ConfigurationWindow/TransportTab.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/ConfigurationWindow/Wizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/ConfigurationWindow/Wizard.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/ConfigurationWindow/WizardApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/ConfigurationWindow/WizardApi.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/Il2CppBuildPreProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/Il2CppBuildPreProcess.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/Native/BuildPostProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/Native/BuildPostProcess.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/Resources/SentryLogoDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/Resources/SentryLogoDark.png -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/Resources/SentryLogoLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/Resources/SentryLogoLight.png -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/ScriptableSentryUnityOptionsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/ScriptableSentryUnityOptionsEditor.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/Sentry.Unity.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/Sentry.Unity.Editor.csproj -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/SentryCli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/SentryCli.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/SentryCliOptionsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/SentryCliOptionsEditor.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/SentryFileUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/SentryFileUtil.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/SentryPackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/SentryPackageInfo.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/SentryScriptableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/SentryScriptableObject.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/SentryUnityVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/SentryUnityVersion.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/UnityCommandLineArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/UnityCommandLineArguments.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Editor/WebGL/BuildPreProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Editor/WebGL/BuildPreProcess.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Native/NativeContextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Native/NativeContextWriter.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Native/NativeScopeObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Native/NativeScopeObserver.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Native/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Native/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Native/Sentry.Unity.Native.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Native/Sentry.Unity.Native.csproj -------------------------------------------------------------------------------- /src/Sentry.Unity.Native/SentryNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Native/SentryNative.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.Native/SentryNativeBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.Native/SentryNativeBridge.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.iOS/NativeContextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.iOS/NativeContextWriter.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.iOS/NativeScopeObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.iOS/NativeScopeObserver.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.iOS/Sentry.Unity.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.iOS/Sentry.Unity.iOS.csproj -------------------------------------------------------------------------------- /src/Sentry.Unity.iOS/SentryCocoaBridgeProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.iOS/SentryCocoaBridgeProxy.cs -------------------------------------------------------------------------------- /src/Sentry.Unity.iOS/SentryNativeCocoa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity.iOS/SentryNativeCocoa.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/ContextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/ContextWriter.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/EventCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/EventCapture.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Extensions/JsonExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Extensions/JsonExtensions.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/ISentryUnityInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/ISentryUnityInfo.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Il2CppEventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Il2CppEventProcessor.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/AnrIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/AnrIntegration.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/ApplicationNotRespondingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/ApplicationNotRespondingException.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/IApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/IApplication.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/ISceneManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/ISceneManager.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/LifeCycleIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/LifeCycleIntegration.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/LowMemoryIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/LowMemoryIntegration.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/SceneManagerIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/SceneManagerIntegration.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/SceneManagerTracingIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/SceneManagerTracingIntegration.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/StartupTracingIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/StartupTracingIntegration.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/TraceGenerationIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/TraceGenerationIntegration.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/UnityApplicationLoggingIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/UnityApplicationLoggingIntegration.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/UnityBadGatewayExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/UnityBadGatewayExceptionFilter.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/UnityBeforeSceneLoadIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/UnityBeforeSceneLoadIntegration.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/UnityLogEventFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/UnityLogEventFactory.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/UnityLogHandlerIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/UnityLogHandlerIntegration.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/UnityScopeIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/UnityScopeIntegration.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/UnitySocketExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/UnitySocketExceptionFilter.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/UnityStackTraceParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/UnityStackTraceParser.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/UnityWebExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/UnityWebExceptionFilter.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Integrations/UnityWebGLExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Integrations/UnityWebGLExceptionHandler.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Json/SafeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Json/SafeSerializer.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/MainThreadData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/MainThreadData.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/NativeUtils/CFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/NativeUtils/CFunctions.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/NativeUtils/ContextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/NativeUtils/ContextWriter.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/NativeUtils/SentryPlatformServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/NativeUtils/SentryPlatformServices.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Protocol/Unity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Protocol/Unity.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/ScopeObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/ScopeObserver.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/ScreenshotEventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/ScreenshotEventProcessor.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/ScriptableSentryUnityOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/ScriptableSentryUnityOptions.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/Sentry.Unity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/Sentry.Unity.csproj -------------------------------------------------------------------------------- /src/Sentry.Unity/SentryCliOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/SentryCliOptions.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/SentryCliOptionsConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/SentryCliOptionsConfiguration.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/SentryMonoBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/SentryMonoBehaviour.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/SentryOptionsConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/SentryOptionsConfiguration.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/SentryScreenshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/SentryScreenshot.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/SentrySdk.Dotnet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/SentrySdk.Dotnet.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/SentrySdk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/SentrySdk.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/SentryUnityOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/SentryUnityOptions.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/SentryUnityOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/SentryUnityOptionsExtensions.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/SentryUnitySdk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/SentryUnitySdk.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/SystemInfoAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/SystemInfoAdapter.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/TimeDebounceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/TimeDebounceBase.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/UnityEventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/UnityEventProcessor.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/UnityLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/UnityLogger.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/UnityViewHierarchyNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/UnityViewHierarchyNode.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/UnityWebRequestTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/UnityWebRequestTransport.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/ViewHierarchyEventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/ViewHierarchyEventProcessor.cs -------------------------------------------------------------------------------- /src/Sentry.Unity/WebGL/SentryWebGL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/src/Sentry.Unity/WebGL/SentryWebGL.cs -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test.sh -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/Editor/AndroidManifestUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/Editor/AndroidManifestUpdater.cs -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/Editor/Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/Editor/Builder.cs -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/Editor/SentrySetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/Editor/SentrySetup.cs -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/Scenes/SmokeTest.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/Scenes/SmokeTest.unity -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/Scripts/CliConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/Scripts/CliConfiguration.cs -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/Scripts/CppPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/Scripts/CppPlugin.cpp -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/Scripts/CppPlugin.cpp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/Scripts/CppPlugin.cpp.meta -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/Scripts/ObjectiveCPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/Scripts/ObjectiveCPlugin.m -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/Scripts/ObjectiveCPlugin.m.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/Scripts/ObjectiveCPlugin.m.meta -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/Scripts/OptionsConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/Scripts/OptionsConfiguration.cs -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/Scripts/SmokeTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/Scripts/SmokeTester.cs -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/Scripts/SmokeTester.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/Scripts/SmokeTester.cs.meta -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/add-sentry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/add-sentry.ps1 -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/build-project.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/build-project.ps1 -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/common.ps1 -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/configure-sentry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/configure-sentry.ps1 -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/crash-test-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/crash-test-server.py -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/create-project.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/create-project.ps1 -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/extract-package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/extract-package.ps1 -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/globals.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/globals.ps1 -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/gradle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/gradle/README.md -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/gradle/v5.1.1/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/gradle/v5.1.1/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/gradle/v5.1.1/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/gradle/v5.1.1/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/gradle/v5.1.1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/gradle/v5.1.1/gradlew -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/gradle/v5.1.1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/gradle/v5.1.1/gradlew.bat -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/gradle/v6.1.1/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/gradle/v6.1.1/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/gradle/v6.1.1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/gradle/v6.1.1/gradlew -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/gradle/v6.1.1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/gradle/v6.1.1/gradlew.bat -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/integration-test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/integration-test.ps1 -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/measure-build-size.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/measure-build-size.ps1 -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/modify-gradle-project.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/modify-gradle-project.ps1 -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/run-smoke-test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/run-smoke-test.ps1 -------------------------------------------------------------------------------- /test/Scripts.Integration.Test/symbol-upload-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Integration.Test/symbol-upload-server.py -------------------------------------------------------------------------------- /test/Scripts.Tests/android-libs.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Tests/android-libs.snapshot -------------------------------------------------------------------------------- /test/Scripts.Tests/package-release.zip.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Tests/package-release.zip.snapshot -------------------------------------------------------------------------------- /test/Scripts.Tests/test-pack-contents.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Scripts.Tests/test-pack-contents.ps1 -------------------------------------------------------------------------------- /test/Sentry.Unity.Android.Tests/Sentry.Unity.Android.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Android.Tests/Sentry.Unity.Android.Tests.csproj -------------------------------------------------------------------------------- /test/Sentry.Unity.Android.Tests/SentryJavaTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Android.Tests/SentryJavaTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Android.Tests/SentryNativeAndroidTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Android.Tests/SentryNativeAndroidTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Android.Tests/TestSentryJava.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Android.Tests/TestSentryJava.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/Android/AndroidManifestConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/Android/AndroidManifestConfigurationTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/Android/DebugSymbolUploadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/Android/DebugSymbolUploadTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/Android/GradleSetupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/Android/GradleSetupTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/Android/ProguardSetupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/Android/ProguardSetupTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/EditorModeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/EditorModeTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/EmbeddedResourcesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/EmbeddedResourcesTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/Il2CppBuildPreProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/Il2CppBuildPreProcess.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/ScriptableSentryUnityOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/ScriptableSentryUnityOptionsTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/Sentry.Unity.Editor.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/Sentry.Unity.Editor.Tests.csproj -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/SentryCliTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/SentryCliTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/SentryScriptableObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/SentryScriptableObjectTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/SentryUnityVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/SentryUnityVersionTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/Android/AddingProguard/build.gradle_test_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/TestFiles/Android/AddingProguard/build.gradle_test_1.txt -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/Android/AddingProguard/build.gradle_test_1_expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/TestFiles/Android/AddingProguard/build.gradle_test_1_expected.txt -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/Android/AddingProguard/build.gradle_test_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/TestFiles/Android/AddingProguard/build.gradle_test_2.txt -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/Android/AddingProguard/build.gradle_test_2_expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/TestFiles/Android/AddingProguard/build.gradle_test_2_expected.txt -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/Android/Empty-AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/TestFiles/Android/Empty-AndroidManifest.xml -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/Android/InsertIntoScope/build.gradle_test_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/TestFiles/Android/InsertIntoScope/build.gradle_test_1.txt -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/Android/InsertIntoScope/build.gradle_test_1_expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/TestFiles/Android/InsertIntoScope/build.gradle_test_1_expected.txt -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/Android/InsertIntoScope/build.gradle_test_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/TestFiles/Android/InsertIntoScope/build.gradle_test_2.txt -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/Android/InsertIntoScope/build.gradle_test_2_expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/TestFiles/Android/InsertIntoScope/build.gradle_test_2_expected.txt -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/GradleProject/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/GradleProject/build.gradle -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/GradleProject/launcher/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/GradleProject/launcher/build.gradle -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/GradleProject/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/GradleProject/settings.gradle -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/GradleProject/unityLibrary/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/GradleProject/unityLibrary/build.gradle -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/GradleProject/unityLibrary/libs/unity-classes.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/GradleProject/unityLibrary/src/main/jniLibs/armeabi-v7a/libil2cpp.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/GradleProject/unityLibrary/src/main/jniLibs/armeabi-v7a/libmain.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/GradleProject/unityLibrary/src/main/jniLibs/armeabi-v7a/libunity.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/UnityProject/Library/Bee/Android/Prj/IL2CPP/Gradle/build.gradle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/UnityProject/Library/Bee/artifacts/Android/libil2cpp.dbg.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/UnityProject/Library/Bee/artifacts/Android/libil2cpp.sym.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/UnityProject/Library/Bee/artifacts/Android/libunity.sym.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/UnityProject/Packages/io.sentry.unity.dev/Plugins/Android/Sentry~/androidSdk.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/UnityProject/Temp/StagingArea/symbols/armeabi-v7/libil2cpp.dbg.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/UnityProject/Temp/StagingArea/symbols/armeabi-v7/libil2cpp.sym.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/UnityProject/Temp/StagingArea/symbols/armeabi-v7/libunity.sym.so: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/UnityProject/Temp/gradleOut/build.gradle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/TestFiles/SymbolsUploadProject/fake-sentry-cli: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.Tests/WizardTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.Tests/WizardTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.iOS.Tests/BuildPostProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.iOS.Tests/BuildPostProcessorTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.iOS.Tests/NativeMainTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.iOS.Tests/NativeMainTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.iOS.Tests/NativeOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.iOS.Tests/NativeOptionsTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.iOS.Tests/Sentry.Unity.Editor.iOS.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.iOS.Tests/Sentry.Unity.Editor.iOS.Tests.csproj -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.iOS.Tests/SentryNativeBridgeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.iOS.Tests/SentryNativeBridgeTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.iOS.Tests/SentryXcodeProjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.iOS.Tests/SentryXcodeProjectTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.iOS.Tests/TestFiles/2019_4/MainApp/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.iOS.Tests/TestFiles/2019_4/MainApp/main.mm -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.iOS.Tests/TestFiles/2019_4/Unity-iPhone.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.iOS.Tests/TestFiles/2019_4/Unity-iPhone.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.iOS.Tests/TestFiles/2019_4/Unity-iPhone.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.iOS.Tests/TestFiles/2019_4/Unity-iPhone.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.iOS.Tests/TestFiles/2019_4/Unity-iPhone.xcodeproj/xcshareddata/xcschemes/Unity-iPhone.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.iOS.Tests/TestFiles/2019_4/Unity-iPhone.xcodeproj/xcshareddata/xcschemes/Unity-iPhone.xcscheme -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.iOS.Tests/TestFiles/2019_4/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.iOS.Tests/TestFiles/2019_4/main.txt -------------------------------------------------------------------------------- /test/Sentry.Unity.Editor.iOS.Tests/TestFiles/2019_4/main_expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Editor.iOS.Tests/TestFiles/2019_4/main_expected.txt -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/AnrIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/AnrIntegrationTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/ContextWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/ContextWriterTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/DebouncerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/DebouncerTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/IntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/IntegrationTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/Json/SafeSerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/Json/SafeSerializerTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/LifeCycleIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/LifeCycleIntegrationTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/LowMemoryIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/LowMemoryIntegrationTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/Protocol/UnityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/Protocol/UnityTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/README.md -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/SceneManagerIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/SceneManagerIntegrationTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/SceneManagerTracingIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/SceneManagerTracingIntegrationTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/ScreenshotEventProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/ScreenshotEventProcessorTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/ScriptableSentryUnityOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/ScriptableSentryUnityOptionsTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/Sentry.Unity.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/Sentry.Unity.Tests.csproj -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/SentryMonoBehaviourTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/SentryMonoBehaviourTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/SentryScreenshotTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/SentryScreenshotTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/SentryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/SentryTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/SentryUnityOptionsExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/SentryUnityOptionsExtensionsTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/SentryUnityOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/SentryUnityOptionsTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/SentryUnityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/SentryUnityTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/StartupTracingIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/StartupTracingIntegrationTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/Stubs/SentryTestMonoBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/Stubs/SentryTestMonoBehaviour.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/Stubs/TestHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/Stubs/TestHub.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/Stubs/TestStructuredLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/Stubs/TestStructuredLogger.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/TestBehaviours/TestMonoBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/TestBehaviours/TestMonoBehaviour.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/TestHttpClientHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/TestHttpClientHandler.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/TestSentryOptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/TestSentryOptions.json -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/TraceGenerationIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/TraceGenerationIntegrationTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/UnityApplicationLoggingIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/UnityApplicationLoggingIntegrationTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/UnityBadGatewayExceptionFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/UnityBadGatewayExceptionFilterTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/UnityBeforeSceneLoadIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/UnityBeforeSceneLoadIntegrationTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/UnityEventScopeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/UnityEventScopeTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/UnityIl2CppEventExceptionProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/UnityIl2CppEventExceptionProcessorTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/UnityLogEventFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/UnityLogEventFactoryTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/UnityLogHandlerIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/UnityLogHandlerIntegrationTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/UnityLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/UnityLoggerTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/UnitySocketExceptionFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/UnitySocketExceptionFilterTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/UnityStackTraceParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/UnityStackTraceParserTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/UnityWebExceptionFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/UnityWebExceptionFilterTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/UnityWebGLExceptionHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/UnityWebGLExceptionHandlerTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.Tests/ViewHierarchyEventProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.Tests/ViewHierarchyEventProcessorTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.iOS.Tests/NativeScopeObserverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.iOS.Tests/NativeScopeObserverTests.cs -------------------------------------------------------------------------------- /test/Sentry.Unity.iOS.Tests/Sentry.Unity.iOS.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.iOS.Tests/Sentry.Unity.iOS.Tests.csproj -------------------------------------------------------------------------------- /test/Sentry.Unity.iOS.Tests/SentryNativeIosTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/Sentry.Unity.iOS.Tests/SentryNativeIosTests.cs -------------------------------------------------------------------------------- /test/SharedClasses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/SharedClasses/README.md -------------------------------------------------------------------------------- /test/SharedClasses/TestApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/SharedClasses/TestApplication.cs -------------------------------------------------------------------------------- /test/SharedClasses/TestEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/SharedClasses/TestEnvironment.cs -------------------------------------------------------------------------------- /test/SharedClasses/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/SharedClasses/TestLogger.cs -------------------------------------------------------------------------------- /test/SharedClasses/TestUnityInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/SharedClasses/TestUnityInfo.cs -------------------------------------------------------------------------------- /test/SharedClasses/UnityTestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-unity/HEAD/test/SharedClasses/UnityTestLogger.cs --------------------------------------------------------------------------------