diff --git a/.github/workflows/changelog-preview.yml b/.github/workflows/changelog-preview.yml
new file mode 100644
index 0000000000..30c6083c6b
--- /dev/null
+++ b/.github/workflows/changelog-preview.yml
@@ -0,0 +1,18 @@
+name: Changelog Preview
+on:
+ pull_request:
+ types:
+ - opened
+ - synchronize
+ - reopened
+ - edited
+ - labeled
+ - unlabeled
+permissions:
+ contents: write
+ pull-requests: write
+
+jobs:
+ changelog-preview:
+ uses: getsentry/craft/.github/workflows/changelog-preview.yml@v2
+ secrets: inherit
diff --git a/.github/workflows/min_version_test.yml b/.github/workflows/min_version_test.yml
index 613538f0a7..847d230ea9 100644
--- a/.github/workflows/min_version_test.yml
+++ b/.github/workflows/min_version_test.yml
@@ -51,7 +51,7 @@ jobs:
with:
flutter-version: '3.24.0'
- - uses: ruby/setup-ruby@90be1154f987f4dc0fe0dd0feedac9e473aa4ba8 # pin@v1.286.0
+ - uses: ruby/setup-ruby@09a7688d3b55cf0e976497ff046b70949eeaccfd # pin@v1.288.0
with:
ruby-version: '3.1.2' # https://github.com/flutter/flutter/issues/109385#issuecomment-1212614125
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 258b43726e..4661055508 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -3,8 +3,8 @@ on:
workflow_dispatch:
inputs:
version:
- description: Version to release
- required: true
+ description: Version to release (or "auto")
+ required: false
force:
description: Force a release even when there are release-blockers (optional)
required: false
@@ -12,6 +12,10 @@ on:
description: Target branch to merge into. Uses the default branch as a fallback (optional)
required: false
+permissions:
+ contents: write
+ pull-requests: write
+
jobs:
release:
runs-on: ubuntu-latest
@@ -29,7 +33,7 @@ jobs:
token: ${{ steps.token.outputs.token }}
fetch-depth: 0
- name: Prepare release
- uses: getsentry/action-prepare-release@c8e1c2009ab08259029170132c384f03c1064c0e
+ uses: getsentry/craft@906009a1b771956757e521555b561379307eb667 # v2
env:
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
with:
diff --git a/.github/workflows/testflight.yml b/.github/workflows/testflight.yml
index 91b6d53530..2a1db45d62 100644
--- a/.github/workflows/testflight.yml
+++ b/.github/workflows/testflight.yml
@@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v6
- uses: subosito/flutter-action@fd55f4c5af5b953cc57a2be44cb082c8f6635e8e # pin@v2.21.0
- run: xcodes select 26.2
- - uses: ruby/setup-ruby@90be1154f987f4dc0fe0dd0feedac9e473aa4ba8 # pin@v1.286.0
+ - uses: ruby/setup-ruby@09a7688d3b55cf0e976497ff046b70949eeaccfd # pin@v1.288.0
with:
ruby-version: '2.7.5'
bundler-cache: true
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a98c697c51..f4b3fc5f6b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,32 @@
# Changelog
+## 9.14.0
+
+### Features
+
+- Add `enableTombstone` option for improved native crash reporting on Android 12+ ([#3526](https://github.com/getsentry/sentry-dart/pull/3526))
+ - When enabled, uses Android's `ApplicationExitInfo.REASON_CRASH_NATIVE` to capture native crashes with more detailed thread information
+ - Disabled by default
+
+### Fixes
+
+- Dont guard user attributes behind `sendDefaultPii` for logs and metrics ([#3524](https://github.com/getsentry/sentry-dart/pull/3524))
+
+### Dependencies
+
+- Bump Native SDK from v0.12.6 to v0.12.8 ([#3514](https://github.com/getsentry/sentry-dart/pull/3514), [#3520](https://github.com/getsentry/sentry-dart/pull/3520))
+ - [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0128)
+ - [diff](https://github.com/getsentry/sentry-native/compare/0.12.6...0.12.8)
+- Bump Android SDK from v8.32.0 to v8.33.0 ([#3529](https://github.com/getsentry/sentry-dart/pull/3529))
+ - [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8330)
+ - [diff](https://github.com/getsentry/sentry-java/compare/8.32.0...8.33.0)
+
+Internal Changes
+
+- Add `sentry.javascript.browser.flutter` sdk name for native js errors ([#3525](https://github.com/getsentry/sentry-dart/pull/3525))
+
+
+
## 9.13.0
### Features
diff --git a/docs/sdk-versions.md b/docs/sdk-versions.md
index a07d129d53..c860d80158 100644
--- a/docs/sdk-versions.md
+++ b/docs/sdk-versions.md
@@ -6,6 +6,7 @@ This document shows which version of the various Sentry SDKs are used in which S
| Sentry Flutter SDK | Sentry Android SDK | Sentry Cocoa SDK | Sentry JavaScript SDK | Sentry Native SDK |
| ------------------ | ------------------ | ---------------- | --------------------- | ----------------- |
+| 9.14.0 | 8.33.0 | 8.56.2 | 10.38.0 | 0.12.8 |
| 9.13.0 | 8.32.0 | 8.56.2 | 10.38.0 | 0.12.6 |
| 9.12.0 | 8.31.0 | 8.56.2 | 10.6.0 | 0.12.5 |
| 9.11.0 | 8.30.0 | 8.56.2 | 10.6.0 | 0.12.3 |
diff --git a/metrics/Gemfile.lock b/metrics/Gemfile.lock
index aff4675061..0df27322ca 100644
--- a/metrics/Gemfile.lock
+++ b/metrics/Gemfile.lock
@@ -46,7 +46,7 @@ GEM
dotenv (2.8.1)
emoji_regex (3.2.3)
excon (0.112.0)
- faraday (1.10.4)
+ faraday (1.10.5)
faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0)
faraday-excon (~> 1.1)
@@ -65,7 +65,7 @@ GEM
faraday-em_synchrony (1.0.1)
faraday-excon (1.1.0)
faraday-httpclient (1.0.1)
- faraday-multipart (1.1.1)
+ faraday-multipart (1.2.0)
multipart-post (~> 2.0)
faraday-net_http (1.0.2)
faraday-net_http_persistent (1.2.0)
diff --git a/metrics/flutter.properties b/metrics/flutter.properties
index 39f226238d..2ff196df6d 100644
--- a/metrics/flutter.properties
+++ b/metrics/flutter.properties
@@ -1,2 +1,2 @@
-version = 3.38.7
+version = 3.41.1
repo = https://github.com/flutter/flutter
diff --git a/packages/dart/lib/src/constants.dart b/packages/dart/lib/src/constants.dart
index 94759424df..cfc2f92e2c 100644
--- a/packages/dart/lib/src/constants.dart
+++ b/packages/dart/lib/src/constants.dart
@@ -89,16 +89,19 @@ abstract class SemanticAttributesConstants {
static const sentryInternalReplayIsBuffering =
'sentry._internal.replay_is_buffering';
- /// The user ID (gated by `sendDefaultPii`).
+ /// The user ID.
+ /// Users are always manually set and never automatically inferred,
+ /// therefore this is not gated by `sendDefaultPii`.
static const userId = 'user.id';
- /// The user email (gated by `sendDefaultPii`).
+ /// The user email.
+ /// Users are always manually set and never automatically inferred,
+ /// therefore this is not gated by `sendDefaultPii`.
static const userEmail = 'user.email';
- /// The user IP address (gated by `sendDefaultPii`).
- static const userIpAddress = 'user.ip_address';
-
- /// The user username (gated by `sendDefaultPii`).
+ /// The user username.
+ /// Users are always manually set and never automatically inferred,
+ /// therefore this is not gated by `sendDefaultPii`.
static const userName = 'user.name';
/// The operating system name.
diff --git a/packages/dart/lib/src/telemetry/default_attributes.dart b/packages/dart/lib/src/telemetry/default_attributes.dart
index 93facb066a..d71ca991bb 100644
--- a/packages/dart/lib/src/telemetry/default_attributes.dart
+++ b/packages/dart/lib/src/telemetry/default_attributes.dart
@@ -23,21 +23,21 @@ Map defaultAttributes(SentryOptions options,
SentryAttribute.string(options.release!);
}
- if (options.sendDefaultPii) {
- final user = scope?.user;
- if (user != null) {
- if (user.id != null) {
- attributes[SemanticAttributesConstants.userId] =
- SentryAttribute.string(user.id!);
- }
- if (user.name != null) {
- attributes[SemanticAttributesConstants.userName] =
- SentryAttribute.string(user.name!);
- }
- if (user.email != null) {
- attributes[SemanticAttributesConstants.userEmail] =
- SentryAttribute.string(user.email!);
- }
+ // Users are always manually set and never automatically inferred,
+ // therefore this is not gated by `sendDefaultPii`.
+ final user = scope?.user;
+ if (user != null) {
+ if (user.id != null) {
+ attributes[SemanticAttributesConstants.userId] =
+ SentryAttribute.string(user.id!);
+ }
+ if (user.name != null) {
+ attributes[SemanticAttributesConstants.userName] =
+ SentryAttribute.string(user.name!);
+ }
+ if (user.email != null) {
+ attributes[SemanticAttributesConstants.userEmail] =
+ SentryAttribute.string(user.email!);
}
}
diff --git a/packages/dart/lib/src/version.dart b/packages/dart/lib/src/version.dart
index 41bf5a924c..e7364dcc1d 100644
--- a/packages/dart/lib/src/version.dart
+++ b/packages/dart/lib/src/version.dart
@@ -9,7 +9,7 @@
library;
/// The SDK version reported to Sentry.io in the submitted events.
-const String sdkVersion = '9.13.0';
+const String sdkVersion = '9.14.0';
String sdkName(bool isWeb) => isWeb ? _browserSdkName : _ioSdkName;
diff --git a/packages/dart/pubspec.yaml b/packages/dart/pubspec.yaml
index a29d4df18f..94e8f7975c 100644
--- a/packages/dart/pubspec.yaml
+++ b/packages/dart/pubspec.yaml
@@ -1,5 +1,5 @@
name: sentry
-version: 9.13.0
+version: 9.14.0
description: >
A crash reporting library for Dart that sends crash reports to Sentry.io.
This library supports Dart VM and Web. For Flutter consider sentry_flutter instead.
diff --git a/packages/dart/test/telemetry/log/log_capture_pipeline_test.dart b/packages/dart/test/telemetry/log/log_capture_pipeline_test.dart
index 5c6179f99e..ffbe119712 100644
--- a/packages/dart/test/telemetry/log/log_capture_pipeline_test.dart
+++ b/packages/dart/test/telemetry/log/log_capture_pipeline_test.dart
@@ -129,21 +129,6 @@ void main() {
expect(attributes[SemanticAttributesConstants.sentryEnvironment]?.value,
'callback-env');
});
-
- test('does not add user attributes when sendDefaultPii is false',
- () async {
- fixture.options.sendDefaultPii = false;
- await fixture.scope.setUser(SentryUser(id: 'user-id'));
-
- final log = givenLog();
-
- await fixture.pipeline.captureLog(log, scope: fixture.scope);
-
- expect(
- log.attributes.containsKey(SemanticAttributesConstants.userId),
- isFalse,
- );
- });
});
group('when logs are disabled', () {
@@ -239,7 +224,6 @@ class Fixture {
final options = defaultTestOptions()
..environment = 'test-env'
..release = 'test-release'
- ..sendDefaultPii = true
..enableLogs = true;
final processor = MockTelemetryProcessor();
diff --git a/packages/dart/test/telemetry/metric/metric_capture_pipeline_test.dart b/packages/dart/test/telemetry/metric/metric_capture_pipeline_test.dart
index e60f63d0e6..4d235796a3 100644
--- a/packages/dart/test/telemetry/metric/metric_capture_pipeline_test.dart
+++ b/packages/dart/test/telemetry/metric/metric_capture_pipeline_test.dart
@@ -118,21 +118,6 @@ void main() {
expect(attributes[SemanticAttributesConstants.sentryEnvironment]?.value,
'callback-env');
});
-
- test('does not add user attributes when sendDefaultPii is false',
- () async {
- fixture.options.sendDefaultPii = false;
- await fixture.scope.setUser(SentryUser(id: 'user-id'));
-
- final metric = fixture.createMetric();
-
- await fixture.pipeline.captureMetric(metric, scope: fixture.scope);
-
- expect(
- metric.attributes.containsKey(SemanticAttributesConstants.userId),
- isFalse,
- );
- });
});
group('when metrics are disabled', () {
@@ -196,7 +181,6 @@ class Fixture {
final options = defaultTestOptions()
..environment = 'test-env'
..release = 'test-release'
- ..sendDefaultPii = true
..enableMetrics = true;
final processor = MockTelemetryProcessor();
diff --git a/packages/dio/lib/src/version.dart b/packages/dio/lib/src/version.dart
index b4e3f3af5b..19ec9a6f2a 100644
--- a/packages/dio/lib/src/version.dart
+++ b/packages/dio/lib/src/version.dart
@@ -1,5 +1,5 @@
/// The SDK version reported to Sentry.io in the submitted events.
-const String sdkVersion = '9.13.0';
+const String sdkVersion = '9.14.0';
/// The package name reported to Sentry.io in the submitted events.
const String packageName = 'pub:sentry_dio';
diff --git a/packages/dio/pubspec.yaml b/packages/dio/pubspec.yaml
index db7eeb17d2..8b52cb0a18 100644
--- a/packages/dio/pubspec.yaml
+++ b/packages/dio/pubspec.yaml
@@ -1,6 +1,6 @@
name: sentry_dio
description: An integration which adds support for performance tracing for the Dio package.
-version: 9.13.0
+version: 9.14.0
homepage: https://docs.sentry.io/platforms/dart/
repository: https://github.com/getsentry/sentry-dart
issue_tracker: https://github.com/getsentry/sentry-dart/issues
@@ -19,7 +19,7 @@ platforms:
dependencies:
dio: ^5.2.0
- sentry: 9.13.0
+ sentry: 9.14.0
dev_dependencies:
meta: ^1.3.0
diff --git a/packages/drift/lib/src/version.dart b/packages/drift/lib/src/version.dart
index 005f46fc3a..a3e7bcb85d 100644
--- a/packages/drift/lib/src/version.dart
+++ b/packages/drift/lib/src/version.dart
@@ -1,5 +1,5 @@
/// The SDK version reported to Sentry.io in the submitted events.
-const String sdkVersion = '9.13.0';
+const String sdkVersion = '9.14.0';
/// The package name reported to Sentry.io in the submitted events.
const String packageName = 'pub:sentry_drift';
diff --git a/packages/drift/pubspec.yaml b/packages/drift/pubspec.yaml
index 5255cd7222..f402909cf5 100644
--- a/packages/drift/pubspec.yaml
+++ b/packages/drift/pubspec.yaml
@@ -1,6 +1,6 @@
name: sentry_drift
description: An integration which adds support for performance tracing for the drift package.
-version: 9.13.0
+version: 9.14.0
homepage: https://docs.sentry.io/platforms/flutter/
repository: https://github.com/getsentry/sentry-dart
issue_tracker: https://github.com/getsentry/sentry-dart/issues
@@ -17,7 +17,7 @@ platforms:
web:
dependencies:
- sentry: 9.13.0
+ sentry: 9.14.0
meta: ^1.3.0
drift: ^2.24.0
diff --git a/packages/file/lib/src/version.dart b/packages/file/lib/src/version.dart
index 6b074bf411..aeb917c4da 100644
--- a/packages/file/lib/src/version.dart
+++ b/packages/file/lib/src/version.dart
@@ -1,5 +1,5 @@
/// The SDK version reported to Sentry.io in the submitted events.
-const String sdkVersion = '9.13.0';
+const String sdkVersion = '9.14.0';
/// The package name reported to Sentry.io in the submitted events.
const String packageName = 'pub:sentry_file';
diff --git a/packages/file/pubspec.yaml b/packages/file/pubspec.yaml
index a4f5a845cd..df4b4ef86b 100644
--- a/packages/file/pubspec.yaml
+++ b/packages/file/pubspec.yaml
@@ -1,6 +1,6 @@
name: sentry_file
description: An integration which adds support for performance tracing for dart.io.File.
-version: 9.13.0
+version: 9.14.0
homepage: https://docs.sentry.io/platforms/dart/
repository: https://github.com/getsentry/sentry-dart
issue_tracker: https://github.com/getsentry/sentry-dart/issues
@@ -17,7 +17,7 @@ platforms:
windows:
dependencies:
- sentry: 9.13.0
+ sentry: 9.14.0
meta: ^1.3.0
dev_dependencies:
diff --git a/packages/firebase_remote_config/pubspec.yaml b/packages/firebase_remote_config/pubspec.yaml
index 1867defc2e..4ceffe0c22 100644
--- a/packages/firebase_remote_config/pubspec.yaml
+++ b/packages/firebase_remote_config/pubspec.yaml
@@ -1,6 +1,6 @@
name: sentry_firebase_remote_config
description: "Sentry integration to use feature flags from Firebase Remote Config."
-version: 9.13.0
+version: 9.14.0
homepage: https://docs.sentry.io/platforms/flutter/
repository: https://github.com/getsentry/sentry-dart
issue_tracker: https://github.com/getsentry/sentry-dart/issues
@@ -21,7 +21,7 @@ dependencies:
flutter:
sdk: flutter
firebase_remote_config: '>=5.4.3 <7.0.0'
- sentry: 9.13.0
+ sentry: 9.14.0
dev_dependencies:
flutter_test:
diff --git a/packages/flutter/android/build.gradle b/packages/flutter/android/build.gradle
index 3d68acbc1a..df383b8f3a 100644
--- a/packages/flutter/android/build.gradle
+++ b/packages/flutter/android/build.gradle
@@ -62,8 +62,8 @@ android {
}
dependencies {
- api 'io.sentry:sentry-android:8.32.0'
- debugImplementation 'io.sentry:sentry-spotlight:8.32.0'
+ api 'io.sentry:sentry-android:8.33.0'
+ debugImplementation 'io.sentry:sentry-spotlight:8.33.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
// Required -- JUnit 4 framework
diff --git a/packages/flutter/example/integration_test/integration_test.dart b/packages/flutter/example/integration_test/integration_test.dart
index 787f47a80a..c90edc5f0a 100644
--- a/packages/flutter/example/integration_test/integration_test.dart
+++ b/packages/flutter/example/integration_test/integration_test.dart
@@ -217,6 +217,7 @@ void main() {
options.anrTimeoutInterval = const Duration(seconds: 2);
options.connectionTimeout = const Duration(milliseconds: 1234);
options.readTimeout = const Duration(milliseconds: 2345);
+ options.enableTombstone = true;
});
});
@@ -280,12 +281,15 @@ void main() {
expect(findMatchingPackage, isNotNull);
}
expect(androidOptions.isEnableAutoTraceIdGeneration(), isFalse);
+ expect(androidOptions.isTombstoneEnabled(), isTrue);
+
final androidProxy = androidOptions.getProxy();
expect(androidProxy, isNotNull);
expect(androidProxy!.getHost()?.toDartString(), 'proxy.local');
expect(androidProxy.getPort()?.toDartString(), '8084');
expect(androidProxy.getUser()?.toDartString(), 'u');
expect(androidProxy.getPass()?.toDartString(), 'p');
+
final r = androidOptions.getSessionReplay();
expect(r.getQuality(), jni.SentryReplayOptions$SentryReplayQuality.HIGH);
expect(r.getSessionSampleRate(), isNotNull);
diff --git a/packages/flutter/example/lib/main.dart b/packages/flutter/example/lib/main.dart
index 7f65a7f9c2..cb0c89ad91 100644
--- a/packages/flutter/example/lib/main.dart
+++ b/packages/flutter/example/lib/main.dart
@@ -114,6 +114,15 @@ Future setupSentry(
// Init your App.
appRunner: appRunner,
);
+
+ Sentry.configureScope((scope) {
+ final user = SentryUser(
+ id: SentryId.newId().toString(),
+ name: 'J. Smith',
+ email: 'j.smith@example.com',
+ );
+ scope.setUser(user);
+ });
}
class MyApp extends StatefulWidget {
diff --git a/packages/flutter/example/pubspec.yaml b/packages/flutter/example/pubspec.yaml
index e68d072b0a..ecbc240b82 100644
--- a/packages/flutter/example/pubspec.yaml
+++ b/packages/flutter/example/pubspec.yaml
@@ -1,6 +1,6 @@
name: sentry_flutter_example
description: Demonstrates how to use the sentry_flutter plugin.
-version: 9.13.0
+version: 9.14.0
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
diff --git a/packages/flutter/lib/src/native/java/binding.dart b/packages/flutter/lib/src/native/java/binding.dart
index 41877da0b9..5c4753254f 100644
--- a/packages/flutter/lib/src/native/java/binding.dart
+++ b/packages/flutter/lib/src/native/java/binding.dart
@@ -1,4 +1,4 @@
-// AUTO GENERATED BY JNIGEN 0.15.0. DO NOT EDIT!
+// AUTO GENERATED BY JNIGEN 0.14.2. DO NOT EDIT!
// ignore_for_file: annotate_overrides
// ignore_for_file: argument_type_not_assignable
@@ -30,8 +30,8 @@
// ignore_for_file: unused_shown_name
// ignore_for_file: use_super_parameters
-import 'dart:core' as core$_;
import 'dart:core' show Object, String, bool, double, int;
+import 'dart:core' as core$_;
import 'package:jni/_internal.dart' as jni$_;
import 'package:jni/jni.dart' as jni$_;
@@ -40,7 +40,7 @@ import 'package:jni/jni.dart' as jni$_;
class SentryAndroid extends jni$_.JObject {
@jni$_.internal
@core$_.override
- final jni$_.JType $type;
+ final jni$_.JObjType $type;
@jni$_.internal
SentryAndroid.fromReference(
@@ -52,11 +52,8 @@ class SentryAndroid extends jni$_.JObject {
jni$_.JClass.forName(r'io/sentry/android/core/SentryAndroid');
/// The type which includes information such as the signature of this class.
- static const jni$_.JType nullableType =
- $SentryAndroid$NullableType$();
-
- /// The type which includes information such as the signature of this class.
- static const jni$_.JType type = $SentryAndroid$Type$();
+ static const nullableType = $SentryAndroid$NullableType();
+ static const type = $SentryAndroid$Type();
static final _id_init = _class.staticMethodId(
r'init',
r'(Landroid/content/Context;)V',
@@ -194,9 +191,9 @@ class SentryAndroid extends jni$_.JObject {
}
}
-final class $SentryAndroid$NullableType$ extends jni$_.JType {
+final class $SentryAndroid$NullableType extends jni$_.JObjType {
@jni$_.internal
- const $SentryAndroid$NullableType$();
+ const $SentryAndroid$NullableType();
@jni$_.internal
@core$_.override
@@ -211,29 +208,29 @@ final class $SentryAndroid$NullableType$ extends jni$_.JType {
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$NullableType$();
+ jni$_.JObjType get superType => const jni$_.JObjectNullableType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType => this;
+ jni$_.JObjType get nullableType => this;
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => ($SentryAndroid$NullableType$).hashCode;
+ int get hashCode => ($SentryAndroid$NullableType).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($SentryAndroid$NullableType$) &&
- other is $SentryAndroid$NullableType$;
+ return other.runtimeType == ($SentryAndroid$NullableType) &&
+ other is $SentryAndroid$NullableType;
}
}
-final class $SentryAndroid$Type$ extends jni$_.JType {
+final class $SentryAndroid$Type extends jni$_.JObjType {
@jni$_.internal
- const $SentryAndroid$Type$();
+ const $SentryAndroid$Type();
@jni$_.internal
@core$_.override
@@ -247,24 +244,24 @@ final class $SentryAndroid$Type$ extends jni$_.JType {
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$NullableType$();
+ jni$_.JObjType get superType => const jni$_.JObjectNullableType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType =>
- const $SentryAndroid$NullableType$();
+ jni$_.JObjType get nullableType =>
+ const $SentryAndroid$NullableType();
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => ($SentryAndroid$Type$).hashCode;
+ int get hashCode => ($SentryAndroid$Type).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($SentryAndroid$Type$) &&
- other is $SentryAndroid$Type$;
+ return other.runtimeType == ($SentryAndroid$Type) &&
+ other is $SentryAndroid$Type;
}
}
@@ -272,7 +269,7 @@ final class $SentryAndroid$Type$ extends jni$_.JType {
class SentryAndroidOptions$BeforeCaptureCallback extends jni$_.JObject {
@jni$_.internal
@core$_.override
- final jni$_.JType $type;
+ final jni$_.JObjType $type;
@jni$_.internal
SentryAndroidOptions$BeforeCaptureCallback.fromReference(
@@ -284,13 +281,9 @@ class SentryAndroidOptions$BeforeCaptureCallback extends jni$_.JObject {
r'io/sentry/android/core/SentryAndroidOptions$BeforeCaptureCallback');
/// The type which includes information such as the signature of this class.
- static const jni$_.JType
- nullableType =
- $SentryAndroidOptions$BeforeCaptureCallback$NullableType$();
-
- /// The type which includes information such as the signature of this class.
- static const jni$_.JType type =
- $SentryAndroidOptions$BeforeCaptureCallback$Type$();
+ static const nullableType =
+ $SentryAndroidOptions$BeforeCaptureCallback$NullableType();
+ static const type = $SentryAndroidOptions$BeforeCaptureCallback$Type();
static final _id_execute = _class.instanceMethodId(
r'execute',
r'(Lio/sentry/SentryEvent;Lio/sentry/Hint;Z)Z',
@@ -361,10 +354,10 @@ class SentryAndroidOptions$BeforeCaptureCallback extends jni$_.JObject {
final $a = $i.args;
if ($d == r'execute(Lio/sentry/SentryEvent;Lio/sentry/Hint;Z)Z') {
final $r = _$impls[$p]!.execute(
- $a![0]!.as(const $SentryEvent$Type$(), releaseOriginal: true),
- $a![1]!.as(const $Hint$Type$(), releaseOriginal: true),
+ $a![0]!.as(const $SentryEvent$Type(), releaseOriginal: true),
+ $a![1]!.as(const $Hint$Type(), releaseOriginal: true),
$a![2]!
- .as(const jni$_.$JBoolean$Type$(), releaseOriginal: true)
+ .as(const jni$_.JBooleanType(), releaseOriginal: true)
.booleanValue(releaseOriginal: true),
);
return jni$_.JBoolean($r).reference.toPointer();
@@ -432,10 +425,10 @@ final class _$SentryAndroidOptions$BeforeCaptureCallback
}
}
-final class $SentryAndroidOptions$BeforeCaptureCallback$NullableType$
- extends jni$_.JType {
+final class $SentryAndroidOptions$BeforeCaptureCallback$NullableType
+ extends jni$_.JObjType {
@jni$_.internal
- const $SentryAndroidOptions$BeforeCaptureCallback$NullableType$();
+ const $SentryAndroidOptions$BeforeCaptureCallback$NullableType();
@jni$_.internal
@core$_.override
@@ -453,12 +446,12 @@ final class $SentryAndroidOptions$BeforeCaptureCallback$NullableType$
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$NullableType$();
+ jni$_.JObjType get superType => const jni$_.JObjectNullableType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType =>
- this;
+ jni$_.JObjType
+ get nullableType => this;
@jni$_.internal
@core$_.override
@@ -466,20 +459,20 @@ final class $SentryAndroidOptions$BeforeCaptureCallback$NullableType$
@core$_.override
int get hashCode =>
- ($SentryAndroidOptions$BeforeCaptureCallback$NullableType$).hashCode;
+ ($SentryAndroidOptions$BeforeCaptureCallback$NullableType).hashCode;
@core$_.override
bool operator ==(Object other) {
return other.runtimeType ==
- ($SentryAndroidOptions$BeforeCaptureCallback$NullableType$) &&
- other is $SentryAndroidOptions$BeforeCaptureCallback$NullableType$;
+ ($SentryAndroidOptions$BeforeCaptureCallback$NullableType) &&
+ other is $SentryAndroidOptions$BeforeCaptureCallback$NullableType;
}
}
-final class $SentryAndroidOptions$BeforeCaptureCallback$Type$
- extends jni$_.JType {
+final class $SentryAndroidOptions$BeforeCaptureCallback$Type
+ extends jni$_.JObjType {
@jni$_.internal
- const $SentryAndroidOptions$BeforeCaptureCallback$Type$();
+ const $SentryAndroidOptions$BeforeCaptureCallback$Type();
@jni$_.internal
@core$_.override
@@ -495,12 +488,13 @@ final class $SentryAndroidOptions$BeforeCaptureCallback$Type$
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$NullableType$();
+ jni$_.JObjType get superType => const jni$_.JObjectNullableType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType =>
- const $SentryAndroidOptions$BeforeCaptureCallback$NullableType$();
+ jni$_.JObjType
+ get nullableType =>
+ const $SentryAndroidOptions$BeforeCaptureCallback$NullableType();
@jni$_.internal
@core$_.override
@@ -508,13 +502,13 @@ final class $SentryAndroidOptions$BeforeCaptureCallback$Type$
@core$_.override
int get hashCode =>
- ($SentryAndroidOptions$BeforeCaptureCallback$Type$).hashCode;
+ ($SentryAndroidOptions$BeforeCaptureCallback$Type).hashCode;
@core$_.override
bool operator ==(Object other) {
return other.runtimeType ==
- ($SentryAndroidOptions$BeforeCaptureCallback$Type$) &&
- other is $SentryAndroidOptions$BeforeCaptureCallback$Type$;
+ ($SentryAndroidOptions$BeforeCaptureCallback$Type) &&
+ other is $SentryAndroidOptions$BeforeCaptureCallback$Type;
}
}
@@ -522,7 +516,7 @@ final class $SentryAndroidOptions$BeforeCaptureCallback$Type$
class SentryAndroidOptions extends SentryOptions {
@jni$_.internal
@core$_.override
- final jni$_.JType $type;
+ final jni$_.JObjType $type;
@jni$_.internal
SentryAndroidOptions.fromReference(
@@ -534,12 +528,8 @@ class SentryAndroidOptions extends SentryOptions {
jni$_.JClass.forName(r'io/sentry/android/core/SentryAndroidOptions');
/// The type which includes information such as the signature of this class.
- static const jni$_.JType nullableType =
- $SentryAndroidOptions$NullableType$();
-
- /// The type which includes information such as the signature of this class.
- static const jni$_.JType type =
- $SentryAndroidOptions$Type$();
+ static const nullableType = $SentryAndroidOptions$NullableType();
+ static const type = $SentryAndroidOptions$Type();
static final _id_new$ = _class.constructorId(
r'()V',
);
@@ -1060,7 +1050,7 @@ class SentryAndroidOptions extends SentryOptions {
jni$_.JObject getDebugImagesLoader() {
return _getDebugImagesLoader(
reference.pointer, _id_getDebugImagesLoader as jni$_.JMethodIDPtr)
- .object(const jni$_.$JObject$Type$());
+ .object(const jni$_.JObjectType());
}
static final _id_setDebugImagesLoader = _class.instanceMethodId(
@@ -1570,7 +1560,7 @@ class SentryAndroidOptions extends SentryOptions {
jni$_.JString? getNativeSdkName() {
return _getNativeSdkName(
reference.pointer, _id_getNativeSdkName as jni$_.JMethodIDPtr)
- .object(const jni$_.$JString$NullableType$());
+ .object(const jni$_.JStringNullableType());
}
static final _id_isEnableRootCheck = _class.instanceMethodId(
@@ -1646,7 +1636,7 @@ class SentryAndroidOptions extends SentryOptions {
return _getBeforeScreenshotCaptureCallback(reference.pointer,
_id_getBeforeScreenshotCaptureCallback as jni$_.JMethodIDPtr)
.object(
- const $SentryAndroidOptions$BeforeCaptureCallback$NullableType$());
+ const $SentryAndroidOptions$BeforeCaptureCallback$NullableType());
}
static final _id_setBeforeScreenshotCaptureCallback = _class.instanceMethodId(
@@ -1704,7 +1694,7 @@ class SentryAndroidOptions extends SentryOptions {
return _getBeforeViewHierarchyCaptureCallback(reference.pointer,
_id_getBeforeViewHierarchyCaptureCallback as jni$_.JMethodIDPtr)
.object(
- const $SentryAndroidOptions$BeforeCaptureCallback$NullableType$());
+ const $SentryAndroidOptions$BeforeCaptureCallback$NullableType());
}
static final _id_setBeforeViewHierarchyCaptureCallback =
@@ -2048,7 +2038,7 @@ class SentryAndroidOptions extends SentryOptions {
jni$_.JObject? getFrameMetricsCollector() {
return _getFrameMetricsCollector(reference.pointer,
_id_getFrameMetricsCollector as jni$_.JMethodIDPtr)
- .object(const jni$_.$JObject$NullableType$());
+ .object(const jni$_.JObjectNullableType());
}
static final _id_setFrameMetricsCollector = _class.instanceMethodId(
@@ -2183,10 +2173,10 @@ class SentryAndroidOptions extends SentryOptions {
}
}
-final class $SentryAndroidOptions$NullableType$
- extends jni$_.JType {
+final class $SentryAndroidOptions$NullableType
+ extends jni$_.JObjType {
@jni$_.internal
- const $SentryAndroidOptions$NullableType$();
+ const $SentryAndroidOptions$NullableType();
@jni$_.internal
@core$_.override
@@ -2202,30 +2192,30 @@ final class $SentryAndroidOptions$NullableType$
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const $SentryOptions$NullableType$();
+ jni$_.JObjType get superType => const $SentryOptions$NullableType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType => this;
+ jni$_.JObjType get nullableType => this;
@jni$_.internal
@core$_.override
final superCount = 2;
@core$_.override
- int get hashCode => ($SentryAndroidOptions$NullableType$).hashCode;
+ int get hashCode => ($SentryAndroidOptions$NullableType).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($SentryAndroidOptions$NullableType$) &&
- other is $SentryAndroidOptions$NullableType$;
+ return other.runtimeType == ($SentryAndroidOptions$NullableType) &&
+ other is $SentryAndroidOptions$NullableType;
}
}
-final class $SentryAndroidOptions$Type$
- extends jni$_.JType {
+final class $SentryAndroidOptions$Type
+ extends jni$_.JObjType {
@jni$_.internal
- const $SentryAndroidOptions$Type$();
+ const $SentryAndroidOptions$Type();
@jni$_.internal
@core$_.override
@@ -2239,24 +2229,24 @@ final class $SentryAndroidOptions$Type$
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const $SentryOptions$NullableType$();
+ jni$_.JObjType get superType => const $SentryOptions$NullableType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType =>
- const $SentryAndroidOptions$NullableType$();
+ jni$_.JObjType get nullableType =>
+ const $SentryAndroidOptions$NullableType();
@jni$_.internal
@core$_.override
final superCount = 2;
@core$_.override
- int get hashCode => ($SentryAndroidOptions$Type$).hashCode;
+ int get hashCode => ($SentryAndroidOptions$Type).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($SentryAndroidOptions$Type$) &&
- other is $SentryAndroidOptions$Type$;
+ return other.runtimeType == ($SentryAndroidOptions$Type) &&
+ other is $SentryAndroidOptions$Type;
}
}
@@ -2264,7 +2254,7 @@ final class $SentryAndroidOptions$Type$
class InternalSentrySdk extends jni$_.JObject {
@jni$_.internal
@core$_.override
- final jni$_.JType $type;
+ final jni$_.JObjType $type;
@jni$_.internal
InternalSentrySdk.fromReference(
@@ -2276,11 +2266,8 @@ class InternalSentrySdk extends jni$_.JObject {
jni$_.JClass.forName(r'io/sentry/android/core/InternalSentrySdk');
/// The type which includes information such as the signature of this class.
- static const jni$_.JType nullableType =
- $InternalSentrySdk$NullableType$();
-
- /// The type which includes information such as the signature of this class.
- static const jni$_.JType type = $InternalSentrySdk$Type$();
+ static const nullableType = $InternalSentrySdk$NullableType();
+ static const type = $InternalSentrySdk$Type();
static final _id_new$ = _class.constructorId(
r'()V',
);
@@ -2327,7 +2314,7 @@ class InternalSentrySdk extends jni$_.JObject {
static jni$_.JObject? getCurrentScope() {
return _getCurrentScope(
_class.reference.pointer, _id_getCurrentScope as jni$_.JMethodIDPtr)
- .object(const jni$_.$JObject$NullableType$());
+ .object(const jni$_.JObjectNullableType());
}
static final _id_serializeScope = _class.staticMethodId(
@@ -2371,9 +2358,8 @@ class InternalSentrySdk extends jni$_.JObject {
_$sentryAndroidOptions.pointer,
_$iScope.pointer)
.object>(
- const jni$_.$JMap$Type$(
- jni$_.$JString$NullableType$(),
- jni$_.$JObject$NullableType$()));
+ const jni$_.JMapType(
+ jni$_.JStringNullableType(), jni$_.JObjectNullableType()));
}
static final _id_captureEnvelope = _class.staticMethodId(
@@ -2402,7 +2388,7 @@ class InternalSentrySdk extends jni$_.JObject {
final _$bs = bs.reference;
return _captureEnvelope(_class.reference.pointer,
_id_captureEnvelope as jni$_.JMethodIDPtr, _$bs.pointer, z ? 1 : 0)
- .object(const $SentryId$NullableType$());
+ .object(const $SentryId$NullableType());
}
static final _id_getAppStartMeasurement = _class.staticMethodId(
@@ -2428,9 +2414,8 @@ class InternalSentrySdk extends jni$_.JObject {
return _getAppStartMeasurement(_class.reference.pointer,
_id_getAppStartMeasurement as jni$_.JMethodIDPtr)
.object?>(
- const jni$_.$JMap$NullableType$(
- jni$_.$JString$NullableType$(),
- jni$_.$JObject$NullableType$()));
+ const jni$_.JMapNullableType(
+ jni$_.JStringNullableType(), jni$_.JObjectNullableType()));
}
static final _id_setTrace = _class.staticMethodId(
@@ -2481,10 +2466,10 @@ class InternalSentrySdk extends jni$_.JObject {
}
}
-final class $InternalSentrySdk$NullableType$
- extends jni$_.JType {
+final class $InternalSentrySdk$NullableType
+ extends jni$_.JObjType {
@jni$_.internal
- const $InternalSentrySdk$NullableType$();
+ const $InternalSentrySdk$NullableType();
@jni$_.internal
@core$_.override
@@ -2500,29 +2485,29 @@ final class $InternalSentrySdk$NullableType$
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$NullableType$();
+ jni$_.JObjType get superType => const jni$_.JObjectNullableType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType => this;
+ jni$_.JObjType get nullableType => this;
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => ($InternalSentrySdk$NullableType$).hashCode;
+ int get hashCode => ($InternalSentrySdk$NullableType).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($InternalSentrySdk$NullableType$) &&
- other is $InternalSentrySdk$NullableType$;
+ return other.runtimeType == ($InternalSentrySdk$NullableType) &&
+ other is $InternalSentrySdk$NullableType;
}
}
-final class $InternalSentrySdk$Type$ extends jni$_.JType {
+final class $InternalSentrySdk$Type extends jni$_.JObjType {
@jni$_.internal
- const $InternalSentrySdk$Type$();
+ const $InternalSentrySdk$Type();
@jni$_.internal
@core$_.override
@@ -2536,24 +2521,24 @@ final class $InternalSentrySdk$Type$ extends jni$_.JType {
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$NullableType$();
+ jni$_.JObjType get superType => const jni$_.JObjectNullableType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType =>
- const $InternalSentrySdk$NullableType$();
+ jni$_.JObjType get nullableType =>
+ const $InternalSentrySdk$NullableType();
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => ($InternalSentrySdk$Type$).hashCode;
+ int get hashCode => ($InternalSentrySdk$Type).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($InternalSentrySdk$Type$) &&
- other is $InternalSentrySdk$Type$;
+ return other.runtimeType == ($InternalSentrySdk$Type) &&
+ other is $InternalSentrySdk$Type;
}
}
@@ -2561,7 +2546,7 @@ final class $InternalSentrySdk$Type$ extends jni$_.JType {
class BuildConfig extends jni$_.JObject {
@jni$_.internal
@core$_.override
- final jni$_.JType $type;
+ final jni$_.JObjType $type;
@jni$_.internal
BuildConfig.fromReference(
@@ -2573,11 +2558,8 @@ class BuildConfig extends jni$_.JObject {
jni$_.JClass.forName(r'io/sentry/android/core/BuildConfig');
/// The type which includes information such as the signature of this class.
- static const jni$_.JType nullableType =
- $BuildConfig$NullableType$();
-
- /// The type which includes information such as the signature of this class.
- static const jni$_.JType type = $BuildConfig$Type$();
+ static const nullableType = $BuildConfig$NullableType();
+ static const type = $BuildConfig$Type();
/// from: `static public final boolean DEBUG`
static const DEBUG = 0;
@@ -2588,8 +2570,8 @@ class BuildConfig extends jni$_.JObject {
/// from: `static public final java.lang.String LIBRARY_PACKAGE_NAME`
/// The returned object must be released after use, by calling the [release] method.
- static jni$_.JString? get LIBRARY_PACKAGE_NAME => _id_LIBRARY_PACKAGE_NAME
- .get(_class, const jni$_.$JString$NullableType$());
+ static jni$_.JString? get LIBRARY_PACKAGE_NAME =>
+ _id_LIBRARY_PACKAGE_NAME.get(_class, const jni$_.JStringNullableType());
static final _id_BUILD_TYPE = _class.staticFieldId(
r'BUILD_TYPE',
@@ -2599,7 +2581,7 @@ class BuildConfig extends jni$_.JObject {
/// from: `static public final java.lang.String BUILD_TYPE`
/// The returned object must be released after use, by calling the [release] method.
static jni$_.JString? get BUILD_TYPE =>
- _id_BUILD_TYPE.get(_class, const jni$_.$JString$NullableType$());
+ _id_BUILD_TYPE.get(_class, const jni$_.JStringNullableType());
static final _id_SENTRY_ANDROID_SDK_NAME = _class.staticFieldId(
r'SENTRY_ANDROID_SDK_NAME',
@@ -2610,7 +2592,7 @@ class BuildConfig extends jni$_.JObject {
/// The returned object must be released after use, by calling the [release] method.
static jni$_.JString? get SENTRY_ANDROID_SDK_NAME =>
_id_SENTRY_ANDROID_SDK_NAME.get(
- _class, const jni$_.$JString$NullableType$());
+ _class, const jni$_.JStringNullableType());
static final _id_VERSION_NAME = _class.staticFieldId(
r'VERSION_NAME',
@@ -2620,7 +2602,7 @@ class BuildConfig extends jni$_.JObject {
/// from: `static public final java.lang.String VERSION_NAME`
/// The returned object must be released after use, by calling the [release] method.
static jni$_.JString? get VERSION_NAME =>
- _id_VERSION_NAME.get(_class, const jni$_.$JString$NullableType$());
+ _id_VERSION_NAME.get(_class, const jni$_.JStringNullableType());
static final _id_new$ = _class.constructorId(
r'()V',
@@ -2647,9 +2629,9 @@ class BuildConfig extends jni$_.JObject {
}
}
-final class $BuildConfig$NullableType$ extends jni$_.JType {
+final class $BuildConfig$NullableType extends jni$_.JObjType {
@jni$_.internal
- const $BuildConfig$NullableType$();
+ const $BuildConfig$NullableType();
@jni$_.internal
@core$_.override
@@ -2664,29 +2646,29 @@ final class $BuildConfig$NullableType$ extends jni$_.JType {
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$NullableType$();
+ jni$_.JObjType get superType => const jni$_.JObjectNullableType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType => this;
+ jni$_.JObjType get nullableType => this;
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => ($BuildConfig$NullableType$).hashCode;
+ int get hashCode => ($BuildConfig$NullableType).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($BuildConfig$NullableType$) &&
- other is $BuildConfig$NullableType$;
+ return other.runtimeType == ($BuildConfig$NullableType) &&
+ other is $BuildConfig$NullableType;
}
}
-final class $BuildConfig$Type$ extends jni$_.JType {
+final class $BuildConfig$Type extends jni$_.JObjType {
@jni$_.internal
- const $BuildConfig$Type$();
+ const $BuildConfig$Type();
@jni$_.internal
@core$_.override
@@ -2700,24 +2682,24 @@ final class $BuildConfig$Type$ extends jni$_.JType {
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$NullableType$();
+ jni$_.JObjType get superType => const jni$_.JObjectNullableType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType =>
- const $BuildConfig$NullableType$();
+ jni$_.JObjType get nullableType =>
+ const $BuildConfig$NullableType();
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => ($BuildConfig$Type$).hashCode;
+ int get hashCode => ($BuildConfig$Type).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($BuildConfig$Type$) &&
- other is $BuildConfig$Type$;
+ return other.runtimeType == ($BuildConfig$Type) &&
+ other is $BuildConfig$Type;
}
}
@@ -2725,7 +2707,7 @@ final class $BuildConfig$Type$ extends jni$_.JType {
class ReplayIntegration extends jni$_.JObject {
@jni$_.internal
@core$_.override
- final jni$_.JType $type;
+ final jni$_.JObjType $type;
@jni$_.internal
ReplayIntegration.fromReference(
@@ -2737,11 +2719,8 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JClass.forName(r'io/sentry/android/replay/ReplayIntegration');
/// The type which includes information such as the signature of this class.
- static const jni$_.JType nullableType =
- $ReplayIntegration$NullableType$();
-
- /// The type which includes information such as the signature of this class.
- static const jni$_.JType type = $ReplayIntegration$Type$();
+ static const nullableType = $ReplayIntegration$NullableType();
+ static const type = $ReplayIntegration$Type();
static final _id_new$ = _class.constructorId(
r'(Landroid/content/Context;Lio/sentry/transport/ICurrentDateProvider;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function1;)V',
);
@@ -3043,7 +3022,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JObject? getReplayCacheDir() {
return _getReplayCacheDir(
reference.pointer, _id_getReplayCacheDir as jni$_.JMethodIDPtr)
- .object(const jni$_.$JObject$NullableType$());
+ .object(const jni$_.JObjectNullableType());
}
static final _id_register = _class.instanceMethodId(
@@ -3068,7 +3047,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.Pointer,
jni$_.Pointer)>();
- /// from: `public fun register(scopes: io.sentry.IScopes, options: io.sentry.SentryOptions): kotlin.Unit`
+ /// from: `public void register(io.sentry.IScopes iScopes, io.sentry.SentryOptions sentryOptions)`
void register(
jni$_.JObject iScopes,
SentryOptions sentryOptions,
@@ -3097,7 +3076,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun isRecording(): kotlin.Boolean`
+ /// from: `public boolean isRecording()`
bool isRecording() {
return _isRecording(
reference.pointer, _id_isRecording as jni$_.JMethodIDPtr)
@@ -3121,7 +3100,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun start(): kotlin.Unit`
+ /// from: `public void start()`
void start() {
_start(reference.pointer, _id_start as jni$_.JMethodIDPtr).check();
}
@@ -3143,7 +3122,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun resume(): kotlin.Unit`
+ /// from: `public void resume()`
void resume() {
_resume(reference.pointer, _id_resume as jni$_.JMethodIDPtr).check();
}
@@ -3164,7 +3143,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JThrowablePtr Function(jni$_.Pointer,
jni$_.JMethodIDPtr, jni$_.Pointer)>();
- /// from: `public fun captureReplay(isTerminating: kotlin.Boolean?): kotlin.Unit`
+ /// from: `public void captureReplay(java.lang.Boolean boolean)`
void captureReplay(
jni$_.JBoolean? boolean,
) {
@@ -3191,12 +3170,12 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun getReplayId(): io.sentry.protocol.SentryId`
+ /// from: `public io.sentry.protocol.SentryId getReplayId()`
/// The returned object must be released after use, by calling the [release] method.
SentryId getReplayId() {
return _getReplayId(
reference.pointer, _id_getReplayId as jni$_.JMethodIDPtr)
- .object(const $SentryId$Type$());
+ .object(const $SentryId$Type());
}
static final _id_setBreadcrumbConverter = _class.instanceMethodId(
@@ -3215,7 +3194,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JThrowablePtr Function(jni$_.Pointer,
jni$_.JMethodIDPtr, jni$_.Pointer)>();
- /// from: `public fun setBreadcrumbConverter(converter: io.sentry.ReplayBreadcrumbConverter): kotlin.Unit`
+ /// from: `public void setBreadcrumbConverter(io.sentry.ReplayBreadcrumbConverter replayBreadcrumbConverter)`
void setBreadcrumbConverter(
jni$_.JObject replayBreadcrumbConverter,
) {
@@ -3244,12 +3223,12 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun getBreadcrumbConverter(): io.sentry.ReplayBreadcrumbConverter`
+ /// from: `public io.sentry.ReplayBreadcrumbConverter getBreadcrumbConverter()`
/// The returned object must be released after use, by calling the [release] method.
jni$_.JObject getBreadcrumbConverter() {
return _getBreadcrumbConverter(
reference.pointer, _id_getBreadcrumbConverter as jni$_.JMethodIDPtr)
- .object(const jni$_.$JObject$Type$());
+ .object(const jni$_.JObjectType());
}
static final _id_pause = _class.instanceMethodId(
@@ -3269,7 +3248,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun pause(): kotlin.Unit`
+ /// from: `public void pause()`
void pause() {
_pause(reference.pointer, _id_pause as jni$_.JMethodIDPtr).check();
}
@@ -3291,7 +3270,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun enableDebugMaskingOverlay(): kotlin.Unit`
+ /// from: `public void enableDebugMaskingOverlay()`
void enableDebugMaskingOverlay() {
_enableDebugMaskingOverlay(reference.pointer,
_id_enableDebugMaskingOverlay as jni$_.JMethodIDPtr)
@@ -3316,7 +3295,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun disableDebugMaskingOverlay(): kotlin.Unit`
+ /// from: `public void disableDebugMaskingOverlay()`
void disableDebugMaskingOverlay() {
_disableDebugMaskingOverlay(reference.pointer,
_id_disableDebugMaskingOverlay as jni$_.JMethodIDPtr)
@@ -3341,7 +3320,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun isDebugMaskingOverlayEnabled(): kotlin.Boolean`
+ /// from: `public boolean isDebugMaskingOverlayEnabled()`
bool isDebugMaskingOverlayEnabled() {
return _isDebugMaskingOverlayEnabled(reference.pointer,
_id_isDebugMaskingOverlayEnabled as jni$_.JMethodIDPtr)
@@ -3365,7 +3344,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun stop(): kotlin.Unit`
+ /// from: `public void stop()`
void stop() {
_stop(reference.pointer, _id_stop as jni$_.JMethodIDPtr).check();
}
@@ -3386,7 +3365,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JThrowablePtr Function(jni$_.Pointer,
jni$_.JMethodIDPtr, jni$_.Pointer)>();
- /// from: `public fun onScreenshotRecorded(bitmap: android.graphics.Bitmap): kotlin.Unit`
+ /// from: `public void onScreenshotRecorded(android.graphics.Bitmap bitmap)`
void onScreenshotRecorded(
Bitmap bitmap,
) {
@@ -3413,7 +3392,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JThrowablePtr Function(jni$_.Pointer,
jni$_.JMethodIDPtr, jni$_.Pointer, int)>();
- /// from: `public fun onScreenshotRecorded(screenshot: java.io.File, frameTimestamp: kotlin.Long): kotlin.Unit`
+ /// from: `public void onScreenshotRecorded(java.io.File file, long j)`
void onScreenshotRecorded$1(
jni$_.JObject file,
int j,
@@ -3441,7 +3420,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun close(): kotlin.Unit`
+ /// from: `public void close()`
void close() {
_close(reference.pointer, _id_close as jni$_.JMethodIDPtr).check();
}
@@ -3462,7 +3441,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JThrowablePtr Function(jni$_.Pointer,
jni$_.JMethodIDPtr, jni$_.Pointer)>();
- /// from: `public fun onConnectionStatusChanged(status: io.sentry.IConnectionStatusProvider.ConnectionStatus): kotlin.Unit`
+ /// from: `public void onConnectionStatusChanged(io.sentry.IConnectionStatusProvider$ConnectionStatus connectionStatus)`
void onConnectionStatusChanged(
jni$_.JObject connectionStatus,
) {
@@ -3490,7 +3469,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JThrowablePtr Function(jni$_.Pointer,
jni$_.JMethodIDPtr, jni$_.Pointer)>();
- /// from: `public fun onRateLimitChanged(rateLimiter: io.sentry.transport.RateLimiter): kotlin.Unit`
+ /// from: `public void onRateLimitChanged(io.sentry.transport.RateLimiter rateLimiter)`
void onRateLimitChanged(
jni$_.JObject rateLimiter,
) {
@@ -3516,7 +3495,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JThrowablePtr Function(jni$_.Pointer,
jni$_.JMethodIDPtr, jni$_.Pointer)>();
- /// from: `public fun onTouchEvent(event: android.view.MotionEvent): kotlin.Unit`
+ /// from: `public void onTouchEvent(android.view.MotionEvent motionEvent)`
void onTouchEvent(
jni$_.JObject motionEvent,
) {
@@ -3542,7 +3521,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JThrowablePtr Function(
jni$_.Pointer, jni$_.JMethodIDPtr, int, int)>();
- /// from: `public fun onWindowSizeChanged(width: kotlin.Int, height: kotlin.Int): kotlin.Unit`
+ /// from: `public void onWindowSizeChanged(int i, int i1)`
void onWindowSizeChanged(
int i,
int i1,
@@ -3568,7 +3547,7 @@ class ReplayIntegration extends jni$_.JObject {
jni$_.JThrowablePtr Function(jni$_.Pointer,
jni$_.JMethodIDPtr, jni$_.Pointer)>();
- /// from: `public fun onConfigurationChanged(config: io.sentry.android.replay.ScreenshotRecorderConfig): kotlin.Unit`
+ /// from: `public final void onConfigurationChanged(io.sentry.android.replay.ScreenshotRecorderConfig screenshotRecorderConfig)`
void onConfigurationChanged(
ScreenshotRecorderConfig screenshotRecorderConfig,
) {
@@ -3581,10 +3560,10 @@ class ReplayIntegration extends jni$_.JObject {
}
}
-final class $ReplayIntegration$NullableType$
- extends jni$_.JType {
+final class $ReplayIntegration$NullableType
+ extends jni$_.JObjType {
@jni$_.internal
- const $ReplayIntegration$NullableType$();
+ const $ReplayIntegration$NullableType();
@jni$_.internal
@core$_.override
@@ -3600,29 +3579,29 @@ final class $ReplayIntegration$NullableType$
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$NullableType$();
+ jni$_.JObjType get superType => const jni$_.JObjectNullableType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType => this;
+ jni$_.JObjType get nullableType => this;
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => ($ReplayIntegration$NullableType$).hashCode;
+ int get hashCode => ($ReplayIntegration$NullableType).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($ReplayIntegration$NullableType$) &&
- other is $ReplayIntegration$NullableType$;
+ return other.runtimeType == ($ReplayIntegration$NullableType) &&
+ other is $ReplayIntegration$NullableType;
}
}
-final class $ReplayIntegration$Type$ extends jni$_.JType {
+final class $ReplayIntegration$Type extends jni$_.JObjType {
@jni$_.internal
- const $ReplayIntegration$Type$();
+ const $ReplayIntegration$Type();
@jni$_.internal
@core$_.override
@@ -3636,24 +3615,24 @@ final class $ReplayIntegration$Type$ extends jni$_.JType {
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$NullableType$();
+ jni$_.JObjType get superType => const jni$_.JObjectNullableType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType =>
- const $ReplayIntegration$NullableType$();
+ jni$_.JObjType get nullableType =>
+ const $ReplayIntegration$NullableType();
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => ($ReplayIntegration$Type$).hashCode;
+ int get hashCode => ($ReplayIntegration$Type).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($ReplayIntegration$Type$) &&
- other is $ReplayIntegration$Type$;
+ return other.runtimeType == ($ReplayIntegration$Type) &&
+ other is $ReplayIntegration$Type;
}
}
@@ -3661,7 +3640,7 @@ final class $ReplayIntegration$Type$ extends jni$_.JType {
class ScreenshotRecorderConfig$Companion extends jni$_.JObject {
@jni$_.internal
@core$_.override
- final jni$_.JType $type;
+ final jni$_.JObjType $type;
@jni$_.internal
ScreenshotRecorderConfig$Companion.fromReference(
@@ -3673,12 +3652,9 @@ class ScreenshotRecorderConfig$Companion extends jni$_.JObject {
r'io/sentry/android/replay/ScreenshotRecorderConfig$Companion');
/// The type which includes information such as the signature of this class.
- static const jni$_.JType nullableType =
- $ScreenshotRecorderConfig$Companion$NullableType$();
-
- /// The type which includes information such as the signature of this class.
- static const jni$_.JType type =
- $ScreenshotRecorderConfig$Companion$Type$();
+ static const nullableType =
+ $ScreenshotRecorderConfig$Companion$NullableType();
+ static const type = $ScreenshotRecorderConfig$Companion$Type();
static final _id_fromSize = _class.instanceMethodId(
r'fromSize',
r'(Landroid/content/Context;Lio/sentry/SentryReplayOptions;II)Lio/sentry/android/replay/ScreenshotRecorderConfig;',
@@ -3705,7 +3681,7 @@ class ScreenshotRecorderConfig$Companion extends jni$_.JObject {
int,
int)>();
- /// from: `public fun fromSize(context: android.content.Context, sessionReplay: io.sentry.SentryReplayOptions, windowWidth: kotlin.Int, windowHeight: kotlin.Int): io.sentry.android.replay.ScreenshotRecorderConfig`
+ /// from: `public final io.sentry.android.replay.ScreenshotRecorderConfig fromSize(android.content.Context context, io.sentry.SentryReplayOptions sentryReplayOptions, int i, int i1)`
/// The returned object must be released after use, by calling the [release] method.
ScreenshotRecorderConfig fromSize(
Context context,
@@ -3718,7 +3694,7 @@ class ScreenshotRecorderConfig$Companion extends jni$_.JObject {
return _fromSize(reference.pointer, _id_fromSize as jni$_.JMethodIDPtr,
_$context.pointer, _$sentryReplayOptions.pointer, i, i1)
.object(
- const $ScreenshotRecorderConfig$Type$());
+ const $ScreenshotRecorderConfig$Type());
}
static final _id_new$ = _class.constructorId(
@@ -3751,10 +3727,10 @@ class ScreenshotRecorderConfig$Companion extends jni$_.JObject {
}
}
-final class $ScreenshotRecorderConfig$Companion$NullableType$
- extends jni$_.JType {
+final class $ScreenshotRecorderConfig$Companion$NullableType
+ extends jni$_.JObjType {
@jni$_.internal
- const $ScreenshotRecorderConfig$Companion$NullableType$();
+ const $ScreenshotRecorderConfig$Companion$NullableType();
@jni$_.internal
@core$_.override
@@ -3772,11 +3748,11 @@ final class $ScreenshotRecorderConfig$Companion$NullableType$
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$Type$();
+ jni$_.JObjType get superType => const jni$_.JObjectType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType => this;
+ jni$_.JObjType get nullableType => this;
@jni$_.internal
@core$_.override
@@ -3784,20 +3760,20 @@ final class $ScreenshotRecorderConfig$Companion$NullableType$
@core$_.override
int get hashCode =>
- ($ScreenshotRecorderConfig$Companion$NullableType$).hashCode;
+ ($ScreenshotRecorderConfig$Companion$NullableType).hashCode;
@core$_.override
bool operator ==(Object other) {
return other.runtimeType ==
- ($ScreenshotRecorderConfig$Companion$NullableType$) &&
- other is $ScreenshotRecorderConfig$Companion$NullableType$;
+ ($ScreenshotRecorderConfig$Companion$NullableType) &&
+ other is $ScreenshotRecorderConfig$Companion$NullableType;
}
}
-final class $ScreenshotRecorderConfig$Companion$Type$
- extends jni$_.JType {
+final class $ScreenshotRecorderConfig$Companion$Type
+ extends jni$_.JObjType {
@jni$_.internal
- const $ScreenshotRecorderConfig$Companion$Type$();
+ const $ScreenshotRecorderConfig$Companion$Type();
@jni$_.internal
@core$_.override
@@ -3813,24 +3789,24 @@ final class $ScreenshotRecorderConfig$Companion$Type$
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$Type$();
+ jni$_.JObjType get superType => const jni$_.JObjectType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType =>
- const $ScreenshotRecorderConfig$Companion$NullableType$();
+ jni$_.JObjType get nullableType =>
+ const $ScreenshotRecorderConfig$Companion$NullableType();
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => ($ScreenshotRecorderConfig$Companion$Type$).hashCode;
+ int get hashCode => ($ScreenshotRecorderConfig$Companion$Type).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($ScreenshotRecorderConfig$Companion$Type$) &&
- other is $ScreenshotRecorderConfig$Companion$Type$;
+ return other.runtimeType == ($ScreenshotRecorderConfig$Companion$Type) &&
+ other is $ScreenshotRecorderConfig$Companion$Type;
}
}
@@ -3838,7 +3814,7 @@ final class $ScreenshotRecorderConfig$Companion$Type$
class ScreenshotRecorderConfig extends jni$_.JObject {
@jni$_.internal
@core$_.override
- final jni$_.JType $type;
+ final jni$_.JObjType $type;
@jni$_.internal
ScreenshotRecorderConfig.fromReference(
@@ -3850,12 +3826,8 @@ class ScreenshotRecorderConfig extends jni$_.JObject {
r'io/sentry/android/replay/ScreenshotRecorderConfig');
/// The type which includes information such as the signature of this class.
- static const jni$_.JType nullableType =
- $ScreenshotRecorderConfig$NullableType$();
-
- /// The type which includes information such as the signature of this class.
- static const jni$_.JType type =
- $ScreenshotRecorderConfig$Type$();
+ static const nullableType = $ScreenshotRecorderConfig$NullableType();
+ static const type = $ScreenshotRecorderConfig$Type();
static final _id_Companion = _class.staticFieldId(
r'Companion',
r'Lio/sentry/android/replay/ScreenshotRecorderConfig$Companion;',
@@ -3864,7 +3836,7 @@ class ScreenshotRecorderConfig extends jni$_.JObject {
/// from: `static public final io.sentry.android.replay.ScreenshotRecorderConfig$Companion Companion`
/// The returned object must be released after use, by calling the [release] method.
static ScreenshotRecorderConfig$Companion get Companion => _id_Companion.get(
- _class, const $ScreenshotRecorderConfig$Companion$Type$());
+ _class, const $ScreenshotRecorderConfig$Companion$Type());
static final _id_new$ = _class.constructorId(
r'(IIFFII)V',
@@ -4096,7 +4068,7 @@ class ScreenshotRecorderConfig extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public operator fun component1(): kotlin.Int`
+ /// from: `public final int component1()`
int component1() {
return _component1(reference.pointer, _id_component1 as jni$_.JMethodIDPtr)
.integer;
@@ -4119,7 +4091,7 @@ class ScreenshotRecorderConfig extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public operator fun component2(): kotlin.Int`
+ /// from: `public final int component2()`
int component2() {
return _component2(reference.pointer, _id_component2 as jni$_.JMethodIDPtr)
.integer;
@@ -4142,7 +4114,7 @@ class ScreenshotRecorderConfig extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public operator fun component3(): kotlin.Float`
+ /// from: `public final float component3()`
double component3() {
return _component3(reference.pointer, _id_component3 as jni$_.JMethodIDPtr)
.float;
@@ -4165,7 +4137,7 @@ class ScreenshotRecorderConfig extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public operator fun component4(): kotlin.Float`
+ /// from: `public final float component4()`
double component4() {
return _component4(reference.pointer, _id_component4 as jni$_.JMethodIDPtr)
.float;
@@ -4188,7 +4160,7 @@ class ScreenshotRecorderConfig extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public operator fun component5(): kotlin.Int`
+ /// from: `public final int component5()`
int component5() {
return _component5(reference.pointer, _id_component5 as jni$_.JMethodIDPtr)
.integer;
@@ -4211,7 +4183,7 @@ class ScreenshotRecorderConfig extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public operator fun component6(): kotlin.Int`
+ /// from: `public final int component6()`
int component6() {
return _component6(reference.pointer, _id_component6 as jni$_.JMethodIDPtr)
.integer;
@@ -4240,7 +4212,7 @@ class ScreenshotRecorderConfig extends jni$_.JObject {
jni$_.JniResult Function(jni$_.Pointer,
jni$_.JMethodIDPtr, int, int, double, double, int, int)>();
- /// from: `public fun copy(recordingWidth: kotlin.Int, recordingHeight: kotlin.Int, scaleFactorX: kotlin.Float, scaleFactorY: kotlin.Float, frameRate: kotlin.Int, bitRate: kotlin.Int): io.sentry.android.replay.ScreenshotRecorderConfig`
+ /// from: `public final io.sentry.android.replay.ScreenshotRecorderConfig copy(int i, int i1, float f, float f1, int i2, int i3)`
/// The returned object must be released after use, by calling the [release] method.
ScreenshotRecorderConfig copy(
int i,
@@ -4253,7 +4225,7 @@ class ScreenshotRecorderConfig extends jni$_.JObject {
return _copy(reference.pointer, _id_copy as jni$_.JMethodIDPtr, i, i1, f,
f1, i2, i3)
.object(
- const $ScreenshotRecorderConfig$Type$());
+ const $ScreenshotRecorderConfig$Type());
}
static final _id_toString$1 = _class.instanceMethodId(
@@ -4273,11 +4245,11 @@ class ScreenshotRecorderConfig extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun toString(): kotlin.String`
+ /// from: `public java.lang.String toString()`
/// The returned object must be released after use, by calling the [release] method.
jni$_.JString toString$1() {
return _toString$1(reference.pointer, _id_toString$1 as jni$_.JMethodIDPtr)
- .object(const jni$_.$JString$Type$());
+ .object(const jni$_.JStringType());
}
static final _id_hashCode$1 = _class.instanceMethodId(
@@ -4297,7 +4269,7 @@ class ScreenshotRecorderConfig extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun hashCode(): kotlin.Int`
+ /// from: `public int hashCode()`
int hashCode$1() {
return _hashCode$1(reference.pointer, _id_hashCode$1 as jni$_.JMethodIDPtr)
.integer;
@@ -4319,7 +4291,7 @@ class ScreenshotRecorderConfig extends jni$_.JObject {
jni$_.JniResult Function(jni$_.Pointer,
jni$_.JMethodIDPtr, jni$_.Pointer)>();
- /// from: `public operator fun equals(other: kotlin.Any?): kotlin.Boolean`
+ /// from: `public boolean equals(java.lang.Object object)`
bool equals(
jni$_.JObject? object,
) {
@@ -4330,10 +4302,10 @@ class ScreenshotRecorderConfig extends jni$_.JObject {
}
}
-final class $ScreenshotRecorderConfig$NullableType$
- extends jni$_.JType {
+final class $ScreenshotRecorderConfig$NullableType
+ extends jni$_.JObjType {
@jni$_.internal
- const $ScreenshotRecorderConfig$NullableType$();
+ const $ScreenshotRecorderConfig$NullableType();
@jni$_.internal
@core$_.override
@@ -4350,30 +4322,30 @@ final class $ScreenshotRecorderConfig$NullableType$
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$Type$();
+ jni$_.JObjType get superType => const jni$_.JObjectType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType => this;
+ jni$_.JObjType get nullableType => this;
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => ($ScreenshotRecorderConfig$NullableType$).hashCode;
+ int get hashCode => ($ScreenshotRecorderConfig$NullableType).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($ScreenshotRecorderConfig$NullableType$) &&
- other is $ScreenshotRecorderConfig$NullableType$;
+ return other.runtimeType == ($ScreenshotRecorderConfig$NullableType) &&
+ other is $ScreenshotRecorderConfig$NullableType;
}
}
-final class $ScreenshotRecorderConfig$Type$
- extends jni$_.JType {
+final class $ScreenshotRecorderConfig$Type
+ extends jni$_.JObjType {
@jni$_.internal
- const $ScreenshotRecorderConfig$Type$();
+ const $ScreenshotRecorderConfig$Type();
@jni$_.internal
@core$_.override
@@ -4388,24 +4360,24 @@ final class $ScreenshotRecorderConfig$Type$
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$Type$();
+ jni$_.JObjType get superType => const jni$_.JObjectType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType =>
- const $ScreenshotRecorderConfig$NullableType$();
+ jni$_.JObjType get nullableType =>
+ const $ScreenshotRecorderConfig$NullableType();
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => ($ScreenshotRecorderConfig$Type$).hashCode;
+ int get hashCode => ($ScreenshotRecorderConfig$Type).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($ScreenshotRecorderConfig$Type$) &&
- other is $ScreenshotRecorderConfig$Type$;
+ return other.runtimeType == ($ScreenshotRecorderConfig$Type) &&
+ other is $ScreenshotRecorderConfig$Type;
}
}
@@ -4413,7 +4385,7 @@ final class $ScreenshotRecorderConfig$Type$
class SentryFlutterPlugin$Companion extends jni$_.JObject {
@jni$_.internal
@core$_.override
- final jni$_.JType $type;
+ final jni$_.JObjType $type;
@jni$_.internal
SentryFlutterPlugin$Companion.fromReference(
@@ -4425,12 +4397,8 @@ class SentryFlutterPlugin$Companion extends jni$_.JObject {
jni$_.JClass.forName(r'io/sentry/flutter/SentryFlutterPlugin$Companion');
/// The type which includes information such as the signature of this class.
- static const jni$_.JType nullableType =
- $SentryFlutterPlugin$Companion$NullableType$();
-
- /// The type which includes information such as the signature of this class.
- static const jni$_.JType type =
- $SentryFlutterPlugin$Companion$Type$();
+ static const nullableType = $SentryFlutterPlugin$Companion$NullableType();
+ static const type = $SentryFlutterPlugin$Companion$Type();
static final _id_tearDownReplayIntegration = _class.instanceMethodId(
r'tearDownReplayIntegration',
r'()V',
@@ -4448,7 +4416,7 @@ class SentryFlutterPlugin$Companion extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun tearDownReplayIntegration(): kotlin.Unit`
+ /// from: `public final void tearDownReplayIntegration()`
void tearDownReplayIntegration() {
_tearDownReplayIntegration(reference.pointer,
_id_tearDownReplayIntegration as jni$_.JMethodIDPtr)
@@ -4473,12 +4441,12 @@ class SentryFlutterPlugin$Companion extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun privateSentryGetReplayIntegration(): io.sentry.android.replay.ReplayIntegration?`
+ /// from: `public final io.sentry.android.replay.ReplayIntegration privateSentryGetReplayIntegration()`
/// The returned object must be released after use, by calling the [release] method.
ReplayIntegration? privateSentryGetReplayIntegration() {
return _privateSentryGetReplayIntegration(reference.pointer,
_id_privateSentryGetReplayIntegration as jni$_.JMethodIDPtr)
- .object(const $ReplayIntegration$NullableType$());
+ .object(const $ReplayIntegration$NullableType());
}
static final _id_setupReplay = _class.instanceMethodId(
@@ -4503,7 +4471,7 @@ class SentryFlutterPlugin$Companion extends jni$_.JObject {
jni$_.Pointer,
jni$_.Pointer)>();
- /// from: `public fun setupReplay(options: io.sentry.android.core.SentryAndroidOptions, replayCallbacks: io.sentry.flutter.ReplayRecorderCallbacks?): kotlin.Unit`
+ /// from: `public final void setupReplay(io.sentry.android.core.SentryAndroidOptions sentryAndroidOptions, io.sentry.flutter.ReplayRecorderCallbacks replayRecorderCallbacks)`
void setupReplay(
SentryAndroidOptions sentryAndroidOptions,
ReplayRecorderCallbacks? replayRecorderCallbacks,
@@ -4533,7 +4501,7 @@ class SentryFlutterPlugin$Companion extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun crash(): kotlin.Unit`
+ /// from: `public final void crash()`
void crash() {
_crash(reference.pointer, _id_crash as jni$_.JMethodIDPtr).check();
}
@@ -4555,12 +4523,12 @@ class SentryFlutterPlugin$Companion extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun getDisplayRefreshRate(): kotlin.Int?`
+ /// from: `public final java.lang.Integer getDisplayRefreshRate()`
/// The returned object must be released after use, by calling the [release] method.
jni$_.JInteger? getDisplayRefreshRate() {
return _getDisplayRefreshRate(
reference.pointer, _id_getDisplayRefreshRate as jni$_.JMethodIDPtr)
- .object(const jni$_.$JInteger$NullableType$());
+ .object(const jni$_.JIntegerNullableType());
}
static final _id_fetchNativeAppStartAsBytes = _class.instanceMethodId(
@@ -4581,12 +4549,12 @@ class SentryFlutterPlugin$Companion extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun fetchNativeAppStartAsBytes(): kotlin.ByteArray?`
+ /// from: `public final byte[] fetchNativeAppStartAsBytes()`
/// The returned object must be released after use, by calling the [release] method.
jni$_.JByteArray? fetchNativeAppStartAsBytes() {
return _fetchNativeAppStartAsBytes(reference.pointer,
_id_fetchNativeAppStartAsBytes as jni$_.JMethodIDPtr)
- .object(const jni$_.$JByteArray$NullableType$());
+ .object(const jni$_.JByteArrayNullableType());
}
static final _id_getApplicationContext = _class.instanceMethodId(
@@ -4606,12 +4574,12 @@ class SentryFlutterPlugin$Companion extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun getApplicationContext(): android.content.Context?`
+ /// from: `public final android.content.Context getApplicationContext()`
/// The returned object must be released after use, by calling the [release] method.
Context? getApplicationContext() {
return _getApplicationContext(
reference.pointer, _id_getApplicationContext as jni$_.JMethodIDPtr)
- .object(const $Context$NullableType$());
+ .object(const $Context$NullableType());
}
static final _id_loadContextsAsBytes = _class.instanceMethodId(
@@ -4631,12 +4599,12 @@ class SentryFlutterPlugin$Companion extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun loadContextsAsBytes(): kotlin.ByteArray?`
+ /// from: `public final byte[] loadContextsAsBytes()`
/// The returned object must be released after use, by calling the [release] method.
jni$_.JByteArray? loadContextsAsBytes() {
return _loadContextsAsBytes(
reference.pointer, _id_loadContextsAsBytes as jni$_.JMethodIDPtr)
- .object(const jni$_.$JByteArray$NullableType$());
+ .object(const jni$_.JByteArrayNullableType());
}
static final _id_loadDebugImagesAsBytes = _class.instanceMethodId(
@@ -4655,7 +4623,7 @@ class SentryFlutterPlugin$Companion extends jni$_.JObject {
jni$_.JniResult Function(jni$_.Pointer,
jni$_.JMethodIDPtr, jni$_.Pointer)>();
- /// from: `public fun loadDebugImagesAsBytes(addresses: kotlin.collections.Set): kotlin.ByteArray?`
+ /// from: `public final byte[] loadDebugImagesAsBytes(java.util.Set set)`
/// The returned object must be released after use, by calling the [release] method.
jni$_.JByteArray? loadDebugImagesAsBytes(
jni$_.JSet set,
@@ -4663,7 +4631,7 @@ class SentryFlutterPlugin$Companion extends jni$_.JObject {
final _$set = set.reference;
return _loadDebugImagesAsBytes(reference.pointer,
_id_loadDebugImagesAsBytes as jni$_.JMethodIDPtr, _$set.pointer)
- .object(const jni$_.$JByteArray$NullableType$());
+ .object(const jni$_.JByteArrayNullableType());
}
static final _id_new$ = _class.constructorId(
@@ -4696,10 +4664,10 @@ class SentryFlutterPlugin$Companion extends jni$_.JObject {
}
}
-final class $SentryFlutterPlugin$Companion$NullableType$
- extends jni$_.JType {
+final class $SentryFlutterPlugin$Companion$NullableType
+ extends jni$_.JObjType {
@jni$_.internal
- const $SentryFlutterPlugin$Companion$NullableType$();
+ const $SentryFlutterPlugin$Companion$NullableType();
@jni$_.internal
@core$_.override
@@ -4715,31 +4683,30 @@ final class $SentryFlutterPlugin$Companion$NullableType$
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$Type$();
+ jni$_.JObjType get superType => const jni$_.JObjectType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType => this;
+ jni$_.JObjType get nullableType => this;
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => ($SentryFlutterPlugin$Companion$NullableType$).hashCode;
+ int get hashCode => ($SentryFlutterPlugin$Companion$NullableType).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType ==
- ($SentryFlutterPlugin$Companion$NullableType$) &&
- other is $SentryFlutterPlugin$Companion$NullableType$;
+ return other.runtimeType == ($SentryFlutterPlugin$Companion$NullableType) &&
+ other is $SentryFlutterPlugin$Companion$NullableType;
}
}
-final class $SentryFlutterPlugin$Companion$Type$
- extends jni$_.JType {
+final class $SentryFlutterPlugin$Companion$Type
+ extends jni$_.JObjType {
@jni$_.internal
- const $SentryFlutterPlugin$Companion$Type$();
+ const $SentryFlutterPlugin$Companion$Type();
@jni$_.internal
@core$_.override
@@ -4753,24 +4720,24 @@ final class $SentryFlutterPlugin$Companion$Type$
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$Type$();
+ jni$_.JObjType get superType => const jni$_.JObjectType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType =>
- const $SentryFlutterPlugin$Companion$NullableType$();
+ jni$_.JObjType get nullableType =>
+ const $SentryFlutterPlugin$Companion$NullableType();
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => ($SentryFlutterPlugin$Companion$Type$).hashCode;
+ int get hashCode => ($SentryFlutterPlugin$Companion$Type).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($SentryFlutterPlugin$Companion$Type$) &&
- other is $SentryFlutterPlugin$Companion$Type$;
+ return other.runtimeType == ($SentryFlutterPlugin$Companion$Type) &&
+ other is $SentryFlutterPlugin$Companion$Type;
}
}
@@ -4778,7 +4745,7 @@ final class $SentryFlutterPlugin$Companion$Type$
class SentryFlutterPlugin extends jni$_.JObject {
@jni$_.internal
@core$_.override
- final jni$_.JType $type;
+ final jni$_.JObjType $type;
@jni$_.internal
SentryFlutterPlugin.fromReference(
@@ -4790,12 +4757,8 @@ class SentryFlutterPlugin extends jni$_.JObject {
jni$_.JClass.forName(r'io/sentry/flutter/SentryFlutterPlugin');
/// The type which includes information such as the signature of this class.
- static const jni$_.JType nullableType =
- $SentryFlutterPlugin$NullableType$();
-
- /// The type which includes information such as the signature of this class.
- static const jni$_.JType type =
- $SentryFlutterPlugin$Type$();
+ static const nullableType = $SentryFlutterPlugin$NullableType();
+ static const type = $SentryFlutterPlugin$Type();
static final _id_Companion = _class.staticFieldId(
r'Companion',
r'Lio/sentry/flutter/SentryFlutterPlugin$Companion;',
@@ -4804,7 +4767,7 @@ class SentryFlutterPlugin extends jni$_.JObject {
/// from: `static public final io.sentry.flutter.SentryFlutterPlugin$Companion Companion`
/// The returned object must be released after use, by calling the [release] method.
static SentryFlutterPlugin$Companion get Companion =>
- _id_Companion.get(_class, const $SentryFlutterPlugin$Companion$Type$());
+ _id_Companion.get(_class, const $SentryFlutterPlugin$Companion$Type());
static final _id_new$ = _class.constructorId(
r'()V',
@@ -4846,7 +4809,7 @@ class SentryFlutterPlugin extends jni$_.JObject {
jni$_.JThrowablePtr Function(jni$_.Pointer,
jni$_.JMethodIDPtr, jni$_.Pointer)>();
- /// from: `public fun onAttachedToEngine(flutterPluginBinding: io.flutter.embedding.engine.plugins.FlutterPlugin.FlutterPluginBinding): kotlin.Unit`
+ /// from: `public void onAttachedToEngine(io.flutter.embedding.engine.plugins.FlutterPlugin$FlutterPluginBinding flutterPluginBinding)`
void onAttachedToEngine(
jni$_.JObject flutterPluginBinding,
) {
@@ -4880,7 +4843,7 @@ class SentryFlutterPlugin extends jni$_.JObject {
jni$_.Pointer,
jni$_.Pointer)>();
- /// from: `public fun onMethodCall(call: io.flutter.plugin.common.MethodCall, result: io.flutter.plugin.common.MethodChannel.Result): kotlin.Unit`
+ /// from: `public void onMethodCall(io.flutter.plugin.common.MethodCall methodCall, io.flutter.plugin.common.MethodChannel$Result result)`
void onMethodCall(
jni$_.JObject methodCall,
jni$_.JObject result,
@@ -4908,7 +4871,7 @@ class SentryFlutterPlugin extends jni$_.JObject {
jni$_.JThrowablePtr Function(jni$_.Pointer,
jni$_.JMethodIDPtr, jni$_.Pointer)>();
- /// from: `public fun onDetachedFromEngine(binding: io.flutter.embedding.engine.plugins.FlutterPlugin.FlutterPluginBinding): kotlin.Unit`
+ /// from: `public void onDetachedFromEngine(io.flutter.embedding.engine.plugins.FlutterPlugin$FlutterPluginBinding flutterPluginBinding)`
void onDetachedFromEngine(
jni$_.JObject flutterPluginBinding,
) {
@@ -4936,7 +4899,7 @@ class SentryFlutterPlugin extends jni$_.JObject {
jni$_.JThrowablePtr Function(jni$_.Pointer,
jni$_.JMethodIDPtr, jni$_.Pointer)>();
- /// from: `public fun onAttachedToActivity(binding: io.flutter.embedding.engine.plugins.activity.ActivityPluginBinding): kotlin.Unit`
+ /// from: `public void onAttachedToActivity(io.flutter.embedding.engine.plugins.activity.ActivityPluginBinding activityPluginBinding)`
void onAttachedToActivity(
jni$_.JObject activityPluginBinding,
) {
@@ -4965,7 +4928,7 @@ class SentryFlutterPlugin extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun onDetachedFromActivity(): kotlin.Unit`
+ /// from: `public void onDetachedFromActivity()`
void onDetachedFromActivity() {
_onDetachedFromActivity(
reference.pointer, _id_onDetachedFromActivity as jni$_.JMethodIDPtr)
@@ -4990,7 +4953,7 @@ class SentryFlutterPlugin extends jni$_.JObject {
jni$_.JThrowablePtr Function(jni$_.Pointer,
jni$_.JMethodIDPtr, jni$_.Pointer)>();
- /// from: `public fun onReattachedToActivityForConfigChanges(binding: io.flutter.embedding.engine.plugins.activity.ActivityPluginBinding): kotlin.Unit`
+ /// from: `public void onReattachedToActivityForConfigChanges(io.flutter.embedding.engine.plugins.activity.ActivityPluginBinding activityPluginBinding)`
void onReattachedToActivityForConfigChanges(
jni$_.JObject activityPluginBinding,
) {
@@ -5021,7 +4984,7 @@ class SentryFlutterPlugin extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun onDetachedFromActivityForConfigChanges(): kotlin.Unit`
+ /// from: `public void onDetachedFromActivityForConfigChanges()`
void onDetachedFromActivityForConfigChanges() {
_onDetachedFromActivityForConfigChanges(reference.pointer,
_id_onDetachedFromActivityForConfigChanges as jni$_.JMethodIDPtr)
@@ -5051,7 +5014,7 @@ class SentryFlutterPlugin extends jni$_.JObject {
static ReplayIntegration? privateSentryGetReplayIntegration() {
return _privateSentryGetReplayIntegration(_class.reference.pointer,
_id_privateSentryGetReplayIntegration as jni$_.JMethodIDPtr)
- .object(const $ReplayIntegration$NullableType$());
+ .object(const $ReplayIntegration$NullableType());
}
static final _id_setupReplay = _class.staticMethodId(
@@ -5136,7 +5099,7 @@ class SentryFlutterPlugin extends jni$_.JObject {
static jni$_.JInteger? getDisplayRefreshRate() {
return _getDisplayRefreshRate(_class.reference.pointer,
_id_getDisplayRefreshRate as jni$_.JMethodIDPtr)
- .object(const jni$_.$JInteger$NullableType$());
+ .object(const jni$_.JIntegerNullableType());
}
static final _id_fetchNativeAppStartAsBytes = _class.staticMethodId(
@@ -5162,7 +5125,7 @@ class SentryFlutterPlugin extends jni$_.JObject {
static jni$_.JByteArray? fetchNativeAppStartAsBytes() {
return _fetchNativeAppStartAsBytes(_class.reference.pointer,
_id_fetchNativeAppStartAsBytes as jni$_.JMethodIDPtr)
- .object(const jni$_.$JByteArray$NullableType$());
+ .object(const jni$_.JByteArrayNullableType());
}
static final _id_getApplicationContext = _class.staticMethodId(
@@ -5187,7 +5150,7 @@ class SentryFlutterPlugin extends jni$_.JObject {
static Context? getApplicationContext() {
return _getApplicationContext(_class.reference.pointer,
_id_getApplicationContext as jni$_.JMethodIDPtr)
- .object(const $Context$NullableType$());
+ .object(const $Context$NullableType());
}
static final _id_loadContextsAsBytes = _class.staticMethodId(
@@ -5212,7 +5175,7 @@ class SentryFlutterPlugin extends jni$_.JObject {
static jni$_.JByteArray? loadContextsAsBytes() {
return _loadContextsAsBytes(_class.reference.pointer,
_id_loadContextsAsBytes as jni$_.JMethodIDPtr)
- .object(const jni$_.$JByteArray$NullableType$());
+ .object(const jni$_.JByteArrayNullableType());
}
static final _id_loadDebugImagesAsBytes = _class.staticMethodId(
@@ -5239,14 +5202,14 @@ class SentryFlutterPlugin extends jni$_.JObject {
final _$set = set.reference;
return _loadDebugImagesAsBytes(_class.reference.pointer,
_id_loadDebugImagesAsBytes as jni$_.JMethodIDPtr, _$set.pointer)
- .object(const jni$_.$JByteArray$NullableType$());
+ .object(const jni$_.JByteArrayNullableType());
}
}
-final class $SentryFlutterPlugin$NullableType$
- extends jni$_.JType {
+final class $SentryFlutterPlugin$NullableType
+ extends jni$_.JObjType {
@jni$_.internal
- const $SentryFlutterPlugin$NullableType$();
+ const $SentryFlutterPlugin$NullableType();
@jni$_.internal
@core$_.override
@@ -5262,30 +5225,30 @@ final class $SentryFlutterPlugin$NullableType$
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$NullableType$();
+ jni$_.JObjType get superType => const jni$_.JObjectNullableType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType => this;
+ jni$_.JObjType get nullableType => this;
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => ($SentryFlutterPlugin$NullableType$).hashCode;
+ int get hashCode => ($SentryFlutterPlugin$NullableType).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($SentryFlutterPlugin$NullableType$) &&
- other is $SentryFlutterPlugin$NullableType$;
+ return other.runtimeType == ($SentryFlutterPlugin$NullableType) &&
+ other is $SentryFlutterPlugin$NullableType;
}
}
-final class $SentryFlutterPlugin$Type$
- extends jni$_.JType {
+final class $SentryFlutterPlugin$Type
+ extends jni$_.JObjType {
@jni$_.internal
- const $SentryFlutterPlugin$Type$();
+ const $SentryFlutterPlugin$Type();
@jni$_.internal
@core$_.override
@@ -5299,24 +5262,24 @@ final class $SentryFlutterPlugin$Type$
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$NullableType$();
+ jni$_.JObjType get superType => const jni$_.JObjectNullableType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType =>
- const $SentryFlutterPlugin$NullableType$();
+ jni$_.JObjType get nullableType =>
+ const $SentryFlutterPlugin$NullableType();
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => ($SentryFlutterPlugin$Type$).hashCode;
+ int get hashCode => ($SentryFlutterPlugin$Type).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($SentryFlutterPlugin$Type$) &&
- other is $SentryFlutterPlugin$Type$;
+ return other.runtimeType == ($SentryFlutterPlugin$Type) &&
+ other is $SentryFlutterPlugin$Type;
}
}
@@ -5324,7 +5287,7 @@ final class $SentryFlutterPlugin$Type$
class ReplayRecorderCallbacks extends jni$_.JObject {
@jni$_.internal
@core$_.override
- final jni$_.JType $type;
+ final jni$_.JObjType $type;
@jni$_.internal
ReplayRecorderCallbacks.fromReference(
@@ -5336,12 +5299,8 @@ class ReplayRecorderCallbacks extends jni$_.JObject {
jni$_.JClass.forName(r'io/sentry/flutter/ReplayRecorderCallbacks');
/// The type which includes information such as the signature of this class.
- static const jni$_.JType nullableType =
- $ReplayRecorderCallbacks$NullableType$();
-
- /// The type which includes information such as the signature of this class.
- static const jni$_.JType type =
- $ReplayRecorderCallbacks$Type$();
+ static const nullableType = $ReplayRecorderCallbacks$NullableType();
+ static const type = $ReplayRecorderCallbacks$Type();
static final _id_replayStarted = _class.instanceMethodId(
r'replayStarted',
r'(Ljava/lang/String;Z)V',
@@ -5359,7 +5318,7 @@ class ReplayRecorderCallbacks extends jni$_.JObject {
jni$_.JThrowablePtr Function(jni$_.Pointer,
jni$_.JMethodIDPtr, jni$_.Pointer, int)>();
- /// from: `public fun replayStarted(replayId: kotlin.String, replayIsBuffering: kotlin.Boolean): kotlin.Unit`
+ /// from: `public abstract void replayStarted(java.lang.String string, boolean z)`
void replayStarted(
jni$_.JString string,
bool z,
@@ -5387,7 +5346,7 @@ class ReplayRecorderCallbacks extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun replayResumed(): kotlin.Unit`
+ /// from: `public abstract void replayResumed()`
void replayResumed() {
_replayResumed(reference.pointer, _id_replayResumed as jni$_.JMethodIDPtr)
.check();
@@ -5410,7 +5369,7 @@ class ReplayRecorderCallbacks extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun replayPaused(): kotlin.Unit`
+ /// from: `public abstract void replayPaused()`
void replayPaused() {
_replayPaused(reference.pointer, _id_replayPaused as jni$_.JMethodIDPtr)
.check();
@@ -5433,7 +5392,7 @@ class ReplayRecorderCallbacks extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun replayStopped(): kotlin.Unit`
+ /// from: `public abstract void replayStopped()`
void replayStopped() {
_replayStopped(reference.pointer, _id_replayStopped as jni$_.JMethodIDPtr)
.check();
@@ -5456,7 +5415,7 @@ class ReplayRecorderCallbacks extends jni$_.JObject {
jni$_.JMethodIDPtr,
)>();
- /// from: `public fun replayReset(): kotlin.Unit`
+ /// from: `public abstract void replayReset()`
void replayReset() {
_replayReset(reference.pointer, _id_replayReset as jni$_.JMethodIDPtr)
.check();
@@ -5478,7 +5437,7 @@ class ReplayRecorderCallbacks extends jni$_.JObject {
jni$_.JThrowablePtr Function(
jni$_.Pointer, jni$_.JMethodIDPtr, int, int, int)>();
- /// from: `public fun replayConfigChanged(width: kotlin.Int, height: kotlin.Int, frameRate: kotlin.Int): kotlin.Unit`
+ /// from: `public abstract void replayConfigChanged(int i, int i1, int i2)`
void replayConfigChanged(
int i,
int i1,
@@ -5521,9 +5480,9 @@ class ReplayRecorderCallbacks extends jni$_.JObject {
final $a = $i.args;
if ($d == r'replayStarted(Ljava/lang/String;Z)V') {
_$impls[$p]!.replayStarted(
- $a![0]!.as(const jni$_.$JString$Type$(), releaseOriginal: true),
+ $a![0]!.as(const jni$_.JStringType(), releaseOriginal: true),
$a![1]!
- .as(const jni$_.$JBoolean$Type$(), releaseOriginal: true)
+ .as(const jni$_.JBooleanType(), releaseOriginal: true)
.booleanValue(releaseOriginal: true),
);
return jni$_.nullptr;
@@ -5547,13 +5506,13 @@ class ReplayRecorderCallbacks extends jni$_.JObject {
if ($d == r'replayConfigChanged(III)V') {
_$impls[$p]!.replayConfigChanged(
$a![0]!
- .as(const jni$_.$JInteger$Type$(), releaseOriginal: true)
+ .as(const jni$_.JIntegerType(), releaseOriginal: true)
.intValue(releaseOriginal: true),
$a![1]!
- .as(const jni$_.$JInteger$Type$(), releaseOriginal: true)
+ .as(const jni$_.JIntegerType(), releaseOriginal: true)
.intValue(releaseOriginal: true),
$a![2]!
- .as(const jni$_.$JInteger$Type$(), releaseOriginal: true)
+ .as(const jni$_.JIntegerType(), releaseOriginal: true)
.intValue(releaseOriginal: true),
);
return jni$_.nullptr;
@@ -5696,10 +5655,10 @@ final class _$ReplayRecorderCallbacks with $ReplayRecorderCallbacks {
}
}
-final class $ReplayRecorderCallbacks$NullableType$
- extends jni$_.JType {
+final class $ReplayRecorderCallbacks$NullableType
+ extends jni$_.JObjType {
@jni$_.internal
- const $ReplayRecorderCallbacks$NullableType$();
+ const $ReplayRecorderCallbacks$NullableType();
@jni$_.internal
@core$_.override
@@ -5715,30 +5674,30 @@ final class $ReplayRecorderCallbacks$NullableType$
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$Type$();
+ jni$_.JObjType get superType => const jni$_.JObjectType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType => this;
+ jni$_.JObjType get nullableType => this;
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => ($ReplayRecorderCallbacks$NullableType$).hashCode;
+ int get hashCode => ($ReplayRecorderCallbacks$NullableType).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($ReplayRecorderCallbacks$NullableType$) &&
- other is $ReplayRecorderCallbacks$NullableType$;
+ return other.runtimeType == ($ReplayRecorderCallbacks$NullableType) &&
+ other is $ReplayRecorderCallbacks$NullableType;
}
}
-final class $ReplayRecorderCallbacks$Type$
- extends jni$_.JType {
+final class $ReplayRecorderCallbacks$Type
+ extends jni$_.JObjType {
@jni$_.internal
- const $ReplayRecorderCallbacks$Type$();
+ const $ReplayRecorderCallbacks$Type();
@jni$_.internal
@core$_.override
@@ -5752,24 +5711,24 @@ final class $ReplayRecorderCallbacks$Type$
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$Type$();
+ jni$_.JObjType get superType => const jni$_.JObjectType();
@jni$_.internal
@core$_.override
- jni$_.JType get nullableType =>
- const $ReplayRecorderCallbacks$NullableType$();
+ jni$_.JObjType get nullableType =>
+ const $ReplayRecorderCallbacks$NullableType();
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => ($ReplayRecorderCallbacks$Type$).hashCode;
+ int get hashCode => ($ReplayRecorderCallbacks$Type).hashCode;
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($ReplayRecorderCallbacks$Type$) &&
- other is $ReplayRecorderCallbacks$Type$;
+ return other.runtimeType == ($ReplayRecorderCallbacks$Type) &&
+ other is $ReplayRecorderCallbacks$Type;
}
}
@@ -5778,10 +5737,10 @@ class Sentry$OptionsConfiguration<$T extends jni$_.JObject?>
extends jni$_.JObject {
@jni$_.internal
@core$_.override
- final jni$_.JType> $type;
+ final jni$_.JObjType> $type;
@jni$_.internal
- final jni$_.JType<$T> T;
+ final jni$_.JObjType<$T> T;
@jni$_.internal
Sentry$OptionsConfiguration.fromReference(
@@ -5794,21 +5753,19 @@ class Sentry$OptionsConfiguration<$T extends jni$_.JObject?>
jni$_.JClass.forName(r'io/sentry/Sentry$OptionsConfiguration');
/// The type which includes information such as the signature of this class.
- static jni$_.JType?>
+ static $Sentry$OptionsConfiguration$NullableType<$T>
nullableType<$T extends jni$_.JObject?>(
- jni$_.JType<$T> T,
+ jni$_.JObjType<$T> T,
) {
- return $Sentry$OptionsConfiguration$NullableType$<$T>(
+ return $Sentry$OptionsConfiguration$NullableType<$T>(
T,
);
}
- /// The type which includes information such as the signature of this class.
- static jni$_.JType>
- type<$T extends jni$_.JObject?>(
- jni$_.JType<$T> T,
+ static $Sentry$OptionsConfiguration$Type<$T> type<$T extends jni$_.JObject?>(
+ jni$_.JObjType<$T> T,
) {
- return $Sentry$OptionsConfiguration$Type$<$T>(
+ return $Sentry$OptionsConfiguration$Type<$T>(
T,
);
}
@@ -5923,12 +5880,12 @@ class Sentry$OptionsConfiguration<$T extends jni$_.JObject?>
abstract base mixin class $Sentry$OptionsConfiguration<
$T extends jni$_.JObject?> {
factory $Sentry$OptionsConfiguration({
- required jni$_.JType<$T> T,
+ required jni$_.JObjType<$T> T,
required void Function($T sentryOptions) configure,
bool configure$async,
}) = _$Sentry$OptionsConfiguration<$T>;
- jni$_.JType<$T> get T;
+ jni$_.JObjType<$T> get T;
void configure($T sentryOptions);
bool get configure$async => false;
@@ -5943,7 +5900,7 @@ final class _$Sentry$OptionsConfiguration<$T extends jni$_.JObject?>
}) : _configure = configure;
@core$_.override
- final jni$_.JType<$T> T;
+ final jni$_.JObjType<$T> T;
final void Function($T sentryOptions) _configure;
final bool configure$async;
@@ -5953,14 +5910,13 @@ final class _$Sentry$OptionsConfiguration<$T extends jni$_.JObject?>
}
}
-final class $Sentry$OptionsConfiguration$NullableType$<
- $T extends jni$_.JObject?>
- extends jni$_.JType?> {
+final class $Sentry$OptionsConfiguration$NullableType<$T extends jni$_.JObject?>
+ extends jni$_.JObjType?> {
@jni$_.internal
- final jni$_.JType<$T> T;
+ final jni$_.JObjType<$T> T;
@jni$_.internal
- const $Sentry$OptionsConfiguration$NullableType$(
+ const $Sentry$OptionsConfiguration$NullableType(
this.T,
);
@@ -5979,36 +5935,35 @@ final class $Sentry$OptionsConfiguration$NullableType$<
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$NullableType$();
+ jni$_.JObjType get superType => const jni$_.JObjectNullableType();
@jni$_.internal
@core$_.override
- jni$_.JType?> get nullableType => this;
+ jni$_.JObjType?> get nullableType => this;
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode =>
- Object.hash($Sentry$OptionsConfiguration$NullableType$, T);
+ int get hashCode => Object.hash($Sentry$OptionsConfiguration$NullableType, T);
@core$_.override
bool operator ==(Object other) {
return other.runtimeType ==
- ($Sentry$OptionsConfiguration$NullableType$<$T>) &&
- other is $Sentry$OptionsConfiguration$NullableType$<$T> &&
+ ($Sentry$OptionsConfiguration$NullableType<$T>) &&
+ other is $Sentry$OptionsConfiguration$NullableType<$T> &&
T == other.T;
}
}
-final class $Sentry$OptionsConfiguration$Type$<$T extends jni$_.JObject?>
- extends jni$_.JType> {
+final class $Sentry$OptionsConfiguration$Type<$T extends jni$_.JObject?>
+ extends jni$_.JObjType> {
@jni$_.internal
- final jni$_.JType<$T> T;
+ final jni$_.JObjType<$T> T;
@jni$_.internal
- const $Sentry$OptionsConfiguration$Type$(
+ const $Sentry$OptionsConfiguration$Type(
this.T,
);
@@ -6025,24 +5980,24 @@ final class $Sentry$OptionsConfiguration$Type$<$T extends jni$_.JObject?>
);
@jni$_.internal
@core$_.override
- jni$_.JType get superType => const jni$_.$JObject$NullableType$();
+ jni$_.JObjType get superType => const jni$_.JObjectNullableType();
@jni$_.internal
@core$_.override
- jni$_.JType?> get nullableType =>
- $Sentry$OptionsConfiguration$NullableType$<$T>(T);
+ jni$_.JObjType?> get nullableType =>
+ $Sentry$OptionsConfiguration$NullableType<$T>(T);
@jni$_.internal
@core$_.override
final superCount = 1;
@core$_.override
- int get hashCode => Object.hash($Sentry$OptionsConfiguration$Type$, T);
+ int get hashCode => Object.hash($Sentry$OptionsConfiguration$Type, T);
@core$_.override
bool operator ==(Object other) {
- return other.runtimeType == ($Sentry$OptionsConfiguration$Type$<$T>) &&
- other is $Sentry$OptionsConfiguration$Type$<$T> &&
+ return other.runtimeType == ($Sentry$OptionsConfiguration$Type<$T>) &&
+ other is $Sentry$OptionsConfiguration$Type<$T> &&
T == other.T;
}
}
@@ -6051,7 +6006,7 @@ final class $Sentry$OptionsConfiguration$Type$<$T extends jni$_.JObject?>
class Sentry extends jni$_.JObject {
@jni$_.internal
@core$_.override
- final jni$_.JType $type;
+ final jni$_.JObjType $type;
@jni$_.internal
Sentry.fromReference(
@@ -6062,10 +6017,8 @@ class Sentry extends jni$_.JObject {
static final _class = jni$_.JClass.forName(r'io/sentry/Sentry');
/// The type which includes information such as the signature of this class.
- static const jni$_.JType nullableType = $Sentry$NullableType$();
-
- /// The type which includes information such as the signature of this class.
- static const jni$_.JType type = $Sentry$Type$();
+ static const nullableType = $Sentry$NullableType();
+ static const type = $Sentry$Type();
static final _id_APP_START_PROFILING_CONFIG_FILE_NAME = _class.staticFieldId(
r'APP_START_PROFILING_CONFIG_FILE_NAME',
r'Ljava/lang/String;',
@@ -6075,7 +6028,7 @@ class Sentry extends jni$_.JObject {
/// The returned object must be released after use, by calling the [release] method.
static jni$_.JString get APP_START_PROFILING_CONFIG_FILE_NAME =>
_id_APP_START_PROFILING_CONFIG_FILE_NAME.get(
- _class, const jni$_.$JString$Type$());
+ _class, const jni$_.JStringType());
static final _id_getCurrentHub = _class.staticMethodId(
r'getCurrentHub',
@@ -6099,7 +6052,7 @@ class Sentry extends jni$_.JObject {
static jni$_.JObject getCurrentHub() {
return _getCurrentHub(
_class.reference.pointer, _id_getCurrentHub as jni$_.JMethodIDPtr)
- .object