Skip to content

Commit 1e46846

Browse files
github-actions[bot]web-flowbuenaflor
authored
chore: update packages/flutter/scripts/update-android.sh to 8.41.0 (#3687)
Co-authored-by: GitHub <noreply@github.com> Co-authored-by: Giancarlo Buenaflor <giancarlo.buenaflor@sentry.io>
1 parent 08e96ae commit 1e46846

2 files changed

Lines changed: 147 additions & 2 deletions

File tree

packages/flutter/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ android {
6262
}
6363

6464
dependencies {
65-
api 'io.sentry:sentry-android:8.40.0'
66-
debugImplementation 'io.sentry:sentry-spotlight:8.40.0'
65+
api 'io.sentry:sentry-android:8.41.0'
66+
debugImplementation 'io.sentry:sentry-spotlight:8.41.0'
6767
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
6868

6969
// Required -- JUnit 4 framework

packages/flutter/lib/src/native/java/binding.dart

Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8662,6 +8662,31 @@ class Sentry extends jni$_.JObject {
86628662
.object<jni$_.JObject>(const jni$_.JObjectType());
86638663
}
86648664

8665+
static final _id_feedback = _class.staticMethodId(
8666+
r'feedback',
8667+
r'()Lio/sentry/IFeedbackApi;',
8668+
);
8669+
8670+
static final _feedback = jni$_.ProtectedJniExtensions.lookup<
8671+
jni$_.NativeFunction<
8672+
jni$_.JniResult Function(
8673+
jni$_.Pointer<jni$_.Void>,
8674+
jni$_.JMethodIDPtr,
8675+
)>>('globalEnv_CallStaticObjectMethod')
8676+
.asFunction<
8677+
jni$_.JniResult Function(
8678+
jni$_.Pointer<jni$_.Void>,
8679+
jni$_.JMethodIDPtr,
8680+
)>();
8681+
8682+
/// from: `static public io.sentry.IFeedbackApi feedback()`
8683+
/// The returned object must be released after use, by calling the [release] method.
8684+
static jni$_.JObject feedback() {
8685+
return _feedback(
8686+
_class.reference.pointer, _id_feedback as jni$_.JMethodIDPtr)
8687+
.object<jni$_.JObject>(const jni$_.JObjectType());
8688+
}
8689+
86658690
static final _id_showUserFeedbackDialog = _class.staticMethodId(
86668691
r'showUserFeedbackDialog',
86678692
r'()V',
@@ -18877,6 +18902,54 @@ class SentryOptions extends jni$_.JObject {
1887718902
.check();
1887818903
}
1887918904

18905+
static final _id_isEnableQueueTracing = _class.instanceMethodId(
18906+
r'isEnableQueueTracing',
18907+
r'()Z',
18908+
);
18909+
18910+
static final _isEnableQueueTracing = jni$_.ProtectedJniExtensions.lookup<
18911+
jni$_.NativeFunction<
18912+
jni$_.JniResult Function(
18913+
jni$_.Pointer<jni$_.Void>,
18914+
jni$_.JMethodIDPtr,
18915+
)>>('globalEnv_CallBooleanMethod')
18916+
.asFunction<
18917+
jni$_.JniResult Function(
18918+
jni$_.Pointer<jni$_.Void>,
18919+
jni$_.JMethodIDPtr,
18920+
)>();
18921+
18922+
/// from: `public boolean isEnableQueueTracing()`
18923+
bool isEnableQueueTracing() {
18924+
return _isEnableQueueTracing(
18925+
reference.pointer, _id_isEnableQueueTracing as jni$_.JMethodIDPtr)
18926+
.boolean;
18927+
}
18928+
18929+
static final _id_setEnableQueueTracing = _class.instanceMethodId(
18930+
r'setEnableQueueTracing',
18931+
r'(Z)V',
18932+
);
18933+
18934+
static final _setEnableQueueTracing = jni$_.ProtectedJniExtensions.lookup<
18935+
jni$_.NativeFunction<
18936+
jni$_.JThrowablePtr Function(
18937+
jni$_.Pointer<jni$_.Void>,
18938+
jni$_.JMethodIDPtr,
18939+
jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallVoidMethod')
18940+
.asFunction<
18941+
jni$_.JThrowablePtr Function(
18942+
jni$_.Pointer<jni$_.Void>, jni$_.JMethodIDPtr, int)>();
18943+
18944+
/// from: `public void setEnableQueueTracing(boolean z)`
18945+
void setEnableQueueTracing(
18946+
bool z,
18947+
) {
18948+
_setEnableQueueTracing(reference.pointer,
18949+
_id_setEnableQueueTracing as jni$_.JMethodIDPtr, z ? 1 : 0)
18950+
.check();
18951+
}
18952+
1888018953
static final _id_isEnabled = _class.instanceMethodId(
1888118954
r'isEnabled',
1888218955
r'()Z',
@@ -22243,6 +22316,54 @@ class SentryReplayOptions extends jni$_.JObject {
2224322316
.check();
2224422317
}
2224522318

22319+
static final _id_isCaptureSurfaceViews = _class.instanceMethodId(
22320+
r'isCaptureSurfaceViews',
22321+
r'()Z',
22322+
);
22323+
22324+
static final _isCaptureSurfaceViews = jni$_.ProtectedJniExtensions.lookup<
22325+
jni$_.NativeFunction<
22326+
jni$_.JniResult Function(
22327+
jni$_.Pointer<jni$_.Void>,
22328+
jni$_.JMethodIDPtr,
22329+
)>>('globalEnv_CallBooleanMethod')
22330+
.asFunction<
22331+
jni$_.JniResult Function(
22332+
jni$_.Pointer<jni$_.Void>,
22333+
jni$_.JMethodIDPtr,
22334+
)>();
22335+
22336+
/// from: `public boolean isCaptureSurfaceViews()`
22337+
bool isCaptureSurfaceViews() {
22338+
return _isCaptureSurfaceViews(
22339+
reference.pointer, _id_isCaptureSurfaceViews as jni$_.JMethodIDPtr)
22340+
.boolean;
22341+
}
22342+
22343+
static final _id_setCaptureSurfaceViews = _class.instanceMethodId(
22344+
r'setCaptureSurfaceViews',
22345+
r'(Z)V',
22346+
);
22347+
22348+
static final _setCaptureSurfaceViews = jni$_.ProtectedJniExtensions.lookup<
22349+
jni$_.NativeFunction<
22350+
jni$_.JThrowablePtr Function(
22351+
jni$_.Pointer<jni$_.Void>,
22352+
jni$_.JMethodIDPtr,
22353+
jni$_.VarArgs<(jni$_.Int32,)>)>>('globalEnv_CallVoidMethod')
22354+
.asFunction<
22355+
jni$_.JThrowablePtr Function(
22356+
jni$_.Pointer<jni$_.Void>, jni$_.JMethodIDPtr, int)>();
22357+
22358+
/// from: `public void setCaptureSurfaceViews(boolean z)`
22359+
void setCaptureSurfaceViews(
22360+
bool z,
22361+
) {
22362+
_setCaptureSurfaceViews(reference.pointer,
22363+
_id_setCaptureSurfaceViews as jni$_.JMethodIDPtr, z ? 1 : 0)
22364+
.check();
22365+
}
22366+
2224622367
static final _id_getNetworkDetailAllowUrls = _class.instanceMethodId(
2224722368
r'getNetworkDetailAllowUrls',
2224822369
r'()Ljava/util/List;',
@@ -32427,6 +32548,30 @@ class ScopesAdapter extends jni$_.JObject {
3242732548
.object<jni$_.JObject>(const jni$_.JObjectType());
3242832549
}
3242932550

32551+
static final _id_feedback = _class.instanceMethodId(
32552+
r'feedback',
32553+
r'()Lio/sentry/IFeedbackApi;',
32554+
);
32555+
32556+
static final _feedback = jni$_.ProtectedJniExtensions.lookup<
32557+
jni$_.NativeFunction<
32558+
jni$_.JniResult Function(
32559+
jni$_.Pointer<jni$_.Void>,
32560+
jni$_.JMethodIDPtr,
32561+
)>>('globalEnv_CallObjectMethod')
32562+
.asFunction<
32563+
jni$_.JniResult Function(
32564+
jni$_.Pointer<jni$_.Void>,
32565+
jni$_.JMethodIDPtr,
32566+
)>();
32567+
32568+
/// from: `public io.sentry.IFeedbackApi feedback()`
32569+
/// The returned object must be released after use, by calling the [release] method.
32570+
jni$_.JObject feedback() {
32571+
return _feedback(reference.pointer, _id_feedback as jni$_.JMethodIDPtr)
32572+
.object<jni$_.JObject>(const jni$_.JObjectType());
32573+
}
32574+
3243032575
static final _id_setAttribute = _class.instanceMethodId(
3243132576
r'setAttribute',
3243232577
r'(Ljava/lang/String;Ljava/lang/Object;)V',

0 commit comments

Comments
 (0)