Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Unity 2022.3.55f1 #1938

Closed
wants to merge 1 commit into from
Closed

Conversation

github-actions[bot]
Copy link
Contributor

#skip-changelog

Auto-generated by create-pull-request

@bitsandfoxes
Copy link
Contributor

For some reason when exporting the android project it now adds

android.aapt2FromMavenOverride=/opt/unity/Editor/Data/PlaybackEngines/AndroidPlayer/SDK/build-tools/34.0.0/aapt2

to the gradle.properties. That path does not exist in the job that compiles the project.
It looks like we need to either

  1. Fix the path: i.e. overwrite it in the .properties
  2. Remove the line and add it to the local.properties instead
  3. And/Or figure out why this is only an issue on 2022 and not 6

@bitsandfoxes bitsandfoxes marked this pull request as draft December 19, 2024 09:35
@bruno-garcia bruno-garcia force-pushed the chore/unity-2022.3.55f1 branch 3 times, most recently from ec22fe6 to f6a04fa Compare December 24, 2024 02:22
@bruno-garcia bruno-garcia force-pushed the chore/unity-2022.3.55f1 branch 2 times, most recently from e104120 to 46649b7 Compare January 10, 2025 02:24
@bitsandfoxes bitsandfoxes force-pushed the chore/unity-2022.3.55f1 branch from 46649b7 to e104120 Compare January 10, 2025 08:19
@@ -9,7 +9,7 @@ namespace Sentry.Unity.Android;
internal class JniExecutor : IJniExecutor
{
// We're capping out at 16ms - 1 frame at 60 frames per second
private static readonly TimeSpan DefaultTimeout = TimeSpan.FromMilliseconds(16);
private static readonly TimeSpan DefaultTimeout = TimeSpan.FromMilliseconds(2000);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is this timeout used for? The comment above indicates some relationship to giving up after causing 1 frame dropped. 2 seconds is quite large of a UI freeze

@@ -44,7 +44,7 @@ public static void Configure(SentryUnityOptions options, ISentryUnityInfo sentry
options.DiagnosticLogger?.LogDebug("The Android SDK is already initialized");
}
// Local testing had Init at an average of about 25ms.
else if (!SentryJava.Init(JniExecutor, options, TimeSpan.FromMilliseconds(200)))
else if (!SentryJava.Init(JniExecutor, options, TimeSpan.FromMilliseconds(2000)))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ideally we control these timeouts centrally, and name them in a meaninful way so we know what they are representing.

@bruno-garcia bruno-garcia force-pushed the chore/unity-2022.3.55f1 branch from 1b8fa25 to d764ebe Compare January 11, 2025 02:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants