text
stringlengths 6
13.6M
| id
stringlengths 13
176
| metadata
dict | __index_level_0__
int64 0
1.69k
|
---|---|---|---|
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// TODO(a14n): remove this import once Flutter 3.1 or later reaches stable (including flutter/flutter#104231)
// ignore: unnecessary_import
import 'dart:typed_data';
import 'package:flutter/foundation.dart';
import 'package:flutter/services.dart';
import '../common/instance_manager.dart';
import '../common/weak_reference_utils.dart';
import 'foundation_api_impls.dart';
/// The values that can be returned in a change map.
///
/// Wraps [NSKeyValueObservingOptions](https://developer.apple.com/documentation/foundation/nskeyvalueobservingoptions?language=objc).
enum NSKeyValueObservingOptions {
/// Indicates that the change map should provide the new attribute value, if applicable.
///
/// See https://developer.apple.com/documentation/foundation/nskeyvalueobservingoptions/nskeyvalueobservingoptionnew?language=objc.
newValue,
/// Indicates that the change map should contain the old attribute value, if applicable.
///
/// See https://developer.apple.com/documentation/foundation/nskeyvalueobservingoptions/nskeyvalueobservingoptionold?language=objc.
oldValue,
/// Indicates a notification should be sent to the observer immediately.
///
/// See https://developer.apple.com/documentation/foundation/nskeyvalueobservingoptions/nskeyvalueobservingoptioninitial?language=objc.
initialValue,
/// Whether separate notifications should be sent to the observer before and after each change.
///
/// See https://developer.apple.com/documentation/foundation/nskeyvalueobservingoptions/nskeyvalueobservingoptionprior?language=objc.
priorNotification,
}
/// The kinds of changes that can be observed.
///
/// Wraps [NSKeyValueChange](https://developer.apple.com/documentation/foundation/nskeyvaluechange?language=objc).
enum NSKeyValueChange {
/// Indicates that the value of the observed key path was set to a new value.
///
/// See https://developer.apple.com/documentation/foundation/nskeyvaluechange/nskeyvaluechangesetting?language=objc.
setting,
/// Indicates that an object has been inserted into the to-many relationship that is being observed.
///
/// See https://developer.apple.com/documentation/foundation/nskeyvaluechange/nskeyvaluechangeinsertion?language=objc.
insertion,
/// Indicates that an object has been removed from the to-many relationship that is being observed.
///
/// See https://developer.apple.com/documentation/foundation/nskeyvaluechange/nskeyvaluechangeremoval?language=objc.
removal,
/// Indicates that an object has been replaced in the to-many relationship that is being observed.
///
/// See https://developer.apple.com/documentation/foundation/nskeyvaluechange/nskeyvaluechangereplacement?language=objc.
replacement,
}
/// The keys that can appear in the change map.
///
/// Wraps [NSKeyValueChangeKey](https://developer.apple.com/documentation/foundation/nskeyvaluechangekey?language=objc).
enum NSKeyValueChangeKey {
/// Indicates changes made in a collection.
///
/// See https://developer.apple.com/documentation/foundation/nskeyvaluechangeindexeskey?language=objc.
indexes,
/// Indicates what sort of change has occurred.
///
/// See https://developer.apple.com/documentation/foundation/nskeyvaluechangekindkey?language=objc.
kind,
/// Indicates the new value for the attribute.
///
/// See https://developer.apple.com/documentation/foundation/nskeyvaluechangenewkey?language=objc.
newValue,
/// Indicates a notification is sent prior to a change.
///
/// See https://developer.apple.com/documentation/foundation/nskeyvaluechangenotificationispriorkey?language=objc.
notificationIsPrior,
/// Indicates the value of this key is the value before the attribute was changed.
///
/// See https://developer.apple.com/documentation/foundation/nskeyvaluechangeoldkey?language=objc.
oldValue,
}
/// The supported keys in a cookie attributes dictionary.
///
/// Wraps [NSHTTPCookiePropertyKey](https://developer.apple.com/documentation/foundation/nshttpcookiepropertykey).
enum NSHttpCookiePropertyKey {
/// A String object containing the comment for the cookie.
///
/// See https://developer.apple.com/documentation/foundation/nshttpcookiecomment.
comment,
/// A String object containing the comment URL for the cookie.
///
/// See https://developer.apple.com/documentation/foundation/nshttpcookiecommenturl.
commentUrl,
/// A String object stating whether the cookie should be discarded at the end of the session.
///
/// See https://developer.apple.com/documentation/foundation/nshttpcookiediscard.
discard,
/// A String object specifying the expiration date for the cookie.
///
/// See https://developer.apple.com/documentation/foundation/nshttpcookiedomain.
domain,
/// A String object specifying the expiration date for the cookie.
///
/// See https://developer.apple.com/documentation/foundation/nshttpcookieexpires.
expires,
/// A String object containing an integer value stating how long in seconds the cookie should be kept, at most.
///
/// See https://developer.apple.com/documentation/foundation/nshttpcookiemaximumage.
maximumAge,
/// A String object containing the name of the cookie (required).
///
/// See https://developer.apple.com/documentation/foundation/nshttpcookiename.
name,
/// A String object containing the URL that set this cookie.
///
/// See https://developer.apple.com/documentation/foundation/nshttpcookieoriginurl.
originUrl,
/// A String object containing the path for the cookie.
///
/// See https://developer.apple.com/documentation/foundation/nshttpcookiepath.
path,
/// A String object containing comma-separated integer values specifying the ports for the cookie.
///
/// See https://developer.apple.com/documentation/foundation/nshttpcookieport.
port,
/// A String indicating the same-site policy for the cookie.
///
/// This is only supported on iOS version 13+. This value will be ignored on
/// versions < 13.
///
/// See https://developer.apple.com/documentation/foundation/nshttpcookiesamesitepolicy.
sameSitePolicy,
/// A String object indicating that the cookie should be transmitted only over secure channels.
///
/// See https://developer.apple.com/documentation/foundation/nshttpcookiesecure.
secure,
/// A String object containing the value of the cookie.
///
/// See https://developer.apple.com/documentation/foundation/nshttpcookievalue.
value,
/// A String object that specifies the version of the cookie.
///
/// See https://developer.apple.com/documentation/foundation/nshttpcookieversion.
version,
}
/// A URL load request that is independent of protocol or URL scheme.
///
/// Wraps [NSUrlRequest](https://developer.apple.com/documentation/foundation/nsurlrequest?language=objc).
@immutable
class NSUrlRequest {
/// Constructs an [NSUrlRequest].
const NSUrlRequest({
required this.url,
this.httpMethod,
this.httpBody,
this.allHttpHeaderFields = const <String, String>{},
});
/// The URL being requested.
final String url;
/// The HTTP request method.
///
/// The default HTTP method is βGETβ.
final String? httpMethod;
/// Data sent as the message body of a request, as in an HTTP POST request.
final Uint8List? httpBody;
/// All of the HTTP header fields for a request.
final Map<String, String> allHttpHeaderFields;
}
/// Information about an error condition.
///
/// Wraps [NSError](https://developer.apple.com/documentation/foundation/nserror?language=objc).
@immutable
class NSError {
/// Constructs an [NSError].
const NSError({
required this.code,
required this.domain,
required this.localizedDescription,
});
/// The error code.
///
/// Note that errors are domain-specific.
final int code;
/// A string containing the error domain.
final String domain;
/// A string containing the localized description of the error.
final String localizedDescription;
}
/// A representation of an HTTP cookie.
///
/// Wraps [NSHTTPCookie](https://developer.apple.com/documentation/foundation/nshttpcookie).
@immutable
class NSHttpCookie {
/// Initializes an HTTP cookie object using the provided properties.
const NSHttpCookie.withProperties(this.properties);
/// Properties of the new cookie object.
final Map<NSHttpCookiePropertyKey, Object> properties;
}
/// The root class of most Objective-C class hierarchies.
@immutable
class NSObject with Copyable {
/// Constructs a [NSObject] without creating the associated
/// Objective-C object.
///
/// This should only be used by subclasses created by this library or to
/// create copies.
NSObject.detached({
this.observeValue,
BinaryMessenger? binaryMessenger,
InstanceManager? instanceManager,
}) : _api = NSObjectHostApiImpl(
binaryMessenger: binaryMessenger,
instanceManager: instanceManager,
) {
// Ensures FlutterApis for the Foundation library are set up.
FoundationFlutterApis.instance.ensureSetUp();
}
/// Release the reference to the Objective-C object.
static void dispose(NSObject instance) {
instance._api.instanceManager.removeWeakReference(instance);
}
/// Global instance of [InstanceManager].
static final InstanceManager globalInstanceManager =
InstanceManager(onWeakReferenceRemoved: (int instanceId) {
NSObjectHostApiImpl().dispose(instanceId);
});
final NSObjectHostApiImpl _api;
/// Informs the observing object when the value at the specified key path has
/// changed.
///
/// {@template webview_flutter_wkwebview.foundation.callbacks}
/// For the associated Objective-C object to be automatically garbage
/// collected, it is required that this Function doesn't contain a strong
/// reference to the encapsulating class instance. Consider using
/// `WeakReference` when referencing an object not received as a parameter.
/// Otherwise, use [NSObject.dispose] to release the associated Objective-C
/// object manually.
///
/// See [withWeakRefenceTo].
/// {@endtemplate}
final void Function(
String keyPath,
NSObject object,
Map<NSKeyValueChangeKey, Object?> change,
)? observeValue;
/// Registers the observer object to receive KVO notifications.
Future<void> addObserver(
NSObject observer, {
required String keyPath,
required Set<NSKeyValueObservingOptions> options,
}) {
assert(options.isNotEmpty);
return _api.addObserverForInstances(
this,
observer,
keyPath,
options,
);
}
/// Stops the observer object from receiving change notifications for the property.
Future<void> removeObserver(NSObject observer, {required String keyPath}) {
return _api.removeObserverForInstances(this, observer, keyPath);
}
@override
NSObject copy() {
return NSObject.detached(
observeValue: observeValue,
binaryMessenger: _api.binaryMessenger,
instanceManager: _api.instanceManager,
);
}
}
| plugins/packages/webview_flutter/webview_flutter_wkwebview/lib/src/foundation/foundation.dart/0 | {
"file_path": "plugins/packages/webview_flutter/webview_flutter_wkwebview/lib/src/foundation/foundation.dart",
"repo_id": "plugins",
"token_count": 3224
} | 1,179 |
name: webview_flutter_wkwebview
description: A Flutter plugin that provides a WebView widget based on Apple's WKWebView control.
repository: https://github.com/flutter/plugins/tree/main/packages/webview_flutter/webview_flutter_wkwebview
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+webview%22
version: 3.1.0
environment:
sdk: ">=2.17.0 <3.0.0"
flutter: ">=3.0.0"
flutter:
plugin:
implements: webview_flutter
platforms:
ios:
pluginClass: FLTWebViewFlutterPlugin
dartPluginClass: WebKitWebViewPlatform
dependencies:
flutter:
sdk: flutter
path: ^1.8.0
webview_flutter_platform_interface: ^2.0.0
dev_dependencies:
build_runner: ^2.1.5
flutter_driver:
sdk: flutter
flutter_test:
sdk: flutter
mockito: ^5.3.2
pigeon: ^4.2.13
| plugins/packages/webview_flutter/webview_flutter_wkwebview/pubspec.yaml/0 | {
"file_path": "plugins/packages/webview_flutter/webview_flutter_wkwebview/pubspec.yaml",
"repo_id": "plugins",
"token_count": 356
} | 1,180 |
// Mocks generated by Mockito 5.3.2 from annotations
// in webview_flutter_wkwebview/test/webkit_webview_controller_test.dart.
// Do not manually edit this file.
// ignore_for_file: no_leading_underscores_for_library_prefixes
import 'dart:async' as _i5;
import 'dart:math' as _i2;
import 'dart:ui' as _i6;
import 'package:mockito/mockito.dart' as _i1;
import 'package:webview_flutter_wkwebview/src/foundation/foundation.dart'
as _i7;
import 'package:webview_flutter_wkwebview/src/ui_kit/ui_kit.dart' as _i3;
import 'package:webview_flutter_wkwebview/src/web_kit/web_kit.dart' as _i4;
// ignore_for_file: type=lint
// ignore_for_file: avoid_redundant_argument_values
// ignore_for_file: avoid_setters_without_getters
// ignore_for_file: comment_references
// ignore_for_file: implementation_imports
// ignore_for_file: invalid_use_of_visible_for_testing_member
// ignore_for_file: prefer_const_constructors
// ignore_for_file: unnecessary_parenthesis
// ignore_for_file: camel_case_types
// ignore_for_file: subtype_of_sealed_class
class _FakePoint_0<T extends num> extends _i1.SmartFake
implements _i2.Point<T> {
_FakePoint_0(
Object parent,
Invocation parentInvocation,
) : super(
parent,
parentInvocation,
);
}
class _FakeUIScrollView_1 extends _i1.SmartFake implements _i3.UIScrollView {
_FakeUIScrollView_1(
Object parent,
Invocation parentInvocation,
) : super(
parent,
parentInvocation,
);
}
class _FakeWKPreferences_2 extends _i1.SmartFake implements _i4.WKPreferences {
_FakeWKPreferences_2(
Object parent,
Invocation parentInvocation,
) : super(
parent,
parentInvocation,
);
}
class _FakeWKUserContentController_3 extends _i1.SmartFake
implements _i4.WKUserContentController {
_FakeWKUserContentController_3(
Object parent,
Invocation parentInvocation,
) : super(
parent,
parentInvocation,
);
}
class _FakeWKHttpCookieStore_4 extends _i1.SmartFake
implements _i4.WKHttpCookieStore {
_FakeWKHttpCookieStore_4(
Object parent,
Invocation parentInvocation,
) : super(
parent,
parentInvocation,
);
}
class _FakeWKWebsiteDataStore_5 extends _i1.SmartFake
implements _i4.WKWebsiteDataStore {
_FakeWKWebsiteDataStore_5(
Object parent,
Invocation parentInvocation,
) : super(
parent,
parentInvocation,
);
}
class _FakeWKWebViewConfiguration_6 extends _i1.SmartFake
implements _i4.WKWebViewConfiguration {
_FakeWKWebViewConfiguration_6(
Object parent,
Invocation parentInvocation,
) : super(
parent,
parentInvocation,
);
}
class _FakeWKWebView_7 extends _i1.SmartFake implements _i4.WKWebView {
_FakeWKWebView_7(
Object parent,
Invocation parentInvocation,
) : super(
parent,
parentInvocation,
);
}
/// A class which mocks [UIScrollView].
///
/// See the documentation for Mockito's code generation for more information.
// ignore: must_be_immutable
class MockUIScrollView extends _i1.Mock implements _i3.UIScrollView {
MockUIScrollView() {
_i1.throwOnMissingStub(this);
}
@override
_i5.Future<_i2.Point<double>> getContentOffset() => (super.noSuchMethod(
Invocation.method(
#getContentOffset,
[],
),
returnValue: _i5.Future<_i2.Point<double>>.value(_FakePoint_0<double>(
this,
Invocation.method(
#getContentOffset,
[],
),
)),
) as _i5.Future<_i2.Point<double>>);
@override
_i5.Future<void> scrollBy(_i2.Point<double>? offset) => (super.noSuchMethod(
Invocation.method(
#scrollBy,
[offset],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> setContentOffset(_i2.Point<double>? offset) =>
(super.noSuchMethod(
Invocation.method(
#setContentOffset,
[offset],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i3.UIScrollView copy() => (super.noSuchMethod(
Invocation.method(
#copy,
[],
),
returnValue: _FakeUIScrollView_1(
this,
Invocation.method(
#copy,
[],
),
),
) as _i3.UIScrollView);
@override
_i5.Future<void> setBackgroundColor(_i6.Color? color) => (super.noSuchMethod(
Invocation.method(
#setBackgroundColor,
[color],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> setOpaque(bool? opaque) => (super.noSuchMethod(
Invocation.method(
#setOpaque,
[opaque],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> addObserver(
_i7.NSObject? observer, {
required String? keyPath,
required Set<_i7.NSKeyValueObservingOptions>? options,
}) =>
(super.noSuchMethod(
Invocation.method(
#addObserver,
[observer],
{
#keyPath: keyPath,
#options: options,
},
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> removeObserver(
_i7.NSObject? observer, {
required String? keyPath,
}) =>
(super.noSuchMethod(
Invocation.method(
#removeObserver,
[observer],
{#keyPath: keyPath},
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
}
/// A class which mocks [WKPreferences].
///
/// See the documentation for Mockito's code generation for more information.
// ignore: must_be_immutable
class MockWKPreferences extends _i1.Mock implements _i4.WKPreferences {
MockWKPreferences() {
_i1.throwOnMissingStub(this);
}
@override
_i5.Future<void> setJavaScriptEnabled(bool? enabled) => (super.noSuchMethod(
Invocation.method(
#setJavaScriptEnabled,
[enabled],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i4.WKPreferences copy() => (super.noSuchMethod(
Invocation.method(
#copy,
[],
),
returnValue: _FakeWKPreferences_2(
this,
Invocation.method(
#copy,
[],
),
),
) as _i4.WKPreferences);
@override
_i5.Future<void> addObserver(
_i7.NSObject? observer, {
required String? keyPath,
required Set<_i7.NSKeyValueObservingOptions>? options,
}) =>
(super.noSuchMethod(
Invocation.method(
#addObserver,
[observer],
{
#keyPath: keyPath,
#options: options,
},
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> removeObserver(
_i7.NSObject? observer, {
required String? keyPath,
}) =>
(super.noSuchMethod(
Invocation.method(
#removeObserver,
[observer],
{#keyPath: keyPath},
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
}
/// A class which mocks [WKUserContentController].
///
/// See the documentation for Mockito's code generation for more information.
// ignore: must_be_immutable
class MockWKUserContentController extends _i1.Mock
implements _i4.WKUserContentController {
MockWKUserContentController() {
_i1.throwOnMissingStub(this);
}
@override
_i5.Future<void> addScriptMessageHandler(
_i4.WKScriptMessageHandler? handler,
String? name,
) =>
(super.noSuchMethod(
Invocation.method(
#addScriptMessageHandler,
[
handler,
name,
],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> removeScriptMessageHandler(String? name) =>
(super.noSuchMethod(
Invocation.method(
#removeScriptMessageHandler,
[name],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> removeAllScriptMessageHandlers() => (super.noSuchMethod(
Invocation.method(
#removeAllScriptMessageHandlers,
[],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> addUserScript(_i4.WKUserScript? userScript) =>
(super.noSuchMethod(
Invocation.method(
#addUserScript,
[userScript],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> removeAllUserScripts() => (super.noSuchMethod(
Invocation.method(
#removeAllUserScripts,
[],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i4.WKUserContentController copy() => (super.noSuchMethod(
Invocation.method(
#copy,
[],
),
returnValue: _FakeWKUserContentController_3(
this,
Invocation.method(
#copy,
[],
),
),
) as _i4.WKUserContentController);
@override
_i5.Future<void> addObserver(
_i7.NSObject? observer, {
required String? keyPath,
required Set<_i7.NSKeyValueObservingOptions>? options,
}) =>
(super.noSuchMethod(
Invocation.method(
#addObserver,
[observer],
{
#keyPath: keyPath,
#options: options,
},
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> removeObserver(
_i7.NSObject? observer, {
required String? keyPath,
}) =>
(super.noSuchMethod(
Invocation.method(
#removeObserver,
[observer],
{#keyPath: keyPath},
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
}
/// A class which mocks [WKWebsiteDataStore].
///
/// See the documentation for Mockito's code generation for more information.
// ignore: must_be_immutable
class MockWKWebsiteDataStore extends _i1.Mock
implements _i4.WKWebsiteDataStore {
MockWKWebsiteDataStore() {
_i1.throwOnMissingStub(this);
}
@override
_i4.WKHttpCookieStore get httpCookieStore => (super.noSuchMethod(
Invocation.getter(#httpCookieStore),
returnValue: _FakeWKHttpCookieStore_4(
this,
Invocation.getter(#httpCookieStore),
),
) as _i4.WKHttpCookieStore);
@override
_i5.Future<bool> removeDataOfTypes(
Set<_i4.WKWebsiteDataType>? dataTypes,
DateTime? since,
) =>
(super.noSuchMethod(
Invocation.method(
#removeDataOfTypes,
[
dataTypes,
since,
],
),
returnValue: _i5.Future<bool>.value(false),
) as _i5.Future<bool>);
@override
_i4.WKWebsiteDataStore copy() => (super.noSuchMethod(
Invocation.method(
#copy,
[],
),
returnValue: _FakeWKWebsiteDataStore_5(
this,
Invocation.method(
#copy,
[],
),
),
) as _i4.WKWebsiteDataStore);
@override
_i5.Future<void> addObserver(
_i7.NSObject? observer, {
required String? keyPath,
required Set<_i7.NSKeyValueObservingOptions>? options,
}) =>
(super.noSuchMethod(
Invocation.method(
#addObserver,
[observer],
{
#keyPath: keyPath,
#options: options,
},
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> removeObserver(
_i7.NSObject? observer, {
required String? keyPath,
}) =>
(super.noSuchMethod(
Invocation.method(
#removeObserver,
[observer],
{#keyPath: keyPath},
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
}
/// A class which mocks [WKWebView].
///
/// See the documentation for Mockito's code generation for more information.
// ignore: must_be_immutable
class MockWKWebView extends _i1.Mock implements _i4.WKWebView {
MockWKWebView() {
_i1.throwOnMissingStub(this);
}
@override
_i4.WKWebViewConfiguration get configuration => (super.noSuchMethod(
Invocation.getter(#configuration),
returnValue: _FakeWKWebViewConfiguration_6(
this,
Invocation.getter(#configuration),
),
) as _i4.WKWebViewConfiguration);
@override
_i3.UIScrollView get scrollView => (super.noSuchMethod(
Invocation.getter(#scrollView),
returnValue: _FakeUIScrollView_1(
this,
Invocation.getter(#scrollView),
),
) as _i3.UIScrollView);
@override
_i5.Future<void> setUIDelegate(_i4.WKUIDelegate? delegate) =>
(super.noSuchMethod(
Invocation.method(
#setUIDelegate,
[delegate],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> setNavigationDelegate(_i4.WKNavigationDelegate? delegate) =>
(super.noSuchMethod(
Invocation.method(
#setNavigationDelegate,
[delegate],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<String?> getUrl() => (super.noSuchMethod(
Invocation.method(
#getUrl,
[],
),
returnValue: _i5.Future<String?>.value(),
) as _i5.Future<String?>);
@override
_i5.Future<double> getEstimatedProgress() => (super.noSuchMethod(
Invocation.method(
#getEstimatedProgress,
[],
),
returnValue: _i5.Future<double>.value(0.0),
) as _i5.Future<double>);
@override
_i5.Future<void> loadRequest(_i7.NSUrlRequest? request) =>
(super.noSuchMethod(
Invocation.method(
#loadRequest,
[request],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> loadHtmlString(
String? string, {
String? baseUrl,
}) =>
(super.noSuchMethod(
Invocation.method(
#loadHtmlString,
[string],
{#baseUrl: baseUrl},
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> loadFileUrl(
String? url, {
required String? readAccessUrl,
}) =>
(super.noSuchMethod(
Invocation.method(
#loadFileUrl,
[url],
{#readAccessUrl: readAccessUrl},
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> loadFlutterAsset(String? key) => (super.noSuchMethod(
Invocation.method(
#loadFlutterAsset,
[key],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<bool> canGoBack() => (super.noSuchMethod(
Invocation.method(
#canGoBack,
[],
),
returnValue: _i5.Future<bool>.value(false),
) as _i5.Future<bool>);
@override
_i5.Future<bool> canGoForward() => (super.noSuchMethod(
Invocation.method(
#canGoForward,
[],
),
returnValue: _i5.Future<bool>.value(false),
) as _i5.Future<bool>);
@override
_i5.Future<void> goBack() => (super.noSuchMethod(
Invocation.method(
#goBack,
[],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> goForward() => (super.noSuchMethod(
Invocation.method(
#goForward,
[],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> reload() => (super.noSuchMethod(
Invocation.method(
#reload,
[],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<String?> getTitle() => (super.noSuchMethod(
Invocation.method(
#getTitle,
[],
),
returnValue: _i5.Future<String?>.value(),
) as _i5.Future<String?>);
@override
_i5.Future<void> setAllowsBackForwardNavigationGestures(bool? allow) =>
(super.noSuchMethod(
Invocation.method(
#setAllowsBackForwardNavigationGestures,
[allow],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> setCustomUserAgent(String? userAgent) => (super.noSuchMethod(
Invocation.method(
#setCustomUserAgent,
[userAgent],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<Object?> evaluateJavaScript(String? javaScriptString) =>
(super.noSuchMethod(
Invocation.method(
#evaluateJavaScript,
[javaScriptString],
),
returnValue: _i5.Future<Object?>.value(),
) as _i5.Future<Object?>);
@override
_i4.WKWebView copy() => (super.noSuchMethod(
Invocation.method(
#copy,
[],
),
returnValue: _FakeWKWebView_7(
this,
Invocation.method(
#copy,
[],
),
),
) as _i4.WKWebView);
@override
_i5.Future<void> setBackgroundColor(_i6.Color? color) => (super.noSuchMethod(
Invocation.method(
#setBackgroundColor,
[color],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> setOpaque(bool? opaque) => (super.noSuchMethod(
Invocation.method(
#setOpaque,
[opaque],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> addObserver(
_i7.NSObject? observer, {
required String? keyPath,
required Set<_i7.NSKeyValueObservingOptions>? options,
}) =>
(super.noSuchMethod(
Invocation.method(
#addObserver,
[observer],
{
#keyPath: keyPath,
#options: options,
},
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> removeObserver(
_i7.NSObject? observer, {
required String? keyPath,
}) =>
(super.noSuchMethod(
Invocation.method(
#removeObserver,
[observer],
{#keyPath: keyPath},
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
}
/// A class which mocks [WKWebViewConfiguration].
///
/// See the documentation for Mockito's code generation for more information.
// ignore: must_be_immutable
class MockWKWebViewConfiguration extends _i1.Mock
implements _i4.WKWebViewConfiguration {
MockWKWebViewConfiguration() {
_i1.throwOnMissingStub(this);
}
@override
_i4.WKUserContentController get userContentController => (super.noSuchMethod(
Invocation.getter(#userContentController),
returnValue: _FakeWKUserContentController_3(
this,
Invocation.getter(#userContentController),
),
) as _i4.WKUserContentController);
@override
_i4.WKPreferences get preferences => (super.noSuchMethod(
Invocation.getter(#preferences),
returnValue: _FakeWKPreferences_2(
this,
Invocation.getter(#preferences),
),
) as _i4.WKPreferences);
@override
_i4.WKWebsiteDataStore get websiteDataStore => (super.noSuchMethod(
Invocation.getter(#websiteDataStore),
returnValue: _FakeWKWebsiteDataStore_5(
this,
Invocation.getter(#websiteDataStore),
),
) as _i4.WKWebsiteDataStore);
@override
_i5.Future<void> setAllowsInlineMediaPlayback(bool? allow) =>
(super.noSuchMethod(
Invocation.method(
#setAllowsInlineMediaPlayback,
[allow],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> setMediaTypesRequiringUserActionForPlayback(
Set<_i4.WKAudiovisualMediaType>? types) =>
(super.noSuchMethod(
Invocation.method(
#setMediaTypesRequiringUserActionForPlayback,
[types],
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i4.WKWebViewConfiguration copy() => (super.noSuchMethod(
Invocation.method(
#copy,
[],
),
returnValue: _FakeWKWebViewConfiguration_6(
this,
Invocation.method(
#copy,
[],
),
),
) as _i4.WKWebViewConfiguration);
@override
_i5.Future<void> addObserver(
_i7.NSObject? observer, {
required String? keyPath,
required Set<_i7.NSKeyValueObservingOptions>? options,
}) =>
(super.noSuchMethod(
Invocation.method(
#addObserver,
[observer],
{
#keyPath: keyPath,
#options: options,
},
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
@override
_i5.Future<void> removeObserver(
_i7.NSObject? observer, {
required String? keyPath,
}) =>
(super.noSuchMethod(
Invocation.method(
#removeObserver,
[observer],
{#keyPath: keyPath},
),
returnValue: _i5.Future<void>.value(),
returnValueForMissingStub: _i5.Future<void>.value(),
) as _i5.Future<void>);
}
| plugins/packages/webview_flutter/webview_flutter_wkwebview/test/webkit_webview_controller_test.mocks.dart/0 | {
"file_path": "plugins/packages/webview_flutter/webview_flutter_wkwebview/test/webkit_webview_controller_test.mocks.dart",
"repo_id": "plugins",
"token_count": 11406
} | 1,181 |
#!/bin/bash
# Copyright 2013 The Flutter Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# This script may be run as:
# $ CHROME_DOWNLOAD_DIR=./whatever script/install_chromium.sh
set -e
set -x
# The target directory where chromium is going to be downloaded
: "${CHROME_DOWNLOAD_DIR:=/tmp/chromium}" # Default value for the CHROME_DOWNLOAD_DIR env.
# The build of Chromium used to test web functionality.
#
# Chromium builds can be located here: https://commondatastorage.googleapis.com/chromium-browser-snapshots/index.html?prefix=Linux_x64/
#
# Check: https://github.com/flutter/engine/blob/master/lib/web_ui/dev/browser_lock.yaml
: "${CHROMIUM_BUILD:=950363}" # Default value for the CHROMIUM_BUILD env.
# Convenience defaults for CHROME_EXECUTABLE and CHROMEDRIVER_EXECUTABLE. These
# two values should be set in the environment from CI, so this script can validate
# that it has completed downloading chrome and driver successfully (and the expected
# files are executable)
: "${CHROME_EXECUTABLE:=$CHROME_DOWNLOAD_DIR/chrome-linux/chrome}"
: "${CHROMEDRIVER_EXECUTABLE:=$CHROME_DOWNLOAD_DIR/chromedriver/chromedriver}"
# The correct ChromeDriver is distributed alongside the chromium build above, as
# `chromedriver_linux64.zip`, so no need to hardcode any extra info about it.
readonly DOWNLOAD_ROOT="https://www.googleapis.com/download/storage/v1/b/chromium-browser-snapshots/o/Linux_x64%2F${CHROMIUM_BUILD}%2F"
# Install Chromium.
mkdir "$CHROME_DOWNLOAD_DIR"
readonly CHROMIUM_ZIP_FILE="$CHROME_DOWNLOAD_DIR/chromium.zip"
wget --no-verbose "${DOWNLOAD_ROOT}chrome-linux.zip?alt=media" -O "$CHROMIUM_ZIP_FILE"
unzip -q "$CHROMIUM_ZIP_FILE" -d "$CHROME_DOWNLOAD_DIR/"
# Install ChromeDriver.
readonly DRIVER_ZIP_FILE="$CHROME_DOWNLOAD_DIR/chromedriver.zip"
wget --no-verbose "${DOWNLOAD_ROOT}chromedriver_linux64.zip?alt=media" -O "$DRIVER_ZIP_FILE"
unzip -q "$DRIVER_ZIP_FILE" -d "$CHROME_DOWNLOAD_DIR/"
# Rename CHROME_DOWNLOAD_DIR/chromedriver_linux64 to the expected CHROME_DOWNLOAD_DIR/chromedriver
mv -T "$CHROME_DOWNLOAD_DIR/chromedriver_linux64" "$CHROME_DOWNLOAD_DIR/chromedriver"
# Echo info at the end for ease of debugging.
#
# exports from this script cannot be used elsewhere in the .cirrus.yml file.
set +x
echo
echo "$CHROME_EXECUTABLE"
"$CHROME_EXECUTABLE" --version
echo "$CHROMEDRIVER_EXECUTABLE"
"$CHROMEDRIVER_EXECUTABLE" --version
echo
| plugins/script/install_chromium.sh/0 | {
"file_path": "plugins/script/install_chromium.sh",
"repo_id": "plugins",
"token_count": 850
} | 1,182 |
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="dev.flutter.example.androidView">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.FlutterViewIntegration">
<activity
android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest> | samples/add_to_app/android_view/android_view/app/src/main/AndroidManifest.xml/0 | {
"file_path": "samples/add_to_app/android_view/android_view/app/src/main/AndroidManifest.xml",
"repo_id": "samples",
"token_count": 361
} | 1,183 |
package dev.flutter.example.books
import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.Assert.*
/**
* Instrumented test, which will execute on an Android device.
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
@RunWith(AndroidJUnit4::class)
class MainActivityTest {
@Test
fun useAppContext() {
// Context of the app under test.
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
assertEquals("dev.flutter.example.books", appContext.packageName)
}
// The app should be hermetic (with offline books JSON) before adding
// more tests.
}
| samples/add_to_app/books/android_books/app/src/androidTest/java/dev/flutter/example/books/ExampleInstrumentedTest.kt/0 | {
"file_path": "samples/add_to_app/books/android_books/app/src/androidTest/java/dev/flutter/example/books/ExampleInstrumentedTest.kt",
"repo_id": "samples",
"token_count": 251
} | 1,184 |
// Copyright 2020 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import Flutter
import UIKit
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
lazy var engine: FlutterEngine = {
let result = FlutterEngine.init(name: "Books")
// This could be `run` earlier in the app to avoid the overhead of doing it the first time the
// engine is needed.
result.run()
return result
}()
func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
return true
}
func application(
_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession,
options: UIScene.ConnectionOptions
) -> UISceneConfiguration {
return UISceneConfiguration(
name: "Default Configuration", sessionRole: connectingSceneSession.role)
}
func application(
_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>
) {
}
}
| samples/add_to_app/books/ios_books/IosBooks/AppDelegate.swift/0 | {
"file_path": "samples/add_to_app/books/ios_books/IosBooks/AppDelegate.swift",
"repo_id": "samples",
"token_count": 346
} | 1,185 |
# plugin
Embeds a full screen Flutter instance that is using plugins into an existing iOS
or Android app.
## Description
These apps are similar to the samples in [`fullscreen`](../fullscreen), with the
following differences:
* They include the native code (Kotlin or Swift) required to initialize plugins
at Flutter engine creation time.
* Their Flutter view includes an additional button that opens the Flutter docs
in the mobile device's browser.
If you're interested in learning what additional steps an app needs to take in
order to use a Flutter module that relies on plugins, these projects can help.
## tl;dr
If you're just looking to get up and running quickly, these bash commands will
fetch packages and set up dependencies (note that the above commands assume
you're building for both iOS and Android, with both toolchains installed):
```bash
#!/bin/bash
set -e
cd flutter_module_using_plugin
flutter pub get
# For Android builds:
open -a "Android Studio" ../android_using_plugin # macOS only
# Or open the ../android_using_plugin folder in Android Studio for other platforms.
# For iOS builds:
cd ../ios_using_plugin
pod install
open IOSUsingPlugin.xcworkspace
```
## Requirements
* Flutter
* Android
* Android Studio
* iOS
* Xcode
* Cocoapods
## Questions/issues
See [add_to_app/README.md](../README.md) for further help.
| samples/add_to_app/plugin/README.md/0 | {
"file_path": "samples/add_to_app/plugin/README.md",
"repo_id": "samples",
"token_count": 379
} | 1,186 |
// Copyright 2019 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
class AnimatedBuilderDemo extends StatefulWidget {
const AnimatedBuilderDemo({super.key});
static const String routeName = 'basics/animated_builder';
@override
State<AnimatedBuilderDemo> createState() => _AnimatedBuilderDemoState();
}
class _AnimatedBuilderDemoState extends State<AnimatedBuilderDemo>
with SingleTickerProviderStateMixin {
static const Color beginColor = Colors.deepPurple;
static const Color endColor = Colors.deepOrange;
Duration duration = const Duration(milliseconds: 800);
late AnimationController controller;
late Animation<Color?> animation;
@override
void initState() {
super.initState();
controller = AnimationController(vsync: this, duration: duration);
animation =
ColorTween(begin: beginColor, end: endColor).animate(controller);
}
@override
void dispose() {
controller.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('AnimatedBuilder'),
),
body: Center(
// AnimatedBuilder handles listening to a given animation and calling the builder
// whenever the value of the animation change. This can be useful when a Widget
// tree contains some animated and non-animated elements, as only the subtree
// created by the builder needs to be re-built when the animation changes.
child: AnimatedBuilder(
animation: animation,
builder: (context, child) {
return ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: animation.value,
),
child: child,
onPressed: () {
switch (controller.status) {
case AnimationStatus.completed:
controller.reverse();
default:
controller.forward();
}
},
);
},
// AnimatedBuilder can also accept a pre-built child Widget which is useful
// if there is a non-animated Widget contained within the animated widget.
// This can improve performance since this widget doesn't need to be rebuilt
// when the animation changes.
child: const Text(
'Change Color',
style: TextStyle(color: Colors.white),
),
),
),
);
}
}
| samples/animations/lib/src/basics/animated_builder.dart/0 | {
"file_path": "samples/animations/lib/src/basics/animated_builder.dart",
"repo_id": "samples",
"token_count": 1004
} | 1,187 |
// Copyright 2023 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:flutter_animate/flutter_animate.dart';
// Demonstrating the `flutter_animate` package
class FlutterAnimateDemo extends StatelessWidget {
static const String routeName = 'misc/flutter_animate';
const FlutterAnimateDemo({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Flutter Animate Demo'),
),
body: Center(
child: Padding(
padding: const EdgeInsets.all(16),
child: Text(
"Hello Flutter Animate",
style: Theme.of(context).textTheme.headlineLarge,
)
.animate(
onPlay: (controller) => controller.repeat(),
)
.then(delay: 250.ms)
.fadeIn(duration: 500.ms)
.then(delay: 250.ms)
.shimmer(duration: 400.ms)
.then(delay: 250.ms)
.slide()
.then(delay: 250.ms)
.blur(duration: 500.ms)
.then(delay: 100.ms),
),
),
);
}
}
| samples/animations/lib/src/misc/flutter_animate.dart/0 | {
"file_path": "samples/animations/lib/src/misc/flutter_animate.dart",
"repo_id": "samples",
"token_count": 600
} | 1,188 |
// Copyright 2020 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:animations/src/misc/card_swipe.dart';
import 'package:flutter/material.dart' hide Card;
import 'package:flutter_test/flutter_test.dart';
Widget createCardSwipeScreen() => const MaterialApp(
home: CardSwipeDemo(),
);
void main() {
group('Card Swipe Tests', () {
testWidgets('One card swiped out', (tester) async {
await tester.pumpWidget(createCardSwipeScreen());
// Get the total number of cards available.
var totalCards = tester.widgetList(find.byType(Card)).length;
// Ensure card is visible.
await tester.ensureVisible(find.byType(Card).last);
// Swipe out one card.
await tester.drag(find.byType(Card).last, const Offset(100.0, 0.0));
await tester.pumpAndSettle();
// Check if removed properly.
expect(tester.widgetList(find.byType(Card)).length, lessThan(totalCards));
});
testWidgets('All cards swiped out', (tester) async {
await tester.pumpWidget(createCardSwipeScreen());
// Get the total number of cards availabe.
var totalCards = tester.widgetList(find.byType(Card)).length;
// Swipe out all cards.
for (var i = 0; i < totalCards; i++) {
// Swipe out one by one.
await tester.drag(find.byType(Card).last, const Offset(100.0, 0.0));
await tester.pumpAndSettle();
}
// Check if any card is remaining.
expect(find.byType(Card), findsNothing);
});
testWidgets('Stack refilled with cards', (tester) async {
await tester.pumpWidget(createCardSwipeScreen());
// Get the total number of cards availabe.
var totalCards = tester.widgetList(find.byType(Card)).length;
// Swipe out one card.
await tester.drag(find.byType(Card).last, const Offset(100.0, 0.0));
await tester.pumpAndSettle();
// Tap the Refill button.
await tester.tap(find.byType(ElevatedButton));
await tester.pumpAndSettle();
// Check if the entire stack is refilled.
expect(find.byType(Card), findsNWidgets(totalCards));
});
});
}
| samples/animations/test/misc/card_swipe_test.dart/0 | {
"file_path": "samples/animations/test/misc/card_swipe_test.dart",
"repo_id": "samples",
"token_count": 854
} | 1,189 |
// Copyright 2022 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:io' show Directory;
import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
import 'package:path/path.dart' as path;
import 'package:path_provider/path_provider.dart' as path_provider;
import 'package:shared_preferences/shared_preferences.dart';
import 'package:uuid/uuid.dart' as uuid;
import 'simple_database.dart';
///////////////////////////////////////////////////////////////////////////////
// This is the UI which will present the contents of the [SimpleDatabase]. To
// see where Background Isolate Channels are used see simple_database.dart.
///////////////////////////////////////////////////////////////////////////////
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Background Isolate Channels',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Background Isolate Channels'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() {
return _MyHomePageState();
}
}
class _MyHomePageState extends State<MyHomePage> {
/// The database that is running on a background [Isolate]. This is nullable
/// because acquiring a [SimpleDatabase] is an asynchronous operation. This
/// value is `null` until the database is initialized.
SimpleDatabase? _database;
/// Local cache of the query results returned by the [SimpleDatabase] for the
/// UI to render from. It is nullable since querying the results is
/// asynchronous. The value is `null` before any result has been received.
List<String>? _entries;
/// What is searched for in the [SimpleDatabase].
String _query = '';
@override
void initState() {
// Write the value to [SharedPreferences] which will get read on the
// [SimpleDatabase]'s isolate. For this example the value is always true
// just for demonstration purposes.
final Future<void> sharedPreferencesSet = SharedPreferences.getInstance()
.then(
(sharedPreferences) => sharedPreferences.setBool('isDebug', true));
final Future<Directory> tempDirFuture =
path_provider.getTemporaryDirectory();
// Wait until the [SharedPreferences] value is set and the temporary
// directory is received before opening the database. If
// [sharedPreferencesSet] does not happen before opening the
// [SimpleDatabase] there has to be a way to refresh
// [_SimpleDatabaseServer]'s [SharedPreferences] cached values.
Future.wait([sharedPreferencesSet, tempDirFuture]).then((values) {
final Directory? tempDir = values[1] as Directory?;
final String dbPath = path.join(tempDir!.path, 'database.db');
SimpleDatabase.open(dbPath).then((database) {
setState(() {
_database = database;
});
_refresh();
});
});
super.initState();
}
@override
void dispose() {
_database?.stop();
super.dispose();
}
/// Performs a find on [SimpleDatabase] with [query] and updates the listed
/// contents.
void _refresh({String? query}) {
if (query != null) {
_query = query;
}
_database!.find(_query).toList().then((entries) {
setState(() {
_entries = entries;
});
});
}
/// Adds a UUID and a timestamp to the [SimpleDatabase].
void _addDate() {
final DateTime now = DateTime.now();
final DateFormat formatter =
DateFormat('EEEE MMMM d, HH:mm:ss\n${const uuid.Uuid().v4()}');
final String formatted = formatter.format(now);
_database!.addEntry(formatted).then((_) => _refresh());
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
bottom: PreferredSize(
preferredSize: const Size.fromHeight(kToolbarHeight),
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 8.0),
child: SearchBar(
hintText: 'Search',
onChanged:
_database == null ? null : (query) => _refresh(query: query),
trailing: const [Icon(Icons.search), SizedBox(width: 8)],
),
),
),
),
body: ListView.builder(
itemBuilder: (context, index) {
return ListTile(title: Text(_entries![index]));
},
itemCount: _entries?.length ?? 0,
),
floatingActionButton: FloatingActionButton(
onPressed: _database == null ? null : _addDate,
tooltip: 'Add',
child: const Icon(Icons.add),
),
);
}
}
| samples/background_isolate_channels/lib/main.dart/0 | {
"file_path": "samples/background_isolate_channels/lib/main.dart",
"repo_id": "samples",
"token_count": 1749
} | 1,190 |
#include "Generated.xcconfig"
| samples/code_sharing/client/ios/Flutter/Release.xcconfig/0 | {
"file_path": "samples/code_sharing/client/ios/Flutter/Release.xcconfig",
"repo_id": "samples",
"token_count": 12
} | 1,191 |
#include "ephemeral/Flutter-Generated.xcconfig"
| samples/code_sharing/client/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "samples/code_sharing/client/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "samples",
"token_count": 19
} | 1,192 |
<!--
This README describes the package. If you publish this package to pub.dev,
this README's contents appear on the landing page for your package.
For information about how to write a good package README, see the guide for
[writing package pages](https://dart.dev/guides/libraries/writing-package-pages).
For general information about developing packages, see the Dart guide for
[creating packages](https://dart.dev/guides/libraries/create-library-packages)
and the Flutter guide for
[developing packages and plugins](https://flutter.dev/developing-packages).
-->
TODO: Put a short description of the package here that helps potential users
know whether this package might be useful for them.
## Features
TODO: List what your package can do. Maybe include images, gifs, or videos.
## Getting started
TODO: List prerequisites and provide or point to information on how to
start using the package.
## Usage
TODO: Include short and useful examples for package users. Add longer examples
to `/example` folder.
```dart
const like = 'sample';
```
## Additional information
TODO: Tell users more about the package: where to find more information, how to
contribute to the package, how to file issues, what response they can expect
from the package authors, and more.
| samples/code_sharing/shared/README.md/0 | {
"file_path": "samples/code_sharing/shared/README.md",
"repo_id": "samples",
"token_count": 336
} | 1,193 |
package com.example.context_menus
import io.flutter.embedding.android.FlutterActivity
class MainActivity: FlutterActivity() {
}
| samples/context_menus/android/app/src/main/kotlin/com/example/context_menus/MainActivity.kt/0 | {
"file_path": "samples/context_menus/android/app/src/main/kotlin/com/example/context_menus/MainActivity.kt",
"repo_id": "samples",
"token_count": 39
} | 1,194 |
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:url_launcher/url_launcher.dart';
import 'constants.dart';
import 'context_menu_region.dart';
import 'is_valid_email.dart';
import 'platform_selector.dart';
class FullPage extends StatelessWidget {
FullPage({
super.key,
required this.onChangedPlatform,
});
static const String route = 'full';
static const String title = 'Combined Example';
static const String subtitle =
'Combining several different types of custom menus.';
static const String url = '$kCodeUrl/full_page.dart';
final PlatformCallback onChangedPlatform;
final TextEditingController _controller = TextEditingController(
text: 'Custom menus everywhere. [email protected]',
);
DialogRoute _showDialog(BuildContext context, String message) {
return DialogRoute<void>(
context: context,
builder: (context) => AlertDialog(title: Text(message)),
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text(FullPage.title),
actions: <Widget>[
PlatformSelector(
onChangedPlatform: onChangedPlatform,
),
IconButton(
icon: const Icon(Icons.code),
onPressed: () async {
if (!await launchUrl(Uri.parse(url))) {
throw 'Could not launch $url';
}
},
),
],
),
body: ContextMenuRegion(
contextMenuBuilder: (context, offset) {
return AdaptiveTextSelectionToolbar.buttonItems(
anchors: TextSelectionToolbarAnchors(
primaryAnchor: offset,
),
buttonItems: <ContextMenuButtonItem>[
ContextMenuButtonItem(
onPressed: () {
ContextMenuController.removeAny();
Navigator.of(context).pop();
},
label: 'Back',
),
],
);
},
child: Center(
child: SizedBox(
width: 400.0,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text(
'This example simply shows how many of the previous examples can be combined in a single app.',
),
const SizedBox(
height: 60.0,
),
ContextMenuRegion(
contextMenuBuilder: (context, offset) {
return AdaptiveTextSelectionToolbar.buttonItems(
anchors: TextSelectionToolbarAnchors(
primaryAnchor: offset,
),
buttonItems: <ContextMenuButtonItem>[
ContextMenuButtonItem(
onPressed: () {
ContextMenuController.removeAny();
Navigator.of(context).push(_showDialog(
context, 'Image saved! (not really though)'));
},
label: 'Save',
),
],
);
},
child: const SizedBox(
width: 200.0,
height: 200.0,
child: FlutterLogo(),
),
),
Container(height: 20.0),
TextField(
controller: _controller,
contextMenuBuilder: (context, editableTextState) {
final TextEditingValue value =
editableTextState.textEditingValue;
final List<ContextMenuButtonItem> buttonItems =
editableTextState.contextMenuButtonItems;
if (isValidEmail(value.selection.textInside(value.text))) {
buttonItems.insert(
0,
ContextMenuButtonItem(
label: 'Send email',
onPressed: () {
ContextMenuController.removeAny();
Navigator.of(context).push(_showDialog(
context, 'You clicked send email'));
},
));
}
return AdaptiveTextSelectionToolbar(
anchors: editableTextState.contextMenuAnchors,
// Build the default buttons, but make them look crazy.
// Note that in a real project you may want to build
// different buttons depending on the platform.
children: buttonItems.map((buttonItem) {
return CupertinoButton(
borderRadius: null,
color: const Color(0xffaaaa00),
disabledColor: const Color(0xffaaaaff),
onPressed: buttonItem.onPressed,
padding: const EdgeInsets.all(10.0),
pressedOpacity: 0.7,
child: SizedBox(
width: 200.0,
child: Text(
CupertinoTextSelectionToolbarButton
.getButtonLabel(context, buttonItem),
),
),
);
}).toList(),
);
},
),
],
),
),
),
),
);
}
}
| samples/context_menus/lib/full_page.dart/0 | {
"file_path": "samples/context_menus/lib/full_page.dart",
"repo_id": "samples",
"token_count": 3264
} | 1,195 |
#include "Generated.xcconfig"
| samples/deeplink_store_example/ios/Flutter/Release.xcconfig/0 | {
"file_path": "samples/deeplink_store_example/ios/Flutter/Release.xcconfig",
"repo_id": "samples",
"token_count": 12
} | 1,196 |
// Copyright 2019 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:fluent_ui/fluent_ui.dart';
typedef PhotoSearchDialogCallback = void Function(String searchQuery);
class PhotoSearchDialog extends StatefulWidget {
const PhotoSearchDialog({required this.callback, super.key});
final PhotoSearchDialogCallback callback;
@override
State<PhotoSearchDialog> createState() => _PhotoSearchDialogState();
}
class _PhotoSearchDialogState extends State<PhotoSearchDialog> {
final _controller = TextEditingController();
bool _searchEnabled = false;
@override
void initState() {
super.initState();
_controller.addListener(() {
setState(() {
_searchEnabled = _controller.text.isNotEmpty;
});
});
}
@override
void dispose() {
_controller.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) => ContentDialog(
title: const Text('Photo Search'),
content: TextBox(
autofocus: true,
controller: _controller,
onSubmitted: (content) {
if (content.isNotEmpty) {
widget.callback(content);
Navigator.of(context).pop();
}
},
),
actions: [
FilledButton(
onPressed: _searchEnabled
? () {
widget.callback(_controller.text);
Navigator.of(context).pop();
}
: null,
child: const Text('Search'),
),
Button(
onPressed: () {
Navigator.of(context).pop();
},
child: const Text('Cancel'),
),
],
);
}
| samples/desktop_photo_search/fluent_ui/lib/src/widgets/photo_search_dialog.dart/0 | {
"file_path": "samples/desktop_photo_search/fluent_ui/lib/src/widgets/photo_search_dialog.dart",
"repo_id": "samples",
"token_count": 784
} | 1,197 |
rootProject.name = 'federated_plugin'
| samples/experimental/federated_plugin/federated_plugin/android/settings.gradle/0 | {
"file_path": "samples/experimental/federated_plugin/federated_plugin/android/settings.gradle",
"repo_id": "samples",
"token_count": 13
} | 1,198 |
// Copyright 2020 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:federated_plugin_example/main.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
group('federated plugin demo tests', () {
const batteryLevel = 45;
testWidgets('get current battery level from platform', (tester) async {
tester.binding.defaultBinaryMessenger.setMockMethodCallHandler(
const MethodChannel('battery'),
(call) async {
if (call.method == 'getBatteryLevel') {
return batteryLevel;
}
return 0;
},
);
await tester.pumpWidget(const MyApp());
// Tap button to retrieve current battery level from platform.
await tester.tap(find.byType(FilledButton));
await tester.pumpAndSettle();
expect(find.text('Battery Level: $batteryLevel'), findsOneWidget);
});
});
}
| samples/experimental/federated_plugin/federated_plugin/example/test/widget_test.dart/0 | {
"file_path": "samples/experimental/federated_plugin/federated_plugin/example/test/widget_test.dart",
"repo_id": "samples",
"token_count": 391
} | 1,199 |
// Copyright 2020 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:federated_plugin_platform_interface/federated_plugin_platform_interface.dart';
/// Returns the current battery level of device.
///
/// It uses [FederatedPluginInterface] interface to provide current battery level.
Future<int> getBatteryLevel() async {
return await FederatedPluginInterface.instance.getBatteryLevel();
}
| samples/experimental/federated_plugin/federated_plugin/lib/federated_plugin.dart/0 | {
"file_path": "samples/experimental/federated_plugin/federated_plugin/lib/federated_plugin.dart",
"repo_id": "samples",
"token_count": 139
} | 1,200 |
name: federated_plugin_platform_interface
description: A platform interface for federated_plugin.
version: 0.0.1
homepage:
environment:
sdk: ^3.2.0
dependencies:
flutter:
sdk: flutter
plugin_platform_interface: ^2.0.2
dev_dependencies:
analysis_defaults:
path: ../../../analysis_defaults
flutter_test:
sdk: flutter
| samples/experimental/federated_plugin/federated_plugin_platform_interface/pubspec.yaml/0 | {
"file_path": "samples/experimental/federated_plugin/federated_plugin_platform_interface/pubspec.yaml",
"repo_id": "samples",
"token_count": 127
} | 1,201 |
// Copyright 2021 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:equatable/equatable.dart';
import 'package:hive/hive.dart';
import 'package:json_annotation/json_annotation.dart';
part 'rule.g.dart';
@JsonSerializable()
@HiveType(typeId: 0)
class Rule extends Equatable {
@HiveField(0)
final String name;
@HiveField(1)
final String description;
@HiveField(2)
final String group;
@HiveField(3)
final String state;
@HiveField(4)
final List<String> incompatible;
@HiveField(5)
final List<String> sets;
@HiveField(6)
final String details;
const Rule({
required this.name,
required this.description,
required this.group,
required this.state,
required this.incompatible,
required this.sets,
required this.details,
});
factory Rule.fromJson(Map<String, dynamic> json) => _$RuleFromJson(json);
Map<String, dynamic> toJson() => _$RuleToJson(this);
@override
List<Object> get props => [name];
}
| samples/experimental/linting_tool/lib/model/rule.dart/0 | {
"file_path": "samples/experimental/linting_tool/lib/model/rule.dart",
"repo_id": "samples",
"token_count": 376
} | 1,202 |
// Copyright 2021 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:flutter_markdown/flutter_markdown.dart';
import 'package:linting_tool/model/editing_controller.dart';
import 'package:linting_tool/model/rule.dart';
import 'package:linting_tool/theme/app_theme.dart';
import 'package:linting_tool/theme/colors.dart';
import 'package:provider/provider.dart';
class SavedRuleTile extends StatefulWidget {
final Rule rule;
const SavedRuleTile({
required this.rule,
super.key,
});
@override
State<SavedRuleTile> createState() => _SavedRuleTileState();
}
class _SavedRuleTileState extends State<SavedRuleTile> {
var isExpanded = false;
var isSelected = false;
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
final textTheme = theme.textTheme;
final rule = widget.rule;
final incompatibleString =
rule.incompatible.isNotEmpty ? rule.incompatible.join(', ') : 'none';
final setsString = rule.sets.isNotEmpty ? rule.sets.join(', ') : 'none';
return Consumer<EditingController>(
builder: (context, editingController, child) {
return ExpansionTile(
collapsedBackgroundColor: AppColors.white50,
leading: editingController.isEditing
? Checkbox(
value: isSelected &&
editingController.selectedRules.contains(rule),
onChanged: (value) {
if (value!) {
editingController.selectRule(rule);
setState(() {
isSelected = value;
});
} else {
editingController.deselectRule(rule);
setState(() {
isSelected = value;
});
}
},
)
: null,
title: Text(
rule.name,
style: textTheme.titleMedium!.copyWith(
fontWeight: FontWeight.w700,
),
),
subtitle: Text(
rule.description,
style: textTheme.bodySmall!,
),
initiallyExpanded: isExpanded,
onExpansionChanged: (value) {
setState(() {
isExpanded = value;
});
},
expandedAlignment: Alignment.centerLeft,
childrenPadding: const EdgeInsets.symmetric(
horizontal: 16.0,
vertical: 8.0,
),
backgroundColor: AppColors.white50,
maintainState: true,
expandedCrossAxisAlignment: CrossAxisAlignment.start,
children: [
Text.rich(
TextSpan(
children: [
TextSpan(
text: 'Group:',
style: textTheme.titleSmall,
),
TextSpan(
text: ' ${rule.group}',
),
],
),
textAlign: TextAlign.left,
),
Text.rich(
TextSpan(
children: [
TextSpan(
text: 'State:',
style: textTheme.titleSmall,
),
TextSpan(
text: ' ${rule.state}',
),
],
),
textAlign: TextAlign.left,
),
Text.rich(
TextSpan(
children: [
TextSpan(
text: 'Incompatible:',
style: textTheme.titleSmall,
),
TextSpan(
text: ' $incompatibleString',
),
],
),
textAlign: TextAlign.left,
),
Text.rich(
TextSpan(
children: [
TextSpan(
text: 'Sets:',
style: textTheme.titleSmall,
),
TextSpan(
text: ' $setsString',
),
],
),
textAlign: TextAlign.left,
),
const SizedBox(
height: 16.0,
),
MarkdownBody(
data: rule.details,
selectable: true,
styleSheet: AppTheme.buildMarkDownTheme(theme),
),
const SizedBox(
height: 16.0,
),
],
);
},
);
}
}
| samples/experimental/linting_tool/lib/widgets/saved_rule_tile.dart/0 | {
"file_path": "samples/experimental/linting_tool/lib/widgets/saved_rule_tile.dart",
"repo_id": "samples",
"token_count": 2722
} | 1,203 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| samples/experimental/linting_tool/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "samples/experimental/linting_tool/macos/Runner/Configs/Release.xcconfig",
"repo_id": "samples",
"token_count": 32
} | 1,204 |
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion flutter.compileSdkVersion
ndkVersion '25.1.8937393'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.jni_demo"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
compileSdkVersion 33
minSdkVersion 30
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
buildTypes {
release {
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "androidx.health.connect:connect-client:1.0.0-alpha06"
}
| samples/experimental/pedometer/example/android/app/build.gradle/0 | {
"file_path": "samples/experimental/pedometer/example/android/app/build.gradle",
"repo_id": "samples",
"token_count": 851
} | 1,205 |
// Autogenerated by jnigen. DO NOT EDIT!
#include <stdint.h>
#include "jni.h"
#include "dartjni.h"
thread_local JNIEnv *jniEnv;
JniContext *jni;
JniContext *(*context_getter)(void);
JNIEnv *(*env_getter)(void);
void setJniGetters(JniContext *(*cg)(void),
JNIEnv *(*eg)(void)) {
context_getter = cg;
env_getter = eg;
}
// androidx.health.connect.client.HealthConnectClient$Companion
jclass _c_HealthConnectClient_Companion = NULL;
jmethodID _m_HealthConnectClient_Companion__isAvailable = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient_Companion__isAvailable(jobject self_,jobject context,jobject list) {
load_env();
load_class_global_ref(&_c_HealthConnectClient_Companion, "androidx/health/connect/client/HealthConnectClient$Companion");
if (_c_HealthConnectClient_Companion == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient_Companion,
&_m_HealthConnectClient_Companion__isAvailable, "isAvailable", "(Landroid/content/Context;Ljava/util/List;)Z");
if (_m_HealthConnectClient_Companion__isAvailable == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_HealthConnectClient_Companion__isAvailable, context, list);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_HealthConnectClient_Companion__getOrCreate = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient_Companion__getOrCreate(jobject self_,jobject context,jobject list) {
load_env();
load_class_global_ref(&_c_HealthConnectClient_Companion, "androidx/health/connect/client/HealthConnectClient$Companion");
if (_c_HealthConnectClient_Companion == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient_Companion,
&_m_HealthConnectClient_Companion__getOrCreate, "getOrCreate", "(Landroid/content/Context;Ljava/util/List;)Landroidx/health/connect/client/HealthConnectClient;");
if (_m_HealthConnectClient_Companion__getOrCreate == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_HealthConnectClient_Companion__getOrCreate, context, list);
return to_global_ref_result(_result);
}
jmethodID _m_HealthConnectClient_Companion__isAvailable1 = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient_Companion__isAvailable1(jobject self_,jobject context) {
load_env();
load_class_global_ref(&_c_HealthConnectClient_Companion, "androidx/health/connect/client/HealthConnectClient$Companion");
if (_c_HealthConnectClient_Companion == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient_Companion,
&_m_HealthConnectClient_Companion__isAvailable1, "isAvailable", "(Landroid/content/Context;)Z");
if (_m_HealthConnectClient_Companion__isAvailable1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_HealthConnectClient_Companion__isAvailable1, context);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_HealthConnectClient_Companion__getOrCreate1 = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient_Companion__getOrCreate1(jobject self_,jobject context) {
load_env();
load_class_global_ref(&_c_HealthConnectClient_Companion, "androidx/health/connect/client/HealthConnectClient$Companion");
if (_c_HealthConnectClient_Companion == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient_Companion,
&_m_HealthConnectClient_Companion__getOrCreate1, "getOrCreate", "(Landroid/content/Context;)Landroidx/health/connect/client/HealthConnectClient;");
if (_m_HealthConnectClient_Companion__getOrCreate1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_HealthConnectClient_Companion__getOrCreate1, context);
return to_global_ref_result(_result);
}
// androidx.health.connect.client.HealthConnectClient
jclass _c_HealthConnectClient = NULL;
jmethodID _m_HealthConnectClient__getPermissionController = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__getPermissionController(jobject self_) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient,
&_m_HealthConnectClient__getPermissionController, "getPermissionController", "()Landroidx/health/connect/client/PermissionController;");
if (_m_HealthConnectClient__getPermissionController == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_HealthConnectClient__getPermissionController);
return to_global_ref_result(_result);
}
jmethodID _m_HealthConnectClient__insertRecords = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__insertRecords(jobject self_,jobject list,jobject continuation) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient,
&_m_HealthConnectClient__insertRecords, "insertRecords", "(Ljava/util/List;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;");
if (_m_HealthConnectClient__insertRecords == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_HealthConnectClient__insertRecords, list, continuation);
return to_global_ref_result(_result);
}
jmethodID _m_HealthConnectClient__updateRecords = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__updateRecords(jobject self_,jobject list,jobject continuation) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient,
&_m_HealthConnectClient__updateRecords, "updateRecords", "(Ljava/util/List;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;");
if (_m_HealthConnectClient__updateRecords == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_HealthConnectClient__updateRecords, list, continuation);
return to_global_ref_result(_result);
}
jmethodID _m_HealthConnectClient__deleteRecords = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__deleteRecords(jobject self_,jobject kClass,jobject list,jobject list1,jobject continuation) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient,
&_m_HealthConnectClient__deleteRecords, "deleteRecords", "(Lkotlin/reflect/KClass;Ljava/util/List;Ljava/util/List;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;");
if (_m_HealthConnectClient__deleteRecords == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_HealthConnectClient__deleteRecords, kClass, list, list1, continuation);
return to_global_ref_result(_result);
}
jmethodID _m_HealthConnectClient__deleteRecords1 = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__deleteRecords1(jobject self_,jobject kClass,jobject timeRangeFilter,jobject continuation) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient,
&_m_HealthConnectClient__deleteRecords1, "deleteRecords", "(Lkotlin/reflect/KClass;Landroidx/health/connect/client/time/TimeRangeFilter;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;");
if (_m_HealthConnectClient__deleteRecords1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_HealthConnectClient__deleteRecords1, kClass, timeRangeFilter, continuation);
return to_global_ref_result(_result);
}
jmethodID _m_HealthConnectClient__readRecord = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__readRecord(jobject self_,jobject kClass,jobject string,jobject continuation) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient,
&_m_HealthConnectClient__readRecord, "readRecord", "(Lkotlin/reflect/KClass;Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;");
if (_m_HealthConnectClient__readRecord == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_HealthConnectClient__readRecord, kClass, string, continuation);
return to_global_ref_result(_result);
}
jmethodID _m_HealthConnectClient__readRecords = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__readRecords(jobject self_,jobject readRecordsRequest,jobject continuation) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient,
&_m_HealthConnectClient__readRecords, "readRecords", "(Landroidx/health/connect/client/request/ReadRecordsRequest;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;");
if (_m_HealthConnectClient__readRecords == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_HealthConnectClient__readRecords, readRecordsRequest, continuation);
return to_global_ref_result(_result);
}
jmethodID _m_HealthConnectClient__aggregate = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__aggregate(jobject self_,jobject aggregateRequest,jobject continuation) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient,
&_m_HealthConnectClient__aggregate, "aggregate", "(Landroidx/health/connect/client/request/AggregateRequest;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;");
if (_m_HealthConnectClient__aggregate == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_HealthConnectClient__aggregate, aggregateRequest, continuation);
return to_global_ref_result(_result);
}
jmethodID _m_HealthConnectClient__aggregateGroupByDuration = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__aggregateGroupByDuration(jobject self_,jobject aggregateGroupByDurationRequest,jobject continuation) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient,
&_m_HealthConnectClient__aggregateGroupByDuration, "aggregateGroupByDuration", "(Landroidx/health/connect/client/request/AggregateGroupByDurationRequest;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;");
if (_m_HealthConnectClient__aggregateGroupByDuration == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_HealthConnectClient__aggregateGroupByDuration, aggregateGroupByDurationRequest, continuation);
return to_global_ref_result(_result);
}
jmethodID _m_HealthConnectClient__aggregateGroupByPeriod = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__aggregateGroupByPeriod(jobject self_,jobject aggregateGroupByPeriodRequest,jobject continuation) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient,
&_m_HealthConnectClient__aggregateGroupByPeriod, "aggregateGroupByPeriod", "(Landroidx/health/connect/client/request/AggregateGroupByPeriodRequest;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;");
if (_m_HealthConnectClient__aggregateGroupByPeriod == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_HealthConnectClient__aggregateGroupByPeriod, aggregateGroupByPeriodRequest, continuation);
return to_global_ref_result(_result);
}
jmethodID _m_HealthConnectClient__getChangesToken = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__getChangesToken(jobject self_,jobject changesTokenRequest,jobject continuation) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient,
&_m_HealthConnectClient__getChangesToken, "getChangesToken", "(Landroidx/health/connect/client/request/ChangesTokenRequest;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;");
if (_m_HealthConnectClient__getChangesToken == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_HealthConnectClient__getChangesToken, changesTokenRequest, continuation);
return to_global_ref_result(_result);
}
jmethodID _m_HealthConnectClient__registerForDataNotifications = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__registerForDataNotifications(jobject self_,jobject string,jobject iterable,jobject continuation) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient,
&_m_HealthConnectClient__registerForDataNotifications, "registerForDataNotifications", "(Ljava/lang/String;Ljava/lang/Iterable;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;");
if (_m_HealthConnectClient__registerForDataNotifications == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_HealthConnectClient__registerForDataNotifications, string, iterable, continuation);
return to_global_ref_result(_result);
}
jmethodID _m_HealthConnectClient__unregisterFromDataNotifications = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__unregisterFromDataNotifications(jobject self_,jobject string,jobject continuation) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient,
&_m_HealthConnectClient__unregisterFromDataNotifications, "unregisterFromDataNotifications", "(Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;");
if (_m_HealthConnectClient__unregisterFromDataNotifications == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_HealthConnectClient__unregisterFromDataNotifications, string, continuation);
return to_global_ref_result(_result);
}
jmethodID _m_HealthConnectClient__getChanges = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__getChanges(jobject self_,jobject string,jobject continuation) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_HealthConnectClient,
&_m_HealthConnectClient__getChanges, "getChanges", "(Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;");
if (_m_HealthConnectClient__getChanges == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_HealthConnectClient__getChanges, string, continuation);
return to_global_ref_result(_result);
}
jmethodID _m_HealthConnectClient__isAvailable = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__isAvailable(jobject context,jobject list) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_HealthConnectClient,
&_m_HealthConnectClient__isAvailable, "isAvailable", "(Landroid/content/Context;Ljava/util/List;)Z");
if (_m_HealthConnectClient__isAvailable == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallStaticBooleanMethod(jniEnv, _c_HealthConnectClient, _m_HealthConnectClient__isAvailable, context, list);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_HealthConnectClient__getOrCreate = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__getOrCreate(jobject context,jobject list) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_HealthConnectClient,
&_m_HealthConnectClient__getOrCreate, "getOrCreate", "(Landroid/content/Context;Ljava/util/List;)Landroidx/health/connect/client/HealthConnectClient;");
if (_m_HealthConnectClient__getOrCreate == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_HealthConnectClient, _m_HealthConnectClient__getOrCreate, context, list);
return to_global_ref_result(_result);
}
jmethodID _m_HealthConnectClient__isAvailable1 = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__isAvailable1(jobject context) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_HealthConnectClient,
&_m_HealthConnectClient__isAvailable1, "isAvailable", "(Landroid/content/Context;)Z");
if (_m_HealthConnectClient__isAvailable1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallStaticBooleanMethod(jniEnv, _c_HealthConnectClient, _m_HealthConnectClient__isAvailable1, context);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_HealthConnectClient__getOrCreate1 = NULL;
FFI_PLUGIN_EXPORT
JniResult HealthConnectClient__getOrCreate1(jobject context) {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_HealthConnectClient,
&_m_HealthConnectClient__getOrCreate1, "getOrCreate", "(Landroid/content/Context;)Landroidx/health/connect/client/HealthConnectClient;");
if (_m_HealthConnectClient__getOrCreate1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_HealthConnectClient, _m_HealthConnectClient__getOrCreate1, context);
return to_global_ref_result(_result);
}
jfieldID _f_HealthConnectClient__Companion = NULL;
FFI_PLUGIN_EXPORT
JniResult get_HealthConnectClient__Companion() {
load_env();
load_class_global_ref(&_c_HealthConnectClient, "androidx/health/connect/client/HealthConnectClient");
if (_c_HealthConnectClient == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_HealthConnectClient, &_f_HealthConnectClient__Companion, "Companion",
"Landroidx/health/connect/client/HealthConnectClient$Companion;");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_HealthConnectClient, _f_HealthConnectClient__Companion);
return to_global_ref_result(_result);
}
// androidx.health.connect.client.PermissionController$Companion
jclass _c_PermissionController_Companion = NULL;
jmethodID _m_PermissionController_Companion__createRequestPermissionResultContract = NULL;
FFI_PLUGIN_EXPORT
JniResult PermissionController_Companion__createRequestPermissionResultContract(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_PermissionController_Companion, "androidx/health/connect/client/PermissionController$Companion");
if (_c_PermissionController_Companion == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_PermissionController_Companion,
&_m_PermissionController_Companion__createRequestPermissionResultContract, "createRequestPermissionResultContract", "(Ljava/lang/String;)Landroidx/activity/result/contract/ActivityResultContract;");
if (_m_PermissionController_Companion__createRequestPermissionResultContract == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_PermissionController_Companion__createRequestPermissionResultContract, string);
return to_global_ref_result(_result);
}
jmethodID _m_PermissionController_Companion__createRequestPermissionResultContract1 = NULL;
FFI_PLUGIN_EXPORT
JniResult PermissionController_Companion__createRequestPermissionResultContract1(jobject self_) {
load_env();
load_class_global_ref(&_c_PermissionController_Companion, "androidx/health/connect/client/PermissionController$Companion");
if (_c_PermissionController_Companion == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_PermissionController_Companion,
&_m_PermissionController_Companion__createRequestPermissionResultContract1, "createRequestPermissionResultContract", "()Landroidx/activity/result/contract/ActivityResultContract;");
if (_m_PermissionController_Companion__createRequestPermissionResultContract1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_PermissionController_Companion__createRequestPermissionResultContract1);
return to_global_ref_result(_result);
}
// androidx.health.connect.client.PermissionController
jclass _c_PermissionController = NULL;
jmethodID _m_PermissionController__getGrantedPermissions = NULL;
FFI_PLUGIN_EXPORT
JniResult PermissionController__getGrantedPermissions(jobject self_,jobject set,jobject continuation) {
load_env();
load_class_global_ref(&_c_PermissionController, "androidx/health/connect/client/PermissionController");
if (_c_PermissionController == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_PermissionController,
&_m_PermissionController__getGrantedPermissions, "getGrantedPermissions", "(Ljava/util/Set;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;");
if (_m_PermissionController__getGrantedPermissions == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_PermissionController__getGrantedPermissions, set, continuation);
return to_global_ref_result(_result);
}
jmethodID _m_PermissionController__revokeAllPermissions = NULL;
FFI_PLUGIN_EXPORT
JniResult PermissionController__revokeAllPermissions(jobject self_,jobject continuation) {
load_env();
load_class_global_ref(&_c_PermissionController, "androidx/health/connect/client/PermissionController");
if (_c_PermissionController == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_PermissionController,
&_m_PermissionController__revokeAllPermissions, "revokeAllPermissions", "(Lkotlin/coroutines/Continuation;)Ljava/lang/Object;");
if (_m_PermissionController__revokeAllPermissions == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_PermissionController__revokeAllPermissions, continuation);
return to_global_ref_result(_result);
}
jmethodID _m_PermissionController__createRequestPermissionResultContract = NULL;
FFI_PLUGIN_EXPORT
JniResult PermissionController__createRequestPermissionResultContract(jobject string) {
load_env();
load_class_global_ref(&_c_PermissionController, "androidx/health/connect/client/PermissionController");
if (_c_PermissionController == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_PermissionController,
&_m_PermissionController__createRequestPermissionResultContract, "createRequestPermissionResultContract", "(Ljava/lang/String;)Landroidx/activity/result/contract/ActivityResultContract;");
if (_m_PermissionController__createRequestPermissionResultContract == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_PermissionController, _m_PermissionController__createRequestPermissionResultContract, string);
return to_global_ref_result(_result);
}
jmethodID _m_PermissionController__createRequestPermissionResultContract1 = NULL;
FFI_PLUGIN_EXPORT
JniResult PermissionController__createRequestPermissionResultContract1() {
load_env();
load_class_global_ref(&_c_PermissionController, "androidx/health/connect/client/PermissionController");
if (_c_PermissionController == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_PermissionController,
&_m_PermissionController__createRequestPermissionResultContract1, "createRequestPermissionResultContract", "()Landroidx/activity/result/contract/ActivityResultContract;");
if (_m_PermissionController__createRequestPermissionResultContract1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_PermissionController, _m_PermissionController__createRequestPermissionResultContract1);
return to_global_ref_result(_result);
}
jfieldID _f_PermissionController__Companion = NULL;
FFI_PLUGIN_EXPORT
JniResult get_PermissionController__Companion() {
load_env();
load_class_global_ref(&_c_PermissionController, "androidx/health/connect/client/PermissionController");
if (_c_PermissionController == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_PermissionController, &_f_PermissionController__Companion, "Companion",
"Landroidx/health/connect/client/PermissionController$Companion;");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_PermissionController, _f_PermissionController__Companion);
return to_global_ref_result(_result);
}
// androidx.health.connect.client.records.StepsRecord$Companion
jclass _c_StepsRecord_Companion = NULL;
jmethodID _m_StepsRecord_Companion__new0 = NULL;
FFI_PLUGIN_EXPORT
JniResult StepsRecord_Companion__new0(jobject defaultConstructorMarker) {
load_env();
load_class_global_ref(&_c_StepsRecord_Companion, "androidx/health/connect/client/records/StepsRecord$Companion");
if (_c_StepsRecord_Companion == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_StepsRecord_Companion,
&_m_StepsRecord_Companion__new0, "<init>", "(Lkotlin/jvm/internal/DefaultConstructorMarker;)V");
if (_m_StepsRecord_Companion__new0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_StepsRecord_Companion, _m_StepsRecord_Companion__new0, defaultConstructorMarker);
return to_global_ref_result(_result);
}
// androidx.health.connect.client.records.StepsRecord
jclass _c_StepsRecord = NULL;
jmethodID _m_StepsRecord__new0 = NULL;
FFI_PLUGIN_EXPORT
JniResult StepsRecord__new0(int64_t j,jobject instant,jobject zoneOffset,jobject instant1,jobject zoneOffset1,jobject metadata) {
load_env();
load_class_global_ref(&_c_StepsRecord, "androidx/health/connect/client/records/StepsRecord");
if (_c_StepsRecord == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_StepsRecord,
&_m_StepsRecord__new0, "<init>", "(JLjava/time/Instant;Ljava/time/ZoneOffset;Ljava/time/Instant;Ljava/time/ZoneOffset;Landroidx/health/connect/client/records/metadata/Metadata;)V");
if (_m_StepsRecord__new0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_StepsRecord, _m_StepsRecord__new0, j, instant, zoneOffset, instant1, zoneOffset1, metadata);
return to_global_ref_result(_result);
}
jmethodID _m_StepsRecord__new1 = NULL;
FFI_PLUGIN_EXPORT
JniResult StepsRecord__new1(int64_t j,jobject instant,jobject zoneOffset,jobject instant1,jobject zoneOffset1,jobject metadata,int32_t i,jobject defaultConstructorMarker) {
load_env();
load_class_global_ref(&_c_StepsRecord, "androidx/health/connect/client/records/StepsRecord");
if (_c_StepsRecord == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_StepsRecord,
&_m_StepsRecord__new1, "<init>", "(JLjava/time/Instant;Ljava/time/ZoneOffset;Ljava/time/Instant;Ljava/time/ZoneOffset;Landroidx/health/connect/client/records/metadata/Metadata;ILkotlin/jvm/internal/DefaultConstructorMarker;)V");
if (_m_StepsRecord__new1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_StepsRecord, _m_StepsRecord__new1, j, instant, zoneOffset, instant1, zoneOffset1, metadata, i, defaultConstructorMarker);
return to_global_ref_result(_result);
}
jmethodID _m_StepsRecord__getCount = NULL;
FFI_PLUGIN_EXPORT
JniResult StepsRecord__getCount(jobject self_) {
load_env();
load_class_global_ref(&_c_StepsRecord, "androidx/health/connect/client/records/StepsRecord");
if (_c_StepsRecord == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_StepsRecord,
&_m_StepsRecord__getCount, "getCount", "()J");
if (_m_StepsRecord__getCount == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int64_t _result = (*jniEnv)->CallLongMethod(jniEnv, self_, _m_StepsRecord__getCount);
return (JniResult){.value = {.j = _result}, .exception = check_exception()};
}
jmethodID _m_StepsRecord__getStartTime = NULL;
FFI_PLUGIN_EXPORT
JniResult StepsRecord__getStartTime(jobject self_) {
load_env();
load_class_global_ref(&_c_StepsRecord, "androidx/health/connect/client/records/StepsRecord");
if (_c_StepsRecord == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_StepsRecord,
&_m_StepsRecord__getStartTime, "getStartTime", "()Ljava/time/Instant;");
if (_m_StepsRecord__getStartTime == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_StepsRecord__getStartTime);
return to_global_ref_result(_result);
}
jmethodID _m_StepsRecord__getStartZoneOffset = NULL;
FFI_PLUGIN_EXPORT
JniResult StepsRecord__getStartZoneOffset(jobject self_) {
load_env();
load_class_global_ref(&_c_StepsRecord, "androidx/health/connect/client/records/StepsRecord");
if (_c_StepsRecord == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_StepsRecord,
&_m_StepsRecord__getStartZoneOffset, "getStartZoneOffset", "()Ljava/time/ZoneOffset;");
if (_m_StepsRecord__getStartZoneOffset == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_StepsRecord__getStartZoneOffset);
return to_global_ref_result(_result);
}
jmethodID _m_StepsRecord__getEndTime = NULL;
FFI_PLUGIN_EXPORT
JniResult StepsRecord__getEndTime(jobject self_) {
load_env();
load_class_global_ref(&_c_StepsRecord, "androidx/health/connect/client/records/StepsRecord");
if (_c_StepsRecord == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_StepsRecord,
&_m_StepsRecord__getEndTime, "getEndTime", "()Ljava/time/Instant;");
if (_m_StepsRecord__getEndTime == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_StepsRecord__getEndTime);
return to_global_ref_result(_result);
}
jmethodID _m_StepsRecord__getEndZoneOffset = NULL;
FFI_PLUGIN_EXPORT
JniResult StepsRecord__getEndZoneOffset(jobject self_) {
load_env();
load_class_global_ref(&_c_StepsRecord, "androidx/health/connect/client/records/StepsRecord");
if (_c_StepsRecord == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_StepsRecord,
&_m_StepsRecord__getEndZoneOffset, "getEndZoneOffset", "()Ljava/time/ZoneOffset;");
if (_m_StepsRecord__getEndZoneOffset == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_StepsRecord__getEndZoneOffset);
return to_global_ref_result(_result);
}
jmethodID _m_StepsRecord__getMetadata = NULL;
FFI_PLUGIN_EXPORT
JniResult StepsRecord__getMetadata(jobject self_) {
load_env();
load_class_global_ref(&_c_StepsRecord, "androidx/health/connect/client/records/StepsRecord");
if (_c_StepsRecord == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_StepsRecord,
&_m_StepsRecord__getMetadata, "getMetadata", "()Landroidx/health/connect/client/records/metadata/Metadata;");
if (_m_StepsRecord__getMetadata == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_StepsRecord__getMetadata);
return to_global_ref_result(_result);
}
jmethodID _m_StepsRecord__equals1 = NULL;
FFI_PLUGIN_EXPORT
JniResult StepsRecord__equals1(jobject self_,jobject object) {
load_env();
load_class_global_ref(&_c_StepsRecord, "androidx/health/connect/client/records/StepsRecord");
if (_c_StepsRecord == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_StepsRecord,
&_m_StepsRecord__equals1, "equals", "(Ljava/lang/Object;)Z");
if (_m_StepsRecord__equals1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_StepsRecord__equals1, object);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_StepsRecord__hashCode1 = NULL;
FFI_PLUGIN_EXPORT
JniResult StepsRecord__hashCode1(jobject self_) {
load_env();
load_class_global_ref(&_c_StepsRecord, "androidx/health/connect/client/records/StepsRecord");
if (_c_StepsRecord == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_StepsRecord,
&_m_StepsRecord__hashCode1, "hashCode", "()I");
if (_m_StepsRecord__hashCode1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_StepsRecord__hashCode1);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jfieldID _f_StepsRecord__Companion = NULL;
FFI_PLUGIN_EXPORT
JniResult get_StepsRecord__Companion() {
load_env();
load_class_global_ref(&_c_StepsRecord, "androidx/health/connect/client/records/StepsRecord");
if (_c_StepsRecord == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_StepsRecord, &_f_StepsRecord__Companion, "Companion",
"Landroidx/health/connect/client/records/StepsRecord$Companion;");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_StepsRecord, _f_StepsRecord__Companion);
return to_global_ref_result(_result);
}
jfieldID _f_StepsRecord__COUNT_TOTAL = NULL;
FFI_PLUGIN_EXPORT
JniResult get_StepsRecord__COUNT_TOTAL() {
load_env();
load_class_global_ref(&_c_StepsRecord, "androidx/health/connect/client/records/StepsRecord");
if (_c_StepsRecord == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_StepsRecord, &_f_StepsRecord__COUNT_TOTAL, "COUNT_TOTAL",
"Landroidx/health/connect/client/aggregate/AggregateMetric;");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_StepsRecord, _f_StepsRecord__COUNT_TOTAL);
return to_global_ref_result(_result);
}
// androidx.health.connect.client.time.TimeRangeFilter$Companion
jclass _c_TimeRangeFilter_Companion = NULL;
jmethodID _m_TimeRangeFilter_Companion__between = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter_Companion__between(jobject self_,jobject instant,jobject instant1) {
load_env();
load_class_global_ref(&_c_TimeRangeFilter_Companion, "androidx/health/connect/client/time/TimeRangeFilter$Companion");
if (_c_TimeRangeFilter_Companion == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_TimeRangeFilter_Companion,
&_m_TimeRangeFilter_Companion__between, "between", "(Ljava/time/Instant;Ljava/time/Instant;)Landroidx/health/connect/client/time/TimeRangeFilter;");
if (_m_TimeRangeFilter_Companion__between == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_TimeRangeFilter_Companion__between, instant, instant1);
return to_global_ref_result(_result);
}
jmethodID _m_TimeRangeFilter_Companion__between1 = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter_Companion__between1(jobject self_,jobject localDateTime,jobject localDateTime1) {
load_env();
load_class_global_ref(&_c_TimeRangeFilter_Companion, "androidx/health/connect/client/time/TimeRangeFilter$Companion");
if (_c_TimeRangeFilter_Companion == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_TimeRangeFilter_Companion,
&_m_TimeRangeFilter_Companion__between1, "between", "(Ljava/time/LocalDateTime;Ljava/time/LocalDateTime;)Landroidx/health/connect/client/time/TimeRangeFilter;");
if (_m_TimeRangeFilter_Companion__between1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_TimeRangeFilter_Companion__between1, localDateTime, localDateTime1);
return to_global_ref_result(_result);
}
jmethodID _m_TimeRangeFilter_Companion__before = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter_Companion__before(jobject self_,jobject instant) {
load_env();
load_class_global_ref(&_c_TimeRangeFilter_Companion, "androidx/health/connect/client/time/TimeRangeFilter$Companion");
if (_c_TimeRangeFilter_Companion == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_TimeRangeFilter_Companion,
&_m_TimeRangeFilter_Companion__before, "before", "(Ljava/time/Instant;)Landroidx/health/connect/client/time/TimeRangeFilter;");
if (_m_TimeRangeFilter_Companion__before == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_TimeRangeFilter_Companion__before, instant);
return to_global_ref_result(_result);
}
jmethodID _m_TimeRangeFilter_Companion__before1 = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter_Companion__before1(jobject self_,jobject localDateTime) {
load_env();
load_class_global_ref(&_c_TimeRangeFilter_Companion, "androidx/health/connect/client/time/TimeRangeFilter$Companion");
if (_c_TimeRangeFilter_Companion == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_TimeRangeFilter_Companion,
&_m_TimeRangeFilter_Companion__before1, "before", "(Ljava/time/LocalDateTime;)Landroidx/health/connect/client/time/TimeRangeFilter;");
if (_m_TimeRangeFilter_Companion__before1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_TimeRangeFilter_Companion__before1, localDateTime);
return to_global_ref_result(_result);
}
jmethodID _m_TimeRangeFilter_Companion__after = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter_Companion__after(jobject self_,jobject instant) {
load_env();
load_class_global_ref(&_c_TimeRangeFilter_Companion, "androidx/health/connect/client/time/TimeRangeFilter$Companion");
if (_c_TimeRangeFilter_Companion == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_TimeRangeFilter_Companion,
&_m_TimeRangeFilter_Companion__after, "after", "(Ljava/time/Instant;)Landroidx/health/connect/client/time/TimeRangeFilter;");
if (_m_TimeRangeFilter_Companion__after == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_TimeRangeFilter_Companion__after, instant);
return to_global_ref_result(_result);
}
jmethodID _m_TimeRangeFilter_Companion__after1 = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter_Companion__after1(jobject self_,jobject localDateTime) {
load_env();
load_class_global_ref(&_c_TimeRangeFilter_Companion, "androidx/health/connect/client/time/TimeRangeFilter$Companion");
if (_c_TimeRangeFilter_Companion == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_TimeRangeFilter_Companion,
&_m_TimeRangeFilter_Companion__after1, "after", "(Ljava/time/LocalDateTime;)Landroidx/health/connect/client/time/TimeRangeFilter;");
if (_m_TimeRangeFilter_Companion__after1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_TimeRangeFilter_Companion__after1, localDateTime);
return to_global_ref_result(_result);
}
jmethodID _m_TimeRangeFilter_Companion__new0 = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter_Companion__new0(jobject defaultConstructorMarker) {
load_env();
load_class_global_ref(&_c_TimeRangeFilter_Companion, "androidx/health/connect/client/time/TimeRangeFilter$Companion");
if (_c_TimeRangeFilter_Companion == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_TimeRangeFilter_Companion,
&_m_TimeRangeFilter_Companion__new0, "<init>", "(Lkotlin/jvm/internal/DefaultConstructorMarker;)V");
if (_m_TimeRangeFilter_Companion__new0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_TimeRangeFilter_Companion, _m_TimeRangeFilter_Companion__new0, defaultConstructorMarker);
return to_global_ref_result(_result);
}
// androidx.health.connect.client.time.TimeRangeFilter
jclass _c_TimeRangeFilter = NULL;
jmethodID _m_TimeRangeFilter__new0 = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter__new0(jobject instant,jobject instant1,jobject localDateTime,jobject localDateTime1) {
load_env();
load_class_global_ref(&_c_TimeRangeFilter, "androidx/health/connect/client/time/TimeRangeFilter");
if (_c_TimeRangeFilter == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_TimeRangeFilter,
&_m_TimeRangeFilter__new0, "<init>", "(Ljava/time/Instant;Ljava/time/Instant;Ljava/time/LocalDateTime;Ljava/time/LocalDateTime;)V");
if (_m_TimeRangeFilter__new0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_TimeRangeFilter, _m_TimeRangeFilter__new0, instant, instant1, localDateTime, localDateTime1);
return to_global_ref_result(_result);
}
jmethodID _m_TimeRangeFilter__new1 = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter__new1(jobject instant,jobject instant1,jobject localDateTime,jobject localDateTime1,int32_t i,jobject defaultConstructorMarker) {
load_env();
load_class_global_ref(&_c_TimeRangeFilter, "androidx/health/connect/client/time/TimeRangeFilter");
if (_c_TimeRangeFilter == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_TimeRangeFilter,
&_m_TimeRangeFilter__new1, "<init>", "(Ljava/time/Instant;Ljava/time/Instant;Ljava/time/LocalDateTime;Ljava/time/LocalDateTime;ILkotlin/jvm/internal/DefaultConstructorMarker;)V");
if (_m_TimeRangeFilter__new1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_TimeRangeFilter, _m_TimeRangeFilter__new1, instant, instant1, localDateTime, localDateTime1, i, defaultConstructorMarker);
return to_global_ref_result(_result);
}
jmethodID _m_TimeRangeFilter__equals1 = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter__equals1(jobject self_,jobject object) {
load_env();
load_class_global_ref(&_c_TimeRangeFilter, "androidx/health/connect/client/time/TimeRangeFilter");
if (_c_TimeRangeFilter == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_TimeRangeFilter,
&_m_TimeRangeFilter__equals1, "equals", "(Ljava/lang/Object;)Z");
if (_m_TimeRangeFilter__equals1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_TimeRangeFilter__equals1, object);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_TimeRangeFilter__hashCode1 = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter__hashCode1(jobject self_) {
load_env();
load_class_global_ref(&_c_TimeRangeFilter, "androidx/health/connect/client/time/TimeRangeFilter");
if (_c_TimeRangeFilter == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_TimeRangeFilter,
&_m_TimeRangeFilter__hashCode1, "hashCode", "()I");
if (_m_TimeRangeFilter__hashCode1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_TimeRangeFilter__hashCode1);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_TimeRangeFilter__new2 = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter__new2() {
load_env();
load_class_global_ref(&_c_TimeRangeFilter, "androidx/health/connect/client/time/TimeRangeFilter");
if (_c_TimeRangeFilter == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_TimeRangeFilter,
&_m_TimeRangeFilter__new2, "<init>", "()V");
if (_m_TimeRangeFilter__new2 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_TimeRangeFilter, _m_TimeRangeFilter__new2);
return to_global_ref_result(_result);
}
jmethodID _m_TimeRangeFilter__between = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter__between(jobject instant,jobject instant1) {
load_env();
load_class_global_ref(&_c_TimeRangeFilter, "androidx/health/connect/client/time/TimeRangeFilter");
if (_c_TimeRangeFilter == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_TimeRangeFilter,
&_m_TimeRangeFilter__between, "between", "(Ljava/time/Instant;Ljava/time/Instant;)Landroidx/health/connect/client/time/TimeRangeFilter;");
if (_m_TimeRangeFilter__between == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_TimeRangeFilter, _m_TimeRangeFilter__between, instant, instant1);
return to_global_ref_result(_result);
}
jmethodID _m_TimeRangeFilter__between1 = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter__between1(jobject localDateTime,jobject localDateTime1) {
load_env();
load_class_global_ref(&_c_TimeRangeFilter, "androidx/health/connect/client/time/TimeRangeFilter");
if (_c_TimeRangeFilter == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_TimeRangeFilter,
&_m_TimeRangeFilter__between1, "between", "(Ljava/time/LocalDateTime;Ljava/time/LocalDateTime;)Landroidx/health/connect/client/time/TimeRangeFilter;");
if (_m_TimeRangeFilter__between1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_TimeRangeFilter, _m_TimeRangeFilter__between1, localDateTime, localDateTime1);
return to_global_ref_result(_result);
}
jmethodID _m_TimeRangeFilter__before = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter__before(jobject instant) {
load_env();
load_class_global_ref(&_c_TimeRangeFilter, "androidx/health/connect/client/time/TimeRangeFilter");
if (_c_TimeRangeFilter == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_TimeRangeFilter,
&_m_TimeRangeFilter__before, "before", "(Ljava/time/Instant;)Landroidx/health/connect/client/time/TimeRangeFilter;");
if (_m_TimeRangeFilter__before == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_TimeRangeFilter, _m_TimeRangeFilter__before, instant);
return to_global_ref_result(_result);
}
jmethodID _m_TimeRangeFilter__before1 = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter__before1(jobject localDateTime) {
load_env();
load_class_global_ref(&_c_TimeRangeFilter, "androidx/health/connect/client/time/TimeRangeFilter");
if (_c_TimeRangeFilter == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_TimeRangeFilter,
&_m_TimeRangeFilter__before1, "before", "(Ljava/time/LocalDateTime;)Landroidx/health/connect/client/time/TimeRangeFilter;");
if (_m_TimeRangeFilter__before1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_TimeRangeFilter, _m_TimeRangeFilter__before1, localDateTime);
return to_global_ref_result(_result);
}
jmethodID _m_TimeRangeFilter__after = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter__after(jobject instant) {
load_env();
load_class_global_ref(&_c_TimeRangeFilter, "androidx/health/connect/client/time/TimeRangeFilter");
if (_c_TimeRangeFilter == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_TimeRangeFilter,
&_m_TimeRangeFilter__after, "after", "(Ljava/time/Instant;)Landroidx/health/connect/client/time/TimeRangeFilter;");
if (_m_TimeRangeFilter__after == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_TimeRangeFilter, _m_TimeRangeFilter__after, instant);
return to_global_ref_result(_result);
}
jmethodID _m_TimeRangeFilter__after1 = NULL;
FFI_PLUGIN_EXPORT
JniResult TimeRangeFilter__after1(jobject localDateTime) {
load_env();
load_class_global_ref(&_c_TimeRangeFilter, "androidx/health/connect/client/time/TimeRangeFilter");
if (_c_TimeRangeFilter == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_TimeRangeFilter,
&_m_TimeRangeFilter__after1, "after", "(Ljava/time/LocalDateTime;)Landroidx/health/connect/client/time/TimeRangeFilter;");
if (_m_TimeRangeFilter__after1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_TimeRangeFilter, _m_TimeRangeFilter__after1, localDateTime);
return to_global_ref_result(_result);
}
jfieldID _f_TimeRangeFilter__Companion = NULL;
FFI_PLUGIN_EXPORT
JniResult get_TimeRangeFilter__Companion() {
load_env();
load_class_global_ref(&_c_TimeRangeFilter, "androidx/health/connect/client/time/TimeRangeFilter");
if (_c_TimeRangeFilter == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_TimeRangeFilter, &_f_TimeRangeFilter__Companion, "Companion",
"Landroidx/health/connect/client/time/TimeRangeFilter$Companion;");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_TimeRangeFilter, _f_TimeRangeFilter__Companion);
return to_global_ref_result(_result);
}
// android.content.Context
jclass _c_Context = NULL;
jmethodID _m_Context__new0 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__new0() {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__new0, "<init>", "()V");
if (_m_Context__new0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_Context, _m_Context__new0);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getAssets = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getAssets(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getAssets, "getAssets", "()Landroid/content/res/AssetManager;");
if (_m_Context__getAssets == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getAssets);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getResources = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getResources(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getResources, "getResources", "()Landroid/content/res/Resources;");
if (_m_Context__getResources == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getResources);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getPackageManager = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getPackageManager(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getPackageManager, "getPackageManager", "()Landroid/content/pm/PackageManager;");
if (_m_Context__getPackageManager == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getPackageManager);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getContentResolver = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getContentResolver(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getContentResolver, "getContentResolver", "()Landroid/content/ContentResolver;");
if (_m_Context__getContentResolver == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getContentResolver);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getMainLooper = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getMainLooper(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getMainLooper, "getMainLooper", "()Landroid/os/Looper;");
if (_m_Context__getMainLooper == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getMainLooper);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getMainExecutor = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getMainExecutor(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getMainExecutor, "getMainExecutor", "()Ljava/util/concurrent/Executor;");
if (_m_Context__getMainExecutor == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getMainExecutor);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getApplicationContext = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getApplicationContext(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getApplicationContext, "getApplicationContext", "()Landroid/content/Context;");
if (_m_Context__getApplicationContext == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getApplicationContext);
return to_global_ref_result(_result);
}
jmethodID _m_Context__registerComponentCallbacks = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__registerComponentCallbacks(jobject self_,jobject componentCallbacks) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__registerComponentCallbacks, "registerComponentCallbacks", "(Landroid/content/ComponentCallbacks;)V");
if (_m_Context__registerComponentCallbacks == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__registerComponentCallbacks, componentCallbacks);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__unregisterComponentCallbacks = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__unregisterComponentCallbacks(jobject self_,jobject componentCallbacks) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__unregisterComponentCallbacks, "unregisterComponentCallbacks", "(Landroid/content/ComponentCallbacks;)V");
if (_m_Context__unregisterComponentCallbacks == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__unregisterComponentCallbacks, componentCallbacks);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__getText = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getText(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getText, "getText", "(I)Ljava/lang/CharSequence;");
if (_m_Context__getText == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getText, i);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getString = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getString(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getString, "getString", "(I)Ljava/lang/String;");
if (_m_Context__getString == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getString, i);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getString1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getString1(jobject self_,int32_t i,jobject objects) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getString1, "getString", "(I[Ljava/lang/Object;)Ljava/lang/String;");
if (_m_Context__getString1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getString1, i, objects);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getColor = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getColor(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getColor, "getColor", "(I)I");
if (_m_Context__getColor == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Context__getColor, i);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Context__getDrawable = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getDrawable(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getDrawable, "getDrawable", "(I)Landroid/graphics/drawable/Drawable;");
if (_m_Context__getDrawable == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getDrawable, i);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getColorStateList = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getColorStateList(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getColorStateList, "getColorStateList", "(I)Landroid/content/res/ColorStateList;");
if (_m_Context__getColorStateList == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getColorStateList, i);
return to_global_ref_result(_result);
}
jmethodID _m_Context__setTheme = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__setTheme(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__setTheme, "setTheme", "(I)V");
if (_m_Context__setTheme == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__setTheme, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__getTheme = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getTheme(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getTheme, "getTheme", "()Landroid/content/res/Resources$Theme;");
if (_m_Context__getTheme == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getTheme);
return to_global_ref_result(_result);
}
jmethodID _m_Context__obtainStyledAttributes = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__obtainStyledAttributes(jobject self_,jobject is) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__obtainStyledAttributes, "obtainStyledAttributes", "([I)Landroid/content/res/TypedArray;");
if (_m_Context__obtainStyledAttributes == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__obtainStyledAttributes, is);
return to_global_ref_result(_result);
}
jmethodID _m_Context__obtainStyledAttributes1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__obtainStyledAttributes1(jobject self_,int32_t i,jobject is) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__obtainStyledAttributes1, "obtainStyledAttributes", "(I[I)Landroid/content/res/TypedArray;");
if (_m_Context__obtainStyledAttributes1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__obtainStyledAttributes1, i, is);
return to_global_ref_result(_result);
}
jmethodID _m_Context__obtainStyledAttributes2 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__obtainStyledAttributes2(jobject self_,jobject attributeSet,jobject is) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__obtainStyledAttributes2, "obtainStyledAttributes", "(Landroid/util/AttributeSet;[I)Landroid/content/res/TypedArray;");
if (_m_Context__obtainStyledAttributes2 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__obtainStyledAttributes2, attributeSet, is);
return to_global_ref_result(_result);
}
jmethodID _m_Context__obtainStyledAttributes3 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__obtainStyledAttributes3(jobject self_,jobject attributeSet,jobject is,int32_t i,int32_t i1) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__obtainStyledAttributes3, "obtainStyledAttributes", "(Landroid/util/AttributeSet;[III)Landroid/content/res/TypedArray;");
if (_m_Context__obtainStyledAttributes3 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__obtainStyledAttributes3, attributeSet, is, i, i1);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getClassLoader = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getClassLoader(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getClassLoader, "getClassLoader", "()Ljava/lang/ClassLoader;");
if (_m_Context__getClassLoader == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getClassLoader);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getPackageName = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getPackageName(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getPackageName, "getPackageName", "()Ljava/lang/String;");
if (_m_Context__getPackageName == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getPackageName);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getOpPackageName = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getOpPackageName(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getOpPackageName, "getOpPackageName", "()Ljava/lang/String;");
if (_m_Context__getOpPackageName == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getOpPackageName);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getAttributionTag = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getAttributionTag(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getAttributionTag, "getAttributionTag", "()Ljava/lang/String;");
if (_m_Context__getAttributionTag == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getAttributionTag);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getAttributionSource = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getAttributionSource(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getAttributionSource, "getAttributionSource", "()Landroid/content/AttributionSource;");
if (_m_Context__getAttributionSource == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getAttributionSource);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getParams = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getParams(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getParams, "getParams", "()Landroid/content/ContextParams;");
if (_m_Context__getParams == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getParams);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getApplicationInfo = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getApplicationInfo(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getApplicationInfo, "getApplicationInfo", "()Landroid/content/pm/ApplicationInfo;");
if (_m_Context__getApplicationInfo == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getApplicationInfo);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getPackageResourcePath = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getPackageResourcePath(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getPackageResourcePath, "getPackageResourcePath", "()Ljava/lang/String;");
if (_m_Context__getPackageResourcePath == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getPackageResourcePath);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getPackageCodePath = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getPackageCodePath(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getPackageCodePath, "getPackageCodePath", "()Ljava/lang/String;");
if (_m_Context__getPackageCodePath == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getPackageCodePath);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getSharedPreferences = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getSharedPreferences(jobject self_,jobject string,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getSharedPreferences, "getSharedPreferences", "(Ljava/lang/String;I)Landroid/content/SharedPreferences;");
if (_m_Context__getSharedPreferences == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getSharedPreferences, string, i);
return to_global_ref_result(_result);
}
jmethodID _m_Context__moveSharedPreferencesFrom = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__moveSharedPreferencesFrom(jobject self_,jobject context,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__moveSharedPreferencesFrom, "moveSharedPreferencesFrom", "(Landroid/content/Context;Ljava/lang/String;)Z");
if (_m_Context__moveSharedPreferencesFrom == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Context__moveSharedPreferencesFrom, context, string);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Context__deleteSharedPreferences = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__deleteSharedPreferences(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__deleteSharedPreferences, "deleteSharedPreferences", "(Ljava/lang/String;)Z");
if (_m_Context__deleteSharedPreferences == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Context__deleteSharedPreferences, string);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Context__openFileInput = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__openFileInput(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__openFileInput, "openFileInput", "(Ljava/lang/String;)Ljava/io/FileInputStream;");
if (_m_Context__openFileInput == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__openFileInput, string);
return to_global_ref_result(_result);
}
jmethodID _m_Context__openFileOutput = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__openFileOutput(jobject self_,jobject string,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__openFileOutput, "openFileOutput", "(Ljava/lang/String;I)Ljava/io/FileOutputStream;");
if (_m_Context__openFileOutput == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__openFileOutput, string, i);
return to_global_ref_result(_result);
}
jmethodID _m_Context__deleteFile = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__deleteFile(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__deleteFile, "deleteFile", "(Ljava/lang/String;)Z");
if (_m_Context__deleteFile == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Context__deleteFile, string);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Context__getFileStreamPath = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getFileStreamPath(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getFileStreamPath, "getFileStreamPath", "(Ljava/lang/String;)Ljava/io/File;");
if (_m_Context__getFileStreamPath == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getFileStreamPath, string);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getDataDir = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getDataDir(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getDataDir, "getDataDir", "()Ljava/io/File;");
if (_m_Context__getDataDir == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getDataDir);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getFilesDir = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getFilesDir(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getFilesDir, "getFilesDir", "()Ljava/io/File;");
if (_m_Context__getFilesDir == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getFilesDir);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getNoBackupFilesDir = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getNoBackupFilesDir(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getNoBackupFilesDir, "getNoBackupFilesDir", "()Ljava/io/File;");
if (_m_Context__getNoBackupFilesDir == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getNoBackupFilesDir);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getExternalFilesDir = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getExternalFilesDir(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getExternalFilesDir, "getExternalFilesDir", "(Ljava/lang/String;)Ljava/io/File;");
if (_m_Context__getExternalFilesDir == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getExternalFilesDir, string);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getExternalFilesDirs = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getExternalFilesDirs(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getExternalFilesDirs, "getExternalFilesDirs", "(Ljava/lang/String;)[Ljava/io/File;");
if (_m_Context__getExternalFilesDirs == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getExternalFilesDirs, string);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getObbDir = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getObbDir(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getObbDir, "getObbDir", "()Ljava/io/File;");
if (_m_Context__getObbDir == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getObbDir);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getObbDirs = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getObbDirs(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getObbDirs, "getObbDirs", "()[Ljava/io/File;");
if (_m_Context__getObbDirs == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getObbDirs);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getCacheDir = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getCacheDir(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getCacheDir, "getCacheDir", "()Ljava/io/File;");
if (_m_Context__getCacheDir == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getCacheDir);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getCodeCacheDir = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getCodeCacheDir(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getCodeCacheDir, "getCodeCacheDir", "()Ljava/io/File;");
if (_m_Context__getCodeCacheDir == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getCodeCacheDir);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getExternalCacheDir = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getExternalCacheDir(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getExternalCacheDir, "getExternalCacheDir", "()Ljava/io/File;");
if (_m_Context__getExternalCacheDir == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getExternalCacheDir);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getExternalCacheDirs = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getExternalCacheDirs(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getExternalCacheDirs, "getExternalCacheDirs", "()[Ljava/io/File;");
if (_m_Context__getExternalCacheDirs == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getExternalCacheDirs);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getExternalMediaDirs = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getExternalMediaDirs(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getExternalMediaDirs, "getExternalMediaDirs", "()[Ljava/io/File;");
if (_m_Context__getExternalMediaDirs == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getExternalMediaDirs);
return to_global_ref_result(_result);
}
jmethodID _m_Context__fileList = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__fileList(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__fileList, "fileList", "()[Ljava/lang/String;");
if (_m_Context__fileList == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__fileList);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getDir = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getDir(jobject self_,jobject string,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getDir, "getDir", "(Ljava/lang/String;I)Ljava/io/File;");
if (_m_Context__getDir == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getDir, string, i);
return to_global_ref_result(_result);
}
jmethodID _m_Context__openOrCreateDatabase = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__openOrCreateDatabase(jobject self_,jobject string,int32_t i,jobject cursorFactory) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__openOrCreateDatabase, "openOrCreateDatabase", "(Ljava/lang/String;ILandroid/database/sqlite/SQLiteDatabase$CursorFactory;)Landroid/database/sqlite/SQLiteDatabase;");
if (_m_Context__openOrCreateDatabase == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__openOrCreateDatabase, string, i, cursorFactory);
return to_global_ref_result(_result);
}
jmethodID _m_Context__openOrCreateDatabase1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__openOrCreateDatabase1(jobject self_,jobject string,int32_t i,jobject cursorFactory,jobject databaseErrorHandler) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__openOrCreateDatabase1, "openOrCreateDatabase", "(Ljava/lang/String;ILandroid/database/sqlite/SQLiteDatabase$CursorFactory;Landroid/database/DatabaseErrorHandler;)Landroid/database/sqlite/SQLiteDatabase;");
if (_m_Context__openOrCreateDatabase1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__openOrCreateDatabase1, string, i, cursorFactory, databaseErrorHandler);
return to_global_ref_result(_result);
}
jmethodID _m_Context__moveDatabaseFrom = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__moveDatabaseFrom(jobject self_,jobject context,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__moveDatabaseFrom, "moveDatabaseFrom", "(Landroid/content/Context;Ljava/lang/String;)Z");
if (_m_Context__moveDatabaseFrom == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Context__moveDatabaseFrom, context, string);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Context__deleteDatabase = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__deleteDatabase(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__deleteDatabase, "deleteDatabase", "(Ljava/lang/String;)Z");
if (_m_Context__deleteDatabase == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Context__deleteDatabase, string);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Context__getDatabasePath = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getDatabasePath(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getDatabasePath, "getDatabasePath", "(Ljava/lang/String;)Ljava/io/File;");
if (_m_Context__getDatabasePath == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getDatabasePath, string);
return to_global_ref_result(_result);
}
jmethodID _m_Context__databaseList = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__databaseList(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__databaseList, "databaseList", "()[Ljava/lang/String;");
if (_m_Context__databaseList == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__databaseList);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getWallpaper = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getWallpaper(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getWallpaper, "getWallpaper", "()Landroid/graphics/drawable/Drawable;");
if (_m_Context__getWallpaper == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getWallpaper);
return to_global_ref_result(_result);
}
jmethodID _m_Context__peekWallpaper = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__peekWallpaper(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__peekWallpaper, "peekWallpaper", "()Landroid/graphics/drawable/Drawable;");
if (_m_Context__peekWallpaper == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__peekWallpaper);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getWallpaperDesiredMinimumWidth = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getWallpaperDesiredMinimumWidth(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getWallpaperDesiredMinimumWidth, "getWallpaperDesiredMinimumWidth", "()I");
if (_m_Context__getWallpaperDesiredMinimumWidth == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Context__getWallpaperDesiredMinimumWidth);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Context__getWallpaperDesiredMinimumHeight = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getWallpaperDesiredMinimumHeight(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getWallpaperDesiredMinimumHeight, "getWallpaperDesiredMinimumHeight", "()I");
if (_m_Context__getWallpaperDesiredMinimumHeight == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Context__getWallpaperDesiredMinimumHeight);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Context__setWallpaper = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__setWallpaper(jobject self_,jobject bitmap) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__setWallpaper, "setWallpaper", "(Landroid/graphics/Bitmap;)V");
if (_m_Context__setWallpaper == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__setWallpaper, bitmap);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__setWallpaper1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__setWallpaper1(jobject self_,jobject inputStream) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__setWallpaper1, "setWallpaper", "(Ljava/io/InputStream;)V");
if (_m_Context__setWallpaper1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__setWallpaper1, inputStream);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__clearWallpaper = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__clearWallpaper(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__clearWallpaper, "clearWallpaper", "()V");
if (_m_Context__clearWallpaper == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__clearWallpaper);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__startActivity = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__startActivity(jobject self_,jobject intent) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__startActivity, "startActivity", "(Landroid/content/Intent;)V");
if (_m_Context__startActivity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__startActivity, intent);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__startActivity1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__startActivity1(jobject self_,jobject intent,jobject bundle) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__startActivity1, "startActivity", "(Landroid/content/Intent;Landroid/os/Bundle;)V");
if (_m_Context__startActivity1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__startActivity1, intent, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__startActivities = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__startActivities(jobject self_,jobject intents) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__startActivities, "startActivities", "([Landroid/content/Intent;)V");
if (_m_Context__startActivities == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__startActivities, intents);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__startActivities1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__startActivities1(jobject self_,jobject intents,jobject bundle) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__startActivities1, "startActivities", "([Landroid/content/Intent;Landroid/os/Bundle;)V");
if (_m_Context__startActivities1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__startActivities1, intents, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__startIntentSender = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__startIntentSender(jobject self_,jobject intentSender,jobject intent,int32_t i,int32_t i1,int32_t i2) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__startIntentSender, "startIntentSender", "(Landroid/content/IntentSender;Landroid/content/Intent;III)V");
if (_m_Context__startIntentSender == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__startIntentSender, intentSender, intent, i, i1, i2);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__startIntentSender1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__startIntentSender1(jobject self_,jobject intentSender,jobject intent,int32_t i,int32_t i1,int32_t i2,jobject bundle) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__startIntentSender1, "startIntentSender", "(Landroid/content/IntentSender;Landroid/content/Intent;IIILandroid/os/Bundle;)V");
if (_m_Context__startIntentSender1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__startIntentSender1, intentSender, intent, i, i1, i2, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__sendBroadcast = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__sendBroadcast(jobject self_,jobject intent) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__sendBroadcast, "sendBroadcast", "(Landroid/content/Intent;)V");
if (_m_Context__sendBroadcast == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__sendBroadcast, intent);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__sendBroadcast1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__sendBroadcast1(jobject self_,jobject intent,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__sendBroadcast1, "sendBroadcast", "(Landroid/content/Intent;Ljava/lang/String;)V");
if (_m_Context__sendBroadcast1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__sendBroadcast1, intent, string);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__sendBroadcastWithMultiplePermissions = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__sendBroadcastWithMultiplePermissions(jobject self_,jobject intent,jobject strings) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__sendBroadcastWithMultiplePermissions, "sendBroadcastWithMultiplePermissions", "(Landroid/content/Intent;[Ljava/lang/String;)V");
if (_m_Context__sendBroadcastWithMultiplePermissions == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__sendBroadcastWithMultiplePermissions, intent, strings);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__sendOrderedBroadcast = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__sendOrderedBroadcast(jobject self_,jobject intent,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__sendOrderedBroadcast, "sendOrderedBroadcast", "(Landroid/content/Intent;Ljava/lang/String;)V");
if (_m_Context__sendOrderedBroadcast == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__sendOrderedBroadcast, intent, string);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__sendOrderedBroadcast1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__sendOrderedBroadcast1(jobject self_,jobject intent,jobject string,jobject broadcastReceiver,jobject handler,int32_t i,jobject string1,jobject bundle) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__sendOrderedBroadcast1, "sendOrderedBroadcast", "(Landroid/content/Intent;Ljava/lang/String;Landroid/content/BroadcastReceiver;Landroid/os/Handler;ILjava/lang/String;Landroid/os/Bundle;)V");
if (_m_Context__sendOrderedBroadcast1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__sendOrderedBroadcast1, intent, string, broadcastReceiver, handler, i, string1, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__sendBroadcastAsUser = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__sendBroadcastAsUser(jobject self_,jobject intent,jobject userHandle) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__sendBroadcastAsUser, "sendBroadcastAsUser", "(Landroid/content/Intent;Landroid/os/UserHandle;)V");
if (_m_Context__sendBroadcastAsUser == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__sendBroadcastAsUser, intent, userHandle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__sendBroadcastAsUser1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__sendBroadcastAsUser1(jobject self_,jobject intent,jobject userHandle,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__sendBroadcastAsUser1, "sendBroadcastAsUser", "(Landroid/content/Intent;Landroid/os/UserHandle;Ljava/lang/String;)V");
if (_m_Context__sendBroadcastAsUser1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__sendBroadcastAsUser1, intent, userHandle, string);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__sendOrderedBroadcastAsUser = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__sendOrderedBroadcastAsUser(jobject self_,jobject intent,jobject userHandle,jobject string,jobject broadcastReceiver,jobject handler,int32_t i,jobject string1,jobject bundle) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__sendOrderedBroadcastAsUser, "sendOrderedBroadcastAsUser", "(Landroid/content/Intent;Landroid/os/UserHandle;Ljava/lang/String;Landroid/content/BroadcastReceiver;Landroid/os/Handler;ILjava/lang/String;Landroid/os/Bundle;)V");
if (_m_Context__sendOrderedBroadcastAsUser == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__sendOrderedBroadcastAsUser, intent, userHandle, string, broadcastReceiver, handler, i, string1, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__sendOrderedBroadcast2 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__sendOrderedBroadcast2(jobject self_,jobject intent,jobject string,jobject string1,jobject broadcastReceiver,jobject handler,int32_t i,jobject string2,jobject bundle) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__sendOrderedBroadcast2, "sendOrderedBroadcast", "(Landroid/content/Intent;Ljava/lang/String;Ljava/lang/String;Landroid/content/BroadcastReceiver;Landroid/os/Handler;ILjava/lang/String;Landroid/os/Bundle;)V");
if (_m_Context__sendOrderedBroadcast2 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__sendOrderedBroadcast2, intent, string, string1, broadcastReceiver, handler, i, string2, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__sendStickyBroadcast = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__sendStickyBroadcast(jobject self_,jobject intent) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__sendStickyBroadcast, "sendStickyBroadcast", "(Landroid/content/Intent;)V");
if (_m_Context__sendStickyBroadcast == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__sendStickyBroadcast, intent);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__sendStickyBroadcast1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__sendStickyBroadcast1(jobject self_,jobject intent,jobject bundle) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__sendStickyBroadcast1, "sendStickyBroadcast", "(Landroid/content/Intent;Landroid/os/Bundle;)V");
if (_m_Context__sendStickyBroadcast1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__sendStickyBroadcast1, intent, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__sendStickyOrderedBroadcast = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__sendStickyOrderedBroadcast(jobject self_,jobject intent,jobject broadcastReceiver,jobject handler,int32_t i,jobject string,jobject bundle) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__sendStickyOrderedBroadcast, "sendStickyOrderedBroadcast", "(Landroid/content/Intent;Landroid/content/BroadcastReceiver;Landroid/os/Handler;ILjava/lang/String;Landroid/os/Bundle;)V");
if (_m_Context__sendStickyOrderedBroadcast == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__sendStickyOrderedBroadcast, intent, broadcastReceiver, handler, i, string, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__removeStickyBroadcast = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__removeStickyBroadcast(jobject self_,jobject intent) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__removeStickyBroadcast, "removeStickyBroadcast", "(Landroid/content/Intent;)V");
if (_m_Context__removeStickyBroadcast == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__removeStickyBroadcast, intent);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__sendStickyBroadcastAsUser = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__sendStickyBroadcastAsUser(jobject self_,jobject intent,jobject userHandle) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__sendStickyBroadcastAsUser, "sendStickyBroadcastAsUser", "(Landroid/content/Intent;Landroid/os/UserHandle;)V");
if (_m_Context__sendStickyBroadcastAsUser == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__sendStickyBroadcastAsUser, intent, userHandle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__sendStickyOrderedBroadcastAsUser = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__sendStickyOrderedBroadcastAsUser(jobject self_,jobject intent,jobject userHandle,jobject broadcastReceiver,jobject handler,int32_t i,jobject string,jobject bundle) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__sendStickyOrderedBroadcastAsUser, "sendStickyOrderedBroadcastAsUser", "(Landroid/content/Intent;Landroid/os/UserHandle;Landroid/content/BroadcastReceiver;Landroid/os/Handler;ILjava/lang/String;Landroid/os/Bundle;)V");
if (_m_Context__sendStickyOrderedBroadcastAsUser == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__sendStickyOrderedBroadcastAsUser, intent, userHandle, broadcastReceiver, handler, i, string, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__removeStickyBroadcastAsUser = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__removeStickyBroadcastAsUser(jobject self_,jobject intent,jobject userHandle) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__removeStickyBroadcastAsUser, "removeStickyBroadcastAsUser", "(Landroid/content/Intent;Landroid/os/UserHandle;)V");
if (_m_Context__removeStickyBroadcastAsUser == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__removeStickyBroadcastAsUser, intent, userHandle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__registerReceiver = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__registerReceiver(jobject self_,jobject broadcastReceiver,jobject intentFilter) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__registerReceiver, "registerReceiver", "(Landroid/content/BroadcastReceiver;Landroid/content/IntentFilter;)Landroid/content/Intent;");
if (_m_Context__registerReceiver == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__registerReceiver, broadcastReceiver, intentFilter);
return to_global_ref_result(_result);
}
jmethodID _m_Context__registerReceiver1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__registerReceiver1(jobject self_,jobject broadcastReceiver,jobject intentFilter,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__registerReceiver1, "registerReceiver", "(Landroid/content/BroadcastReceiver;Landroid/content/IntentFilter;I)Landroid/content/Intent;");
if (_m_Context__registerReceiver1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__registerReceiver1, broadcastReceiver, intentFilter, i);
return to_global_ref_result(_result);
}
jmethodID _m_Context__registerReceiver2 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__registerReceiver2(jobject self_,jobject broadcastReceiver,jobject intentFilter,jobject string,jobject handler) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__registerReceiver2, "registerReceiver", "(Landroid/content/BroadcastReceiver;Landroid/content/IntentFilter;Ljava/lang/String;Landroid/os/Handler;)Landroid/content/Intent;");
if (_m_Context__registerReceiver2 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__registerReceiver2, broadcastReceiver, intentFilter, string, handler);
return to_global_ref_result(_result);
}
jmethodID _m_Context__registerReceiver3 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__registerReceiver3(jobject self_,jobject broadcastReceiver,jobject intentFilter,jobject string,jobject handler,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__registerReceiver3, "registerReceiver", "(Landroid/content/BroadcastReceiver;Landroid/content/IntentFilter;Ljava/lang/String;Landroid/os/Handler;I)Landroid/content/Intent;");
if (_m_Context__registerReceiver3 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__registerReceiver3, broadcastReceiver, intentFilter, string, handler, i);
return to_global_ref_result(_result);
}
jmethodID _m_Context__unregisterReceiver = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__unregisterReceiver(jobject self_,jobject broadcastReceiver) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__unregisterReceiver, "unregisterReceiver", "(Landroid/content/BroadcastReceiver;)V");
if (_m_Context__unregisterReceiver == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__unregisterReceiver, broadcastReceiver);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__startService = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__startService(jobject self_,jobject intent) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__startService, "startService", "(Landroid/content/Intent;)Landroid/content/ComponentName;");
if (_m_Context__startService == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__startService, intent);
return to_global_ref_result(_result);
}
jmethodID _m_Context__startForegroundService = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__startForegroundService(jobject self_,jobject intent) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__startForegroundService, "startForegroundService", "(Landroid/content/Intent;)Landroid/content/ComponentName;");
if (_m_Context__startForegroundService == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__startForegroundService, intent);
return to_global_ref_result(_result);
}
jmethodID _m_Context__stopService = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__stopService(jobject self_,jobject intent) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__stopService, "stopService", "(Landroid/content/Intent;)Z");
if (_m_Context__stopService == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Context__stopService, intent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Context__bindService = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__bindService(jobject self_,jobject intent,jobject serviceConnection,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__bindService, "bindService", "(Landroid/content/Intent;Landroid/content/ServiceConnection;I)Z");
if (_m_Context__bindService == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Context__bindService, intent, serviceConnection, i);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Context__bindService1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__bindService1(jobject self_,jobject intent,int32_t i,jobject executor,jobject serviceConnection) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__bindService1, "bindService", "(Landroid/content/Intent;ILjava/util/concurrent/Executor;Landroid/content/ServiceConnection;)Z");
if (_m_Context__bindService1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Context__bindService1, intent, i, executor, serviceConnection);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Context__bindIsolatedService = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__bindIsolatedService(jobject self_,jobject intent,int32_t i,jobject string,jobject executor,jobject serviceConnection) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__bindIsolatedService, "bindIsolatedService", "(Landroid/content/Intent;ILjava/lang/String;Ljava/util/concurrent/Executor;Landroid/content/ServiceConnection;)Z");
if (_m_Context__bindIsolatedService == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Context__bindIsolatedService, intent, i, string, executor, serviceConnection);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Context__bindServiceAsUser = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__bindServiceAsUser(jobject self_,jobject intent,jobject serviceConnection,int32_t i,jobject userHandle) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__bindServiceAsUser, "bindServiceAsUser", "(Landroid/content/Intent;Landroid/content/ServiceConnection;ILandroid/os/UserHandle;)Z");
if (_m_Context__bindServiceAsUser == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Context__bindServiceAsUser, intent, serviceConnection, i, userHandle);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Context__updateServiceGroup = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__updateServiceGroup(jobject self_,jobject serviceConnection,int32_t i,int32_t i1) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__updateServiceGroup, "updateServiceGroup", "(Landroid/content/ServiceConnection;II)V");
if (_m_Context__updateServiceGroup == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__updateServiceGroup, serviceConnection, i, i1);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__unbindService = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__unbindService(jobject self_,jobject serviceConnection) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__unbindService, "unbindService", "(Landroid/content/ServiceConnection;)V");
if (_m_Context__unbindService == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__unbindService, serviceConnection);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__startInstrumentation = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__startInstrumentation(jobject self_,jobject componentName,jobject string,jobject bundle) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__startInstrumentation, "startInstrumentation", "(Landroid/content/ComponentName;Ljava/lang/String;Landroid/os/Bundle;)Z");
if (_m_Context__startInstrumentation == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Context__startInstrumentation, componentName, string, bundle);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Context__getSystemService = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getSystemService(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getSystemService, "getSystemService", "(Ljava/lang/String;)Ljava/lang/Object;");
if (_m_Context__getSystemService == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getSystemService, string);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getSystemService1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getSystemService1(jobject self_,jobject class) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getSystemService1, "getSystemService", "(Ljava/lang/Class;)Ljava/lang/Object;");
if (_m_Context__getSystemService1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getSystemService1, class);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getSystemServiceName = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getSystemServiceName(jobject self_,jobject class) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getSystemServiceName, "getSystemServiceName", "(Ljava/lang/Class;)Ljava/lang/String;");
if (_m_Context__getSystemServiceName == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getSystemServiceName, class);
return to_global_ref_result(_result);
}
jmethodID _m_Context__checkPermission = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__checkPermission(jobject self_,jobject string,int32_t i,int32_t i1) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__checkPermission, "checkPermission", "(Ljava/lang/String;II)I");
if (_m_Context__checkPermission == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Context__checkPermission, string, i, i1);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Context__checkCallingPermission = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__checkCallingPermission(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__checkCallingPermission, "checkCallingPermission", "(Ljava/lang/String;)I");
if (_m_Context__checkCallingPermission == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Context__checkCallingPermission, string);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Context__checkCallingOrSelfPermission = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__checkCallingOrSelfPermission(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__checkCallingOrSelfPermission, "checkCallingOrSelfPermission", "(Ljava/lang/String;)I");
if (_m_Context__checkCallingOrSelfPermission == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Context__checkCallingOrSelfPermission, string);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Context__checkSelfPermission = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__checkSelfPermission(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__checkSelfPermission, "checkSelfPermission", "(Ljava/lang/String;)I");
if (_m_Context__checkSelfPermission == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Context__checkSelfPermission, string);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Context__enforcePermission = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__enforcePermission(jobject self_,jobject string,int32_t i,int32_t i1,jobject string1) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__enforcePermission, "enforcePermission", "(Ljava/lang/String;IILjava/lang/String;)V");
if (_m_Context__enforcePermission == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__enforcePermission, string, i, i1, string1);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__enforceCallingPermission = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__enforceCallingPermission(jobject self_,jobject string,jobject string1) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__enforceCallingPermission, "enforceCallingPermission", "(Ljava/lang/String;Ljava/lang/String;)V");
if (_m_Context__enforceCallingPermission == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__enforceCallingPermission, string, string1);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__enforceCallingOrSelfPermission = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__enforceCallingOrSelfPermission(jobject self_,jobject string,jobject string1) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__enforceCallingOrSelfPermission, "enforceCallingOrSelfPermission", "(Ljava/lang/String;Ljava/lang/String;)V");
if (_m_Context__enforceCallingOrSelfPermission == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__enforceCallingOrSelfPermission, string, string1);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__grantUriPermission = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__grantUriPermission(jobject self_,jobject string,jobject uri,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__grantUriPermission, "grantUriPermission", "(Ljava/lang/String;Landroid/net/Uri;I)V");
if (_m_Context__grantUriPermission == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__grantUriPermission, string, uri, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__revokeUriPermission = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__revokeUriPermission(jobject self_,jobject uri,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__revokeUriPermission, "revokeUriPermission", "(Landroid/net/Uri;I)V");
if (_m_Context__revokeUriPermission == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__revokeUriPermission, uri, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__revokeUriPermission1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__revokeUriPermission1(jobject self_,jobject string,jobject uri,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__revokeUriPermission1, "revokeUriPermission", "(Ljava/lang/String;Landroid/net/Uri;I)V");
if (_m_Context__revokeUriPermission1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__revokeUriPermission1, string, uri, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__checkUriPermission = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__checkUriPermission(jobject self_,jobject uri,int32_t i,int32_t i1,int32_t i2) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__checkUriPermission, "checkUriPermission", "(Landroid/net/Uri;III)I");
if (_m_Context__checkUriPermission == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Context__checkUriPermission, uri, i, i1, i2);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Context__checkUriPermissions = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__checkUriPermissions(jobject self_,jobject list,int32_t i,int32_t i1,int32_t i2) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__checkUriPermissions, "checkUriPermissions", "(Ljava/util/List;III)[I");
if (_m_Context__checkUriPermissions == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__checkUriPermissions, list, i, i1, i2);
return to_global_ref_result(_result);
}
jmethodID _m_Context__checkCallingUriPermission = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__checkCallingUriPermission(jobject self_,jobject uri,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__checkCallingUriPermission, "checkCallingUriPermission", "(Landroid/net/Uri;I)I");
if (_m_Context__checkCallingUriPermission == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Context__checkCallingUriPermission, uri, i);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Context__checkCallingUriPermissions = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__checkCallingUriPermissions(jobject self_,jobject list,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__checkCallingUriPermissions, "checkCallingUriPermissions", "(Ljava/util/List;I)[I");
if (_m_Context__checkCallingUriPermissions == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__checkCallingUriPermissions, list, i);
return to_global_ref_result(_result);
}
jmethodID _m_Context__checkCallingOrSelfUriPermission = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__checkCallingOrSelfUriPermission(jobject self_,jobject uri,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__checkCallingOrSelfUriPermission, "checkCallingOrSelfUriPermission", "(Landroid/net/Uri;I)I");
if (_m_Context__checkCallingOrSelfUriPermission == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Context__checkCallingOrSelfUriPermission, uri, i);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Context__checkCallingOrSelfUriPermissions = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__checkCallingOrSelfUriPermissions(jobject self_,jobject list,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__checkCallingOrSelfUriPermissions, "checkCallingOrSelfUriPermissions", "(Ljava/util/List;I)[I");
if (_m_Context__checkCallingOrSelfUriPermissions == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__checkCallingOrSelfUriPermissions, list, i);
return to_global_ref_result(_result);
}
jmethodID _m_Context__checkUriPermission1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__checkUriPermission1(jobject self_,jobject uri,jobject string,jobject string1,int32_t i,int32_t i1,int32_t i2) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__checkUriPermission1, "checkUriPermission", "(Landroid/net/Uri;Ljava/lang/String;Ljava/lang/String;III)I");
if (_m_Context__checkUriPermission1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Context__checkUriPermission1, uri, string, string1, i, i1, i2);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Context__enforceUriPermission = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__enforceUriPermission(jobject self_,jobject uri,int32_t i,int32_t i1,int32_t i2,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__enforceUriPermission, "enforceUriPermission", "(Landroid/net/Uri;IIILjava/lang/String;)V");
if (_m_Context__enforceUriPermission == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__enforceUriPermission, uri, i, i1, i2, string);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__enforceCallingUriPermission = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__enforceCallingUriPermission(jobject self_,jobject uri,int32_t i,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__enforceCallingUriPermission, "enforceCallingUriPermission", "(Landroid/net/Uri;ILjava/lang/String;)V");
if (_m_Context__enforceCallingUriPermission == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__enforceCallingUriPermission, uri, i, string);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__enforceCallingOrSelfUriPermission = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__enforceCallingOrSelfUriPermission(jobject self_,jobject uri,int32_t i,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__enforceCallingOrSelfUriPermission, "enforceCallingOrSelfUriPermission", "(Landroid/net/Uri;ILjava/lang/String;)V");
if (_m_Context__enforceCallingOrSelfUriPermission == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__enforceCallingOrSelfUriPermission, uri, i, string);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__enforceUriPermission1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__enforceUriPermission1(jobject self_,jobject uri,jobject string,jobject string1,int32_t i,int32_t i1,int32_t i2,jobject string2) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__enforceUriPermission1, "enforceUriPermission", "(Landroid/net/Uri;Ljava/lang/String;Ljava/lang/String;IIILjava/lang/String;)V");
if (_m_Context__enforceUriPermission1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__enforceUriPermission1, uri, string, string1, i, i1, i2, string2);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__revokeSelfPermissionOnKill = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__revokeSelfPermissionOnKill(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__revokeSelfPermissionOnKill, "revokeSelfPermissionOnKill", "(Ljava/lang/String;)V");
if (_m_Context__revokeSelfPermissionOnKill == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__revokeSelfPermissionOnKill, string);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__revokeSelfPermissionsOnKill = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__revokeSelfPermissionsOnKill(jobject self_,jobject collection) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__revokeSelfPermissionsOnKill, "revokeSelfPermissionsOnKill", "(Ljava/util/Collection;)V");
if (_m_Context__revokeSelfPermissionsOnKill == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Context__revokeSelfPermissionsOnKill, collection);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Context__createPackageContext = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__createPackageContext(jobject self_,jobject string,int32_t i) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__createPackageContext, "createPackageContext", "(Ljava/lang/String;I)Landroid/content/Context;");
if (_m_Context__createPackageContext == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__createPackageContext, string, i);
return to_global_ref_result(_result);
}
jmethodID _m_Context__createContextForSplit = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__createContextForSplit(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__createContextForSplit, "createContextForSplit", "(Ljava/lang/String;)Landroid/content/Context;");
if (_m_Context__createContextForSplit == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__createContextForSplit, string);
return to_global_ref_result(_result);
}
jmethodID _m_Context__createConfigurationContext = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__createConfigurationContext(jobject self_,jobject configuration) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__createConfigurationContext, "createConfigurationContext", "(Landroid/content/res/Configuration;)Landroid/content/Context;");
if (_m_Context__createConfigurationContext == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__createConfigurationContext, configuration);
return to_global_ref_result(_result);
}
jmethodID _m_Context__createDisplayContext = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__createDisplayContext(jobject self_,jobject display) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__createDisplayContext, "createDisplayContext", "(Landroid/view/Display;)Landroid/content/Context;");
if (_m_Context__createDisplayContext == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__createDisplayContext, display);
return to_global_ref_result(_result);
}
jmethodID _m_Context__createWindowContext = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__createWindowContext(jobject self_,int32_t i,jobject bundle) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__createWindowContext, "createWindowContext", "(ILandroid/os/Bundle;)Landroid/content/Context;");
if (_m_Context__createWindowContext == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__createWindowContext, i, bundle);
return to_global_ref_result(_result);
}
jmethodID _m_Context__createWindowContext1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__createWindowContext1(jobject self_,jobject display,int32_t i,jobject bundle) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__createWindowContext1, "createWindowContext", "(Landroid/view/Display;ILandroid/os/Bundle;)Landroid/content/Context;");
if (_m_Context__createWindowContext1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__createWindowContext1, display, i, bundle);
return to_global_ref_result(_result);
}
jmethodID _m_Context__createContext = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__createContext(jobject self_,jobject contextParams) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__createContext, "createContext", "(Landroid/content/ContextParams;)Landroid/content/Context;");
if (_m_Context__createContext == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__createContext, contextParams);
return to_global_ref_result(_result);
}
jmethodID _m_Context__createAttributionContext = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__createAttributionContext(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__createAttributionContext, "createAttributionContext", "(Ljava/lang/String;)Landroid/content/Context;");
if (_m_Context__createAttributionContext == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__createAttributionContext, string);
return to_global_ref_result(_result);
}
jmethodID _m_Context__createDeviceProtectedStorageContext = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__createDeviceProtectedStorageContext(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__createDeviceProtectedStorageContext, "createDeviceProtectedStorageContext", "()Landroid/content/Context;");
if (_m_Context__createDeviceProtectedStorageContext == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__createDeviceProtectedStorageContext);
return to_global_ref_result(_result);
}
jmethodID _m_Context__getDisplay = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__getDisplay(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__getDisplay, "getDisplay", "()Landroid/view/Display;");
if (_m_Context__getDisplay == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Context__getDisplay);
return to_global_ref_result(_result);
}
jmethodID _m_Context__isRestricted = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__isRestricted(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__isRestricted, "isRestricted", "()Z");
if (_m_Context__isRestricted == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Context__isRestricted);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Context__isDeviceProtectedStorage = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__isDeviceProtectedStorage(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__isDeviceProtectedStorage, "isDeviceProtectedStorage", "()Z");
if (_m_Context__isDeviceProtectedStorage == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Context__isDeviceProtectedStorage);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Context__isUiContext = NULL;
FFI_PLUGIN_EXPORT
JniResult Context__isUiContext(jobject self_) {
load_env();
load_class_global_ref(&_c_Context, "android/content/Context");
if (_c_Context == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Context,
&_m_Context__isUiContext, "isUiContext", "()Z");
if (_m_Context__isUiContext == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Context__isUiContext);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
// android.content.Intent$FilterComparison
jclass _c_Intent_FilterComparison = NULL;
jmethodID _m_Intent_FilterComparison__new0 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent_FilterComparison__new0(jobject intent) {
load_env();
load_class_global_ref(&_c_Intent_FilterComparison, "android/content/Intent$FilterComparison");
if (_c_Intent_FilterComparison == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent_FilterComparison,
&_m_Intent_FilterComparison__new0, "<init>", "(Landroid/content/Intent;)V");
if (_m_Intent_FilterComparison__new0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_Intent_FilterComparison, _m_Intent_FilterComparison__new0, intent);
return to_global_ref_result(_result);
}
jmethodID _m_Intent_FilterComparison__getIntent = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent_FilterComparison__getIntent(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent_FilterComparison, "android/content/Intent$FilterComparison");
if (_c_Intent_FilterComparison == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent_FilterComparison,
&_m_Intent_FilterComparison__getIntent, "getIntent", "()Landroid/content/Intent;");
if (_m_Intent_FilterComparison__getIntent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent_FilterComparison__getIntent);
return to_global_ref_result(_result);
}
jmethodID _m_Intent_FilterComparison__equals1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent_FilterComparison__equals1(jobject self_,jobject object) {
load_env();
load_class_global_ref(&_c_Intent_FilterComparison, "android/content/Intent$FilterComparison");
if (_c_Intent_FilterComparison == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent_FilterComparison,
&_m_Intent_FilterComparison__equals1, "equals", "(Ljava/lang/Object;)Z");
if (_m_Intent_FilterComparison__equals1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Intent_FilterComparison__equals1, object);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Intent_FilterComparison__hashCode1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent_FilterComparison__hashCode1(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent_FilterComparison, "android/content/Intent$FilterComparison");
if (_c_Intent_FilterComparison == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent_FilterComparison,
&_m_Intent_FilterComparison__hashCode1, "hashCode", "()I");
if (_m_Intent_FilterComparison__hashCode1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Intent_FilterComparison__hashCode1);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
// android.content.Intent$ShortcutIconResource
jclass _c_Intent_ShortcutIconResource = NULL;
jmethodID _m_Intent_ShortcutIconResource__new0 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent_ShortcutIconResource__new0() {
load_env();
load_class_global_ref(&_c_Intent_ShortcutIconResource, "android/content/Intent$ShortcutIconResource");
if (_c_Intent_ShortcutIconResource == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent_ShortcutIconResource,
&_m_Intent_ShortcutIconResource__new0, "<init>", "()V");
if (_m_Intent_ShortcutIconResource__new0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_Intent_ShortcutIconResource, _m_Intent_ShortcutIconResource__new0);
return to_global_ref_result(_result);
}
jmethodID _m_Intent_ShortcutIconResource__fromContext = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent_ShortcutIconResource__fromContext(jobject context,int32_t i) {
load_env();
load_class_global_ref(&_c_Intent_ShortcutIconResource, "android/content/Intent$ShortcutIconResource");
if (_c_Intent_ShortcutIconResource == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Intent_ShortcutIconResource,
&_m_Intent_ShortcutIconResource__fromContext, "fromContext", "(Landroid/content/Context;I)Landroid/content/Intent$ShortcutIconResource;");
if (_m_Intent_ShortcutIconResource__fromContext == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Intent_ShortcutIconResource, _m_Intent_ShortcutIconResource__fromContext, context, i);
return to_global_ref_result(_result);
}
jmethodID _m_Intent_ShortcutIconResource__describeContents = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent_ShortcutIconResource__describeContents(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent_ShortcutIconResource, "android/content/Intent$ShortcutIconResource");
if (_c_Intent_ShortcutIconResource == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent_ShortcutIconResource,
&_m_Intent_ShortcutIconResource__describeContents, "describeContents", "()I");
if (_m_Intent_ShortcutIconResource__describeContents == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Intent_ShortcutIconResource__describeContents);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Intent_ShortcutIconResource__writeToParcel = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent_ShortcutIconResource__writeToParcel(jobject self_,jobject parcel,int32_t i) {
load_env();
load_class_global_ref(&_c_Intent_ShortcutIconResource, "android/content/Intent$ShortcutIconResource");
if (_c_Intent_ShortcutIconResource == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent_ShortcutIconResource,
&_m_Intent_ShortcutIconResource__writeToParcel, "writeToParcel", "(Landroid/os/Parcel;I)V");
if (_m_Intent_ShortcutIconResource__writeToParcel == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Intent_ShortcutIconResource__writeToParcel, parcel, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Intent_ShortcutIconResource__toString1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent_ShortcutIconResource__toString1(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent_ShortcutIconResource, "android/content/Intent$ShortcutIconResource");
if (_c_Intent_ShortcutIconResource == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent_ShortcutIconResource,
&_m_Intent_ShortcutIconResource__toString1, "toString", "()Ljava/lang/String;");
if (_m_Intent_ShortcutIconResource__toString1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent_ShortcutIconResource__toString1);
return to_global_ref_result(_result);
}
jfieldID _f_Intent_ShortcutIconResource__CREATOR = NULL;
FFI_PLUGIN_EXPORT
JniResult get_Intent_ShortcutIconResource__CREATOR() {
load_env();
load_class_global_ref(&_c_Intent_ShortcutIconResource, "android/content/Intent$ShortcutIconResource");
if (_c_Intent_ShortcutIconResource == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_Intent_ShortcutIconResource, &_f_Intent_ShortcutIconResource__CREATOR, "CREATOR",
"Landroid/os/Parcelable$Creator;");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_Intent_ShortcutIconResource, _f_Intent_ShortcutIconResource__CREATOR);
return to_global_ref_result(_result);
}
jfieldID _f_Intent_ShortcutIconResource__packageName = NULL;
FFI_PLUGIN_EXPORT
JniResult get_Intent_ShortcutIconResource__packageName(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent_ShortcutIconResource, "android/content/Intent$ShortcutIconResource");
if (_c_Intent_ShortcutIconResource == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_field(_c_Intent_ShortcutIconResource, &_f_Intent_ShortcutIconResource__packageName, "packageName",
"Ljava/lang/String;");
jobject _result = (*jniEnv)->GetObjectField(jniEnv, self_, _f_Intent_ShortcutIconResource__packageName);
return to_global_ref_result(_result);
}
FFI_PLUGIN_EXPORT
JniResult set_Intent_ShortcutIconResource__packageName(jobject self_, jobject value) {
load_env();
load_class_global_ref(&_c_Intent_ShortcutIconResource, "android/content/Intent$ShortcutIconResource");
if (_c_Intent_ShortcutIconResource == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_field(_c_Intent_ShortcutIconResource, &_f_Intent_ShortcutIconResource__packageName, "packageName",
"Ljava/lang/String;");
(*jniEnv)->SetObjectField(jniEnv, self_, _f_Intent_ShortcutIconResource__packageName, value);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jfieldID _f_Intent_ShortcutIconResource__resourceName = NULL;
FFI_PLUGIN_EXPORT
JniResult get_Intent_ShortcutIconResource__resourceName(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent_ShortcutIconResource, "android/content/Intent$ShortcutIconResource");
if (_c_Intent_ShortcutIconResource == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_field(_c_Intent_ShortcutIconResource, &_f_Intent_ShortcutIconResource__resourceName, "resourceName",
"Ljava/lang/String;");
jobject _result = (*jniEnv)->GetObjectField(jniEnv, self_, _f_Intent_ShortcutIconResource__resourceName);
return to_global_ref_result(_result);
}
FFI_PLUGIN_EXPORT
JniResult set_Intent_ShortcutIconResource__resourceName(jobject self_, jobject value) {
load_env();
load_class_global_ref(&_c_Intent_ShortcutIconResource, "android/content/Intent$ShortcutIconResource");
if (_c_Intent_ShortcutIconResource == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_field(_c_Intent_ShortcutIconResource, &_f_Intent_ShortcutIconResource__resourceName, "resourceName",
"Ljava/lang/String;");
(*jniEnv)->SetObjectField(jniEnv, self_, _f_Intent_ShortcutIconResource__resourceName, value);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
// android.content.Intent
jclass _c_Intent = NULL;
jmethodID _m_Intent__new0 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__new0() {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__new0, "<init>", "()V");
if (_m_Intent__new0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_Intent, _m_Intent__new0);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__new1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__new1(jobject intent) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__new1, "<init>", "(Landroid/content/Intent;)V");
if (_m_Intent__new1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_Intent, _m_Intent__new1, intent);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__new2 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__new2(jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__new2, "<init>", "(Ljava/lang/String;)V");
if (_m_Intent__new2 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_Intent, _m_Intent__new2, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__new3 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__new3(jobject string,jobject uri) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__new3, "<init>", "(Ljava/lang/String;Landroid/net/Uri;)V");
if (_m_Intent__new3 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_Intent, _m_Intent__new3, string, uri);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__new4 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__new4(jobject context,jobject class) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__new4, "<init>", "(Landroid/content/Context;Ljava/lang/Class;)V");
if (_m_Intent__new4 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_Intent, _m_Intent__new4, context, class);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__new5 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__new5(jobject string,jobject uri,jobject context,jobject class) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__new5, "<init>", "(Ljava/lang/String;Landroid/net/Uri;Landroid/content/Context;Ljava/lang/Class;)V");
if (_m_Intent__new5 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_Intent, _m_Intent__new5, string, uri, context, class);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__createChooser = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__createChooser(jobject intent,jobject charSequence) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Intent,
&_m_Intent__createChooser, "createChooser", "(Landroid/content/Intent;Ljava/lang/CharSequence;)Landroid/content/Intent;");
if (_m_Intent__createChooser == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Intent, _m_Intent__createChooser, intent, charSequence);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__createChooser1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__createChooser1(jobject intent,jobject charSequence,jobject intentSender) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Intent,
&_m_Intent__createChooser1, "createChooser", "(Landroid/content/Intent;Ljava/lang/CharSequence;Landroid/content/IntentSender;)Landroid/content/Intent;");
if (_m_Intent__createChooser1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Intent, _m_Intent__createChooser1, intent, charSequence, intentSender);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__clone = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__clone(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__clone, "clone", "()Ljava/lang/Object;");
if (_m_Intent__clone == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__clone);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__cloneFilter = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__cloneFilter(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__cloneFilter, "cloneFilter", "()Landroid/content/Intent;");
if (_m_Intent__cloneFilter == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__cloneFilter);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__makeMainActivity = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__makeMainActivity(jobject componentName) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Intent,
&_m_Intent__makeMainActivity, "makeMainActivity", "(Landroid/content/ComponentName;)Landroid/content/Intent;");
if (_m_Intent__makeMainActivity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Intent, _m_Intent__makeMainActivity, componentName);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__makeMainSelectorActivity = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__makeMainSelectorActivity(jobject string,jobject string1) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Intent,
&_m_Intent__makeMainSelectorActivity, "makeMainSelectorActivity", "(Ljava/lang/String;Ljava/lang/String;)Landroid/content/Intent;");
if (_m_Intent__makeMainSelectorActivity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Intent, _m_Intent__makeMainSelectorActivity, string, string1);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__makeRestartActivityTask = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__makeRestartActivityTask(jobject componentName) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Intent,
&_m_Intent__makeRestartActivityTask, "makeRestartActivityTask", "(Landroid/content/ComponentName;)Landroid/content/Intent;");
if (_m_Intent__makeRestartActivityTask == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Intent, _m_Intent__makeRestartActivityTask, componentName);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getIntent = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getIntent(jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Intent,
&_m_Intent__getIntent, "getIntent", "(Ljava/lang/String;)Landroid/content/Intent;");
if (_m_Intent__getIntent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Intent, _m_Intent__getIntent, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__parseUri = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__parseUri(jobject string,int32_t i) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Intent,
&_m_Intent__parseUri, "parseUri", "(Ljava/lang/String;I)Landroid/content/Intent;");
if (_m_Intent__parseUri == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Intent, _m_Intent__parseUri, string, i);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getIntentOld = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getIntentOld(jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Intent,
&_m_Intent__getIntentOld, "getIntentOld", "(Ljava/lang/String;)Landroid/content/Intent;");
if (_m_Intent__getIntentOld == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Intent, _m_Intent__getIntentOld, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getAction = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getAction(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getAction, "getAction", "()Ljava/lang/String;");
if (_m_Intent__getAction == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getAction);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getData = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getData(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getData, "getData", "()Landroid/net/Uri;");
if (_m_Intent__getData == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getData);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getDataString = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getDataString(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getDataString, "getDataString", "()Ljava/lang/String;");
if (_m_Intent__getDataString == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getDataString);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getScheme = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getScheme(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getScheme, "getScheme", "()Ljava/lang/String;");
if (_m_Intent__getScheme == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getScheme);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getType = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getType(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getType, "getType", "()Ljava/lang/String;");
if (_m_Intent__getType == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getType);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__resolveType = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__resolveType(jobject self_,jobject context) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__resolveType, "resolveType", "(Landroid/content/Context;)Ljava/lang/String;");
if (_m_Intent__resolveType == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__resolveType, context);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__resolveType1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__resolveType1(jobject self_,jobject contentResolver) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__resolveType1, "resolveType", "(Landroid/content/ContentResolver;)Ljava/lang/String;");
if (_m_Intent__resolveType1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__resolveType1, contentResolver);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__resolveTypeIfNeeded = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__resolveTypeIfNeeded(jobject self_,jobject contentResolver) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__resolveTypeIfNeeded, "resolveTypeIfNeeded", "(Landroid/content/ContentResolver;)Ljava/lang/String;");
if (_m_Intent__resolveTypeIfNeeded == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__resolveTypeIfNeeded, contentResolver);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getIdentifier = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getIdentifier(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getIdentifier, "getIdentifier", "()Ljava/lang/String;");
if (_m_Intent__getIdentifier == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getIdentifier);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__hasCategory = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__hasCategory(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__hasCategory, "hasCategory", "(Ljava/lang/String;)Z");
if (_m_Intent__hasCategory == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Intent__hasCategory, string);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Intent__getCategories = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getCategories(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getCategories, "getCategories", "()Ljava/util/Set;");
if (_m_Intent__getCategories == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getCategories);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getSelector = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getSelector(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getSelector, "getSelector", "()Landroid/content/Intent;");
if (_m_Intent__getSelector == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getSelector);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getClipData = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getClipData(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getClipData, "getClipData", "()Landroid/content/ClipData;");
if (_m_Intent__getClipData == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getClipData);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__setExtrasClassLoader = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setExtrasClassLoader(jobject self_,jobject classLoader) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setExtrasClassLoader, "setExtrasClassLoader", "(Ljava/lang/ClassLoader;)V");
if (_m_Intent__setExtrasClassLoader == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Intent__setExtrasClassLoader, classLoader);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Intent__hasExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__hasExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__hasExtra, "hasExtra", "(Ljava/lang/String;)Z");
if (_m_Intent__hasExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Intent__hasExtra, string);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Intent__hasFileDescriptors = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__hasFileDescriptors(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__hasFileDescriptors, "hasFileDescriptors", "()Z");
if (_m_Intent__hasFileDescriptors == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Intent__hasFileDescriptors);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Intent__getBooleanExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getBooleanExtra(jobject self_,jobject string,uint8_t z) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getBooleanExtra, "getBooleanExtra", "(Ljava/lang/String;Z)Z");
if (_m_Intent__getBooleanExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Intent__getBooleanExtra, string, z);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Intent__getByteExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getByteExtra(jobject self_,jobject string,int8_t b) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getByteExtra, "getByteExtra", "(Ljava/lang/String;B)B");
if (_m_Intent__getByteExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int8_t _result = (*jniEnv)->CallByteMethod(jniEnv, self_, _m_Intent__getByteExtra, string, b);
return (JniResult){.value = {.b = _result}, .exception = check_exception()};
}
jmethodID _m_Intent__getShortExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getShortExtra(jobject self_,jobject string,int16_t s) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getShortExtra, "getShortExtra", "(Ljava/lang/String;S)S");
if (_m_Intent__getShortExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int16_t _result = (*jniEnv)->CallShortMethod(jniEnv, self_, _m_Intent__getShortExtra, string, s);
return (JniResult){.value = {.s = _result}, .exception = check_exception()};
}
jmethodID _m_Intent__getCharExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getCharExtra(jobject self_,jobject string,uint16_t c) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getCharExtra, "getCharExtra", "(Ljava/lang/String;C)C");
if (_m_Intent__getCharExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint16_t _result = (*jniEnv)->CallCharMethod(jniEnv, self_, _m_Intent__getCharExtra, string, c);
return (JniResult){.value = {.c = _result}, .exception = check_exception()};
}
jmethodID _m_Intent__getIntExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getIntExtra(jobject self_,jobject string,int32_t i) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getIntExtra, "getIntExtra", "(Ljava/lang/String;I)I");
if (_m_Intent__getIntExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Intent__getIntExtra, string, i);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Intent__getLongExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getLongExtra(jobject self_,jobject string,int64_t j) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getLongExtra, "getLongExtra", "(Ljava/lang/String;J)J");
if (_m_Intent__getLongExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int64_t _result = (*jniEnv)->CallLongMethod(jniEnv, self_, _m_Intent__getLongExtra, string, j);
return (JniResult){.value = {.j = _result}, .exception = check_exception()};
}
jmethodID _m_Intent__getFloatExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getFloatExtra(jobject self_,jobject string,float f) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getFloatExtra, "getFloatExtra", "(Ljava/lang/String;F)F");
if (_m_Intent__getFloatExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
float _result = (*jniEnv)->CallFloatMethod(jniEnv, self_, _m_Intent__getFloatExtra, string, f);
return (JniResult){.value = {.f = _result}, .exception = check_exception()};
}
jmethodID _m_Intent__getDoubleExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getDoubleExtra(jobject self_,jobject string,double d) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getDoubleExtra, "getDoubleExtra", "(Ljava/lang/String;D)D");
if (_m_Intent__getDoubleExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
double _result = (*jniEnv)->CallDoubleMethod(jniEnv, self_, _m_Intent__getDoubleExtra, string, d);
return (JniResult){.value = {.d = _result}, .exception = check_exception()};
}
jmethodID _m_Intent__getStringExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getStringExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getStringExtra, "getStringExtra", "(Ljava/lang/String;)Ljava/lang/String;");
if (_m_Intent__getStringExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getStringExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getCharSequenceExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getCharSequenceExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getCharSequenceExtra, "getCharSequenceExtra", "(Ljava/lang/String;)Ljava/lang/CharSequence;");
if (_m_Intent__getCharSequenceExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getCharSequenceExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getParcelableExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getParcelableExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getParcelableExtra, "getParcelableExtra", "(Ljava/lang/String;)Landroid/os/Parcelable;");
if (_m_Intent__getParcelableExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getParcelableExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getParcelableExtra1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getParcelableExtra1(jobject self_,jobject string,jobject class) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getParcelableExtra1, "getParcelableExtra", "(Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/Object;");
if (_m_Intent__getParcelableExtra1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getParcelableExtra1, string, class);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getParcelableArrayExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getParcelableArrayExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getParcelableArrayExtra, "getParcelableArrayExtra", "(Ljava/lang/String;)[Landroid/os/Parcelable;");
if (_m_Intent__getParcelableArrayExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getParcelableArrayExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getParcelableArrayExtra1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getParcelableArrayExtra1(jobject self_,jobject string,jobject class) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getParcelableArrayExtra1, "getParcelableArrayExtra", "(Ljava/lang/String;Ljava/lang/Class;)[Ljava/lang/Object;");
if (_m_Intent__getParcelableArrayExtra1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getParcelableArrayExtra1, string, class);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getParcelableArrayListExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getParcelableArrayListExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getParcelableArrayListExtra, "getParcelableArrayListExtra", "(Ljava/lang/String;)Ljava/util/ArrayList;");
if (_m_Intent__getParcelableArrayListExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getParcelableArrayListExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getParcelableArrayListExtra1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getParcelableArrayListExtra1(jobject self_,jobject string,jobject class) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getParcelableArrayListExtra1, "getParcelableArrayListExtra", "(Ljava/lang/String;Ljava/lang/Class;)Ljava/util/ArrayList;");
if (_m_Intent__getParcelableArrayListExtra1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getParcelableArrayListExtra1, string, class);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getSerializableExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getSerializableExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getSerializableExtra, "getSerializableExtra", "(Ljava/lang/String;)Ljava/io/Serializable;");
if (_m_Intent__getSerializableExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getSerializableExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getSerializableExtra1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getSerializableExtra1(jobject self_,jobject string,jobject class) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getSerializableExtra1, "getSerializableExtra", "(Ljava/lang/String;Ljava/lang/Class;)Ljava/io/Serializable;");
if (_m_Intent__getSerializableExtra1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getSerializableExtra1, string, class);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getIntegerArrayListExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getIntegerArrayListExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getIntegerArrayListExtra, "getIntegerArrayListExtra", "(Ljava/lang/String;)Ljava/util/ArrayList;");
if (_m_Intent__getIntegerArrayListExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getIntegerArrayListExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getStringArrayListExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getStringArrayListExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getStringArrayListExtra, "getStringArrayListExtra", "(Ljava/lang/String;)Ljava/util/ArrayList;");
if (_m_Intent__getStringArrayListExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getStringArrayListExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getCharSequenceArrayListExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getCharSequenceArrayListExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getCharSequenceArrayListExtra, "getCharSequenceArrayListExtra", "(Ljava/lang/String;)Ljava/util/ArrayList;");
if (_m_Intent__getCharSequenceArrayListExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getCharSequenceArrayListExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getBooleanArrayExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getBooleanArrayExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getBooleanArrayExtra, "getBooleanArrayExtra", "(Ljava/lang/String;)[Z");
if (_m_Intent__getBooleanArrayExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getBooleanArrayExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getByteArrayExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getByteArrayExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getByteArrayExtra, "getByteArrayExtra", "(Ljava/lang/String;)[B");
if (_m_Intent__getByteArrayExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getByteArrayExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getShortArrayExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getShortArrayExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getShortArrayExtra, "getShortArrayExtra", "(Ljava/lang/String;)[S");
if (_m_Intent__getShortArrayExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getShortArrayExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getCharArrayExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getCharArrayExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getCharArrayExtra, "getCharArrayExtra", "(Ljava/lang/String;)[C");
if (_m_Intent__getCharArrayExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getCharArrayExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getIntArrayExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getIntArrayExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getIntArrayExtra, "getIntArrayExtra", "(Ljava/lang/String;)[I");
if (_m_Intent__getIntArrayExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getIntArrayExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getLongArrayExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getLongArrayExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getLongArrayExtra, "getLongArrayExtra", "(Ljava/lang/String;)[J");
if (_m_Intent__getLongArrayExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getLongArrayExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getFloatArrayExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getFloatArrayExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getFloatArrayExtra, "getFloatArrayExtra", "(Ljava/lang/String;)[F");
if (_m_Intent__getFloatArrayExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getFloatArrayExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getDoubleArrayExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getDoubleArrayExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getDoubleArrayExtra, "getDoubleArrayExtra", "(Ljava/lang/String;)[D");
if (_m_Intent__getDoubleArrayExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getDoubleArrayExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getStringArrayExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getStringArrayExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getStringArrayExtra, "getStringArrayExtra", "(Ljava/lang/String;)[Ljava/lang/String;");
if (_m_Intent__getStringArrayExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getStringArrayExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getCharSequenceArrayExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getCharSequenceArrayExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getCharSequenceArrayExtra, "getCharSequenceArrayExtra", "(Ljava/lang/String;)[Ljava/lang/CharSequence;");
if (_m_Intent__getCharSequenceArrayExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getCharSequenceArrayExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getBundleExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getBundleExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getBundleExtra, "getBundleExtra", "(Ljava/lang/String;)Landroid/os/Bundle;");
if (_m_Intent__getBundleExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getBundleExtra, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getExtras = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getExtras(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getExtras, "getExtras", "()Landroid/os/Bundle;");
if (_m_Intent__getExtras == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getExtras);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getFlags = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getFlags(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getFlags, "getFlags", "()I");
if (_m_Intent__getFlags == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Intent__getFlags);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Intent__getPackage = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getPackage(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getPackage, "getPackage", "()Ljava/lang/String;");
if (_m_Intent__getPackage == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getPackage);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getComponent = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getComponent(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getComponent, "getComponent", "()Landroid/content/ComponentName;");
if (_m_Intent__getComponent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getComponent);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__getSourceBounds = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__getSourceBounds(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__getSourceBounds, "getSourceBounds", "()Landroid/graphics/Rect;");
if (_m_Intent__getSourceBounds == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__getSourceBounds);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__resolveActivity = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__resolveActivity(jobject self_,jobject packageManager) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__resolveActivity, "resolveActivity", "(Landroid/content/pm/PackageManager;)Landroid/content/ComponentName;");
if (_m_Intent__resolveActivity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__resolveActivity, packageManager);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__resolveActivityInfo = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__resolveActivityInfo(jobject self_,jobject packageManager,int32_t i) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__resolveActivityInfo, "resolveActivityInfo", "(Landroid/content/pm/PackageManager;I)Landroid/content/pm/ActivityInfo;");
if (_m_Intent__resolveActivityInfo == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__resolveActivityInfo, packageManager, i);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__setAction = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setAction(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setAction, "setAction", "(Ljava/lang/String;)Landroid/content/Intent;");
if (_m_Intent__setAction == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__setAction, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__setData = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setData(jobject self_,jobject uri) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setData, "setData", "(Landroid/net/Uri;)Landroid/content/Intent;");
if (_m_Intent__setData == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__setData, uri);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__setDataAndNormalize = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setDataAndNormalize(jobject self_,jobject uri) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setDataAndNormalize, "setDataAndNormalize", "(Landroid/net/Uri;)Landroid/content/Intent;");
if (_m_Intent__setDataAndNormalize == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__setDataAndNormalize, uri);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__setType = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setType(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setType, "setType", "(Ljava/lang/String;)Landroid/content/Intent;");
if (_m_Intent__setType == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__setType, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__setTypeAndNormalize = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setTypeAndNormalize(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setTypeAndNormalize, "setTypeAndNormalize", "(Ljava/lang/String;)Landroid/content/Intent;");
if (_m_Intent__setTypeAndNormalize == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__setTypeAndNormalize, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__setDataAndType = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setDataAndType(jobject self_,jobject uri,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setDataAndType, "setDataAndType", "(Landroid/net/Uri;Ljava/lang/String;)Landroid/content/Intent;");
if (_m_Intent__setDataAndType == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__setDataAndType, uri, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__setDataAndTypeAndNormalize = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setDataAndTypeAndNormalize(jobject self_,jobject uri,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setDataAndTypeAndNormalize, "setDataAndTypeAndNormalize", "(Landroid/net/Uri;Ljava/lang/String;)Landroid/content/Intent;");
if (_m_Intent__setDataAndTypeAndNormalize == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__setDataAndTypeAndNormalize, uri, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__setIdentifier = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setIdentifier(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setIdentifier, "setIdentifier", "(Ljava/lang/String;)Landroid/content/Intent;");
if (_m_Intent__setIdentifier == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__setIdentifier, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__addCategory = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__addCategory(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__addCategory, "addCategory", "(Ljava/lang/String;)Landroid/content/Intent;");
if (_m_Intent__addCategory == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__addCategory, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__removeCategory = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__removeCategory(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__removeCategory, "removeCategory", "(Ljava/lang/String;)V");
if (_m_Intent__removeCategory == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Intent__removeCategory, string);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Intent__setSelector = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setSelector(jobject self_,jobject intent) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setSelector, "setSelector", "(Landroid/content/Intent;)V");
if (_m_Intent__setSelector == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Intent__setSelector, intent);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Intent__setClipData = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setClipData(jobject self_,jobject clipData) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setClipData, "setClipData", "(Landroid/content/ClipData;)V");
if (_m_Intent__setClipData == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Intent__setClipData, clipData);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Intent__putExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra(jobject self_,jobject string,uint8_t z) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra, "putExtra", "(Ljava/lang/String;Z)Landroid/content/Intent;");
if (_m_Intent__putExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra, string, z);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra1(jobject self_,jobject string,int8_t b) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra1, "putExtra", "(Ljava/lang/String;B)Landroid/content/Intent;");
if (_m_Intent__putExtra1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra1, string, b);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra2 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra2(jobject self_,jobject string,uint16_t c) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra2, "putExtra", "(Ljava/lang/String;C)Landroid/content/Intent;");
if (_m_Intent__putExtra2 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra2, string, c);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra3 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra3(jobject self_,jobject string,int16_t s) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra3, "putExtra", "(Ljava/lang/String;S)Landroid/content/Intent;");
if (_m_Intent__putExtra3 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra3, string, s);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra4 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra4(jobject self_,jobject string,int32_t i) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra4, "putExtra", "(Ljava/lang/String;I)Landroid/content/Intent;");
if (_m_Intent__putExtra4 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra4, string, i);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra5 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra5(jobject self_,jobject string,int64_t j) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra5, "putExtra", "(Ljava/lang/String;J)Landroid/content/Intent;");
if (_m_Intent__putExtra5 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra5, string, j);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra6 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra6(jobject self_,jobject string,float f) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra6, "putExtra", "(Ljava/lang/String;F)Landroid/content/Intent;");
if (_m_Intent__putExtra6 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra6, string, f);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra7 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra7(jobject self_,jobject string,double d) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra7, "putExtra", "(Ljava/lang/String;D)Landroid/content/Intent;");
if (_m_Intent__putExtra7 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra7, string, d);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra8 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra8(jobject self_,jobject string,jobject string1) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra8, "putExtra", "(Ljava/lang/String;Ljava/lang/String;)Landroid/content/Intent;");
if (_m_Intent__putExtra8 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra8, string, string1);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra9 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra9(jobject self_,jobject string,jobject charSequence) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra9, "putExtra", "(Ljava/lang/String;Ljava/lang/CharSequence;)Landroid/content/Intent;");
if (_m_Intent__putExtra9 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra9, string, charSequence);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra10 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra10(jobject self_,jobject string,jobject parcelable) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra10, "putExtra", "(Ljava/lang/String;Landroid/os/Parcelable;)Landroid/content/Intent;");
if (_m_Intent__putExtra10 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra10, string, parcelable);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra11 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra11(jobject self_,jobject string,jobject parcelables) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra11, "putExtra", "(Ljava/lang/String;[Landroid/os/Parcelable;)Landroid/content/Intent;");
if (_m_Intent__putExtra11 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra11, string, parcelables);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putParcelableArrayListExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putParcelableArrayListExtra(jobject self_,jobject string,jobject arrayList) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putParcelableArrayListExtra, "putParcelableArrayListExtra", "(Ljava/lang/String;Ljava/util/ArrayList;)Landroid/content/Intent;");
if (_m_Intent__putParcelableArrayListExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putParcelableArrayListExtra, string, arrayList);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putIntegerArrayListExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putIntegerArrayListExtra(jobject self_,jobject string,jobject arrayList) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putIntegerArrayListExtra, "putIntegerArrayListExtra", "(Ljava/lang/String;Ljava/util/ArrayList;)Landroid/content/Intent;");
if (_m_Intent__putIntegerArrayListExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putIntegerArrayListExtra, string, arrayList);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putStringArrayListExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putStringArrayListExtra(jobject self_,jobject string,jobject arrayList) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putStringArrayListExtra, "putStringArrayListExtra", "(Ljava/lang/String;Ljava/util/ArrayList;)Landroid/content/Intent;");
if (_m_Intent__putStringArrayListExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putStringArrayListExtra, string, arrayList);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putCharSequenceArrayListExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putCharSequenceArrayListExtra(jobject self_,jobject string,jobject arrayList) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putCharSequenceArrayListExtra, "putCharSequenceArrayListExtra", "(Ljava/lang/String;Ljava/util/ArrayList;)Landroid/content/Intent;");
if (_m_Intent__putCharSequenceArrayListExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putCharSequenceArrayListExtra, string, arrayList);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra12 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra12(jobject self_,jobject string,jobject serializable) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra12, "putExtra", "(Ljava/lang/String;Ljava/io/Serializable;)Landroid/content/Intent;");
if (_m_Intent__putExtra12 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra12, string, serializable);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra13 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra13(jobject self_,jobject string,jobject zs) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra13, "putExtra", "(Ljava/lang/String;[Z)Landroid/content/Intent;");
if (_m_Intent__putExtra13 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra13, string, zs);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra14 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra14(jobject self_,jobject string,jobject bs) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra14, "putExtra", "(Ljava/lang/String;[B)Landroid/content/Intent;");
if (_m_Intent__putExtra14 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra14, string, bs);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra15 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra15(jobject self_,jobject string,jobject ss) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra15, "putExtra", "(Ljava/lang/String;[S)Landroid/content/Intent;");
if (_m_Intent__putExtra15 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra15, string, ss);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra16 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra16(jobject self_,jobject string,jobject cs) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra16, "putExtra", "(Ljava/lang/String;[C)Landroid/content/Intent;");
if (_m_Intent__putExtra16 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra16, string, cs);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra17 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra17(jobject self_,jobject string,jobject is) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra17, "putExtra", "(Ljava/lang/String;[I)Landroid/content/Intent;");
if (_m_Intent__putExtra17 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra17, string, is);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra18 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra18(jobject self_,jobject string,jobject js) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra18, "putExtra", "(Ljava/lang/String;[J)Landroid/content/Intent;");
if (_m_Intent__putExtra18 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra18, string, js);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra19 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra19(jobject self_,jobject string,jobject fs) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra19, "putExtra", "(Ljava/lang/String;[F)Landroid/content/Intent;");
if (_m_Intent__putExtra19 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra19, string, fs);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra20 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra20(jobject self_,jobject string,jobject ds) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra20, "putExtra", "(Ljava/lang/String;[D)Landroid/content/Intent;");
if (_m_Intent__putExtra20 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra20, string, ds);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra21 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra21(jobject self_,jobject string,jobject strings) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra21, "putExtra", "(Ljava/lang/String;[Ljava/lang/String;)Landroid/content/Intent;");
if (_m_Intent__putExtra21 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra21, string, strings);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra22 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra22(jobject self_,jobject string,jobject charSequences) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra22, "putExtra", "(Ljava/lang/String;[Ljava/lang/CharSequence;)Landroid/content/Intent;");
if (_m_Intent__putExtra22 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra22, string, charSequences);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtra23 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtra23(jobject self_,jobject string,jobject bundle) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtra23, "putExtra", "(Ljava/lang/String;Landroid/os/Bundle;)Landroid/content/Intent;");
if (_m_Intent__putExtra23 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtra23, string, bundle);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtras = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtras(jobject self_,jobject intent) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtras, "putExtras", "(Landroid/content/Intent;)Landroid/content/Intent;");
if (_m_Intent__putExtras == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtras, intent);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__putExtras1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__putExtras1(jobject self_,jobject bundle) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__putExtras1, "putExtras", "(Landroid/os/Bundle;)Landroid/content/Intent;");
if (_m_Intent__putExtras1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__putExtras1, bundle);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__replaceExtras = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__replaceExtras(jobject self_,jobject intent) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__replaceExtras, "replaceExtras", "(Landroid/content/Intent;)Landroid/content/Intent;");
if (_m_Intent__replaceExtras == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__replaceExtras, intent);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__replaceExtras1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__replaceExtras1(jobject self_,jobject bundle) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__replaceExtras1, "replaceExtras", "(Landroid/os/Bundle;)Landroid/content/Intent;");
if (_m_Intent__replaceExtras1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__replaceExtras1, bundle);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__removeExtra = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__removeExtra(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__removeExtra, "removeExtra", "(Ljava/lang/String;)V");
if (_m_Intent__removeExtra == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Intent__removeExtra, string);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Intent__setFlags = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setFlags(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setFlags, "setFlags", "(I)Landroid/content/Intent;");
if (_m_Intent__setFlags == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__setFlags, i);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__addFlags = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__addFlags(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__addFlags, "addFlags", "(I)Landroid/content/Intent;");
if (_m_Intent__addFlags == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__addFlags, i);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__removeFlags = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__removeFlags(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__removeFlags, "removeFlags", "(I)V");
if (_m_Intent__removeFlags == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Intent__removeFlags, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Intent__setPackage = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setPackage(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setPackage, "setPackage", "(Ljava/lang/String;)Landroid/content/Intent;");
if (_m_Intent__setPackage == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__setPackage, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__setComponent = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setComponent(jobject self_,jobject componentName) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setComponent, "setComponent", "(Landroid/content/ComponentName;)Landroid/content/Intent;");
if (_m_Intent__setComponent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__setComponent, componentName);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__setClassName = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setClassName(jobject self_,jobject context,jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setClassName, "setClassName", "(Landroid/content/Context;Ljava/lang/String;)Landroid/content/Intent;");
if (_m_Intent__setClassName == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__setClassName, context, string);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__setClassName1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setClassName1(jobject self_,jobject string,jobject string1) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setClassName1, "setClassName", "(Ljava/lang/String;Ljava/lang/String;)Landroid/content/Intent;");
if (_m_Intent__setClassName1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__setClassName1, string, string1);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__setClass = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setClass(jobject self_,jobject context,jobject class) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setClass, "setClass", "(Landroid/content/Context;Ljava/lang/Class;)Landroid/content/Intent;");
if (_m_Intent__setClass == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__setClass, context, class);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__setSourceBounds = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__setSourceBounds(jobject self_,jobject rect) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__setSourceBounds, "setSourceBounds", "(Landroid/graphics/Rect;)V");
if (_m_Intent__setSourceBounds == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Intent__setSourceBounds, rect);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Intent__fillIn = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__fillIn(jobject self_,jobject intent,int32_t i) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__fillIn, "fillIn", "(Landroid/content/Intent;I)I");
if (_m_Intent__fillIn == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Intent__fillIn, intent, i);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Intent__filterEquals = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__filterEquals(jobject self_,jobject intent) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__filterEquals, "filterEquals", "(Landroid/content/Intent;)Z");
if (_m_Intent__filterEquals == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Intent__filterEquals, intent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Intent__filterHashCode = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__filterHashCode(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__filterHashCode, "filterHashCode", "()I");
if (_m_Intent__filterHashCode == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Intent__filterHashCode);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Intent__toString1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__toString1(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__toString1, "toString", "()Ljava/lang/String;");
if (_m_Intent__toString1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__toString1);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__toURI = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__toURI(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__toURI, "toURI", "()Ljava/lang/String;");
if (_m_Intent__toURI == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__toURI);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__toUri = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__toUri(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__toUri, "toUri", "(I)Ljava/lang/String;");
if (_m_Intent__toUri == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Intent__toUri, i);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__describeContents = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__describeContents(jobject self_) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__describeContents, "describeContents", "()I");
if (_m_Intent__describeContents == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Intent__describeContents);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Intent__writeToParcel = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__writeToParcel(jobject self_,jobject parcel,int32_t i) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__writeToParcel, "writeToParcel", "(Landroid/os/Parcel;I)V");
if (_m_Intent__writeToParcel == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Intent__writeToParcel, parcel, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Intent__readFromParcel = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__readFromParcel(jobject self_,jobject parcel) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Intent,
&_m_Intent__readFromParcel, "readFromParcel", "(Landroid/os/Parcel;)V");
if (_m_Intent__readFromParcel == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Intent__readFromParcel, parcel);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Intent__parseIntent = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__parseIntent(jobject resources,jobject xmlPullParser,jobject attributeSet) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Intent,
&_m_Intent__parseIntent, "parseIntent", "(Landroid/content/res/Resources;Lorg/xmlpull/v1/XmlPullParser;Landroid/util/AttributeSet;)Landroid/content/Intent;");
if (_m_Intent__parseIntent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Intent, _m_Intent__parseIntent, resources, xmlPullParser, attributeSet);
return to_global_ref_result(_result);
}
jmethodID _m_Intent__normalizeMimeType = NULL;
FFI_PLUGIN_EXPORT
JniResult Intent__normalizeMimeType(jobject string) {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Intent,
&_m_Intent__normalizeMimeType, "normalizeMimeType", "(Ljava/lang/String;)Ljava/lang/String;");
if (_m_Intent__normalizeMimeType == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Intent, _m_Intent__normalizeMimeType, string);
return to_global_ref_result(_result);
}
jfieldID _f_Intent__CREATOR = NULL;
FFI_PLUGIN_EXPORT
JniResult get_Intent__CREATOR() {
load_env();
load_class_global_ref(&_c_Intent, "android/content/Intent");
if (_c_Intent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_Intent, &_f_Intent__CREATOR, "CREATOR",
"Landroid/os/Parcelable$Creator;");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_Intent, _f_Intent__CREATOR);
return to_global_ref_result(_result);
}
// android.app.Activity
jclass _c_Activity = NULL;
jmethodID _m_Activity__new0 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__new0() {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__new0, "<init>", "()V");
if (_m_Activity__new0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_Activity, _m_Activity__new0);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__getIntent = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getIntent(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getIntent, "getIntent", "()Landroid/content/Intent;");
if (_m_Activity__getIntent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getIntent);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__setIntent = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setIntent(jobject self_,jobject intent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setIntent, "setIntent", "(Landroid/content/Intent;)V");
if (_m_Activity__setIntent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setIntent, intent);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setLocusContext = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setLocusContext(jobject self_,jobject locusId,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setLocusContext, "setLocusContext", "(Landroid/content/LocusId;Landroid/os/Bundle;)V");
if (_m_Activity__setLocusContext == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setLocusContext, locusId, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__getApplication = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getApplication(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getApplication, "getApplication", "()Landroid/app/Application;");
if (_m_Activity__getApplication == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getApplication);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__isChild = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__isChild(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__isChild, "isChild", "()Z");
if (_m_Activity__isChild == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__isChild);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__getParent = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getParent(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getParent, "getParent", "()Landroid/app/Activity;");
if (_m_Activity__getParent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getParent);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__getWindowManager = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getWindowManager(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getWindowManager, "getWindowManager", "()Landroid/view/WindowManager;");
if (_m_Activity__getWindowManager == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getWindowManager);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__getWindow = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getWindow(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getWindow, "getWindow", "()Landroid/view/Window;");
if (_m_Activity__getWindow == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getWindow);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__getLoaderManager = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getLoaderManager(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getLoaderManager, "getLoaderManager", "()Landroid/app/LoaderManager;");
if (_m_Activity__getLoaderManager == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getLoaderManager);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__getCurrentFocus = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getCurrentFocus(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getCurrentFocus, "getCurrentFocus", "()Landroid/view/View;");
if (_m_Activity__getCurrentFocus == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getCurrentFocus);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__attachBaseContext = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__attachBaseContext(jobject self_,jobject context) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__attachBaseContext, "attachBaseContext", "(Landroid/content/Context;)V");
if (_m_Activity__attachBaseContext == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__attachBaseContext, context);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__registerActivityLifecycleCallbacks = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__registerActivityLifecycleCallbacks(jobject self_,jobject activityLifecycleCallbacks) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__registerActivityLifecycleCallbacks, "registerActivityLifecycleCallbacks", "(Landroid/app/Application$ActivityLifecycleCallbacks;)V");
if (_m_Activity__registerActivityLifecycleCallbacks == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__registerActivityLifecycleCallbacks, activityLifecycleCallbacks);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__unregisterActivityLifecycleCallbacks = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__unregisterActivityLifecycleCallbacks(jobject self_,jobject activityLifecycleCallbacks) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__unregisterActivityLifecycleCallbacks, "unregisterActivityLifecycleCallbacks", "(Landroid/app/Application$ActivityLifecycleCallbacks;)V");
if (_m_Activity__unregisterActivityLifecycleCallbacks == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__unregisterActivityLifecycleCallbacks, activityLifecycleCallbacks);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__registerComponentCallbacks = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__registerComponentCallbacks(jobject self_,jobject componentCallbacks) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__registerComponentCallbacks, "registerComponentCallbacks", "(Landroid/content/ComponentCallbacks;)V");
if (_m_Activity__registerComponentCallbacks == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__registerComponentCallbacks, componentCallbacks);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__unregisterComponentCallbacks = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__unregisterComponentCallbacks(jobject self_,jobject componentCallbacks) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__unregisterComponentCallbacks, "unregisterComponentCallbacks", "(Landroid/content/ComponentCallbacks;)V");
if (_m_Activity__unregisterComponentCallbacks == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__unregisterComponentCallbacks, componentCallbacks);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onCreate = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onCreate(jobject self_,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onCreate, "onCreate", "(Landroid/os/Bundle;)V");
if (_m_Activity__onCreate == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onCreate, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__getSplashScreen = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getSplashScreen(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getSplashScreen, "getSplashScreen", "()Landroid/window/SplashScreen;");
if (_m_Activity__getSplashScreen == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getSplashScreen);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__onCreate1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onCreate1(jobject self_,jobject bundle,jobject persistableBundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onCreate1, "onCreate", "(Landroid/os/Bundle;Landroid/os/PersistableBundle;)V");
if (_m_Activity__onCreate1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onCreate1, bundle, persistableBundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onRestoreInstanceState = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onRestoreInstanceState(jobject self_,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onRestoreInstanceState, "onRestoreInstanceState", "(Landroid/os/Bundle;)V");
if (_m_Activity__onRestoreInstanceState == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onRestoreInstanceState, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onRestoreInstanceState1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onRestoreInstanceState1(jobject self_,jobject bundle,jobject persistableBundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onRestoreInstanceState1, "onRestoreInstanceState", "(Landroid/os/Bundle;Landroid/os/PersistableBundle;)V");
if (_m_Activity__onRestoreInstanceState1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onRestoreInstanceState1, bundle, persistableBundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onPostCreate = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onPostCreate(jobject self_,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onPostCreate, "onPostCreate", "(Landroid/os/Bundle;)V");
if (_m_Activity__onPostCreate == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onPostCreate, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onPostCreate1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onPostCreate1(jobject self_,jobject bundle,jobject persistableBundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onPostCreate1, "onPostCreate", "(Landroid/os/Bundle;Landroid/os/PersistableBundle;)V");
if (_m_Activity__onPostCreate1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onPostCreate1, bundle, persistableBundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onStart = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onStart(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onStart, "onStart", "()V");
if (_m_Activity__onStart == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onStart);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onRestart = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onRestart(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onRestart, "onRestart", "()V");
if (_m_Activity__onRestart == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onRestart);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onStateNotSaved = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onStateNotSaved(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onStateNotSaved, "onStateNotSaved", "()V");
if (_m_Activity__onStateNotSaved == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onStateNotSaved);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onResume = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onResume(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onResume, "onResume", "()V");
if (_m_Activity__onResume == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onResume);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onPostResume = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onPostResume(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onPostResume, "onPostResume", "()V");
if (_m_Activity__onPostResume == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onPostResume);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onTopResumedActivityChanged = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onTopResumedActivityChanged(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onTopResumedActivityChanged, "onTopResumedActivityChanged", "(Z)V");
if (_m_Activity__onTopResumedActivityChanged == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onTopResumedActivityChanged, z);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__isVoiceInteraction = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__isVoiceInteraction(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__isVoiceInteraction, "isVoiceInteraction", "()Z");
if (_m_Activity__isVoiceInteraction == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__isVoiceInteraction);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__isVoiceInteractionRoot = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__isVoiceInteractionRoot(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__isVoiceInteractionRoot, "isVoiceInteractionRoot", "()Z");
if (_m_Activity__isVoiceInteractionRoot == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__isVoiceInteractionRoot);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__getVoiceInteractor = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getVoiceInteractor(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getVoiceInteractor, "getVoiceInteractor", "()Landroid/app/VoiceInteractor;");
if (_m_Activity__getVoiceInteractor == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getVoiceInteractor);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__isLocalVoiceInteractionSupported = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__isLocalVoiceInteractionSupported(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__isLocalVoiceInteractionSupported, "isLocalVoiceInteractionSupported", "()Z");
if (_m_Activity__isLocalVoiceInteractionSupported == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__isLocalVoiceInteractionSupported);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__startLocalVoiceInteraction = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startLocalVoiceInteraction(jobject self_,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startLocalVoiceInteraction, "startLocalVoiceInteraction", "(Landroid/os/Bundle;)V");
if (_m_Activity__startLocalVoiceInteraction == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startLocalVoiceInteraction, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onLocalVoiceInteractionStarted = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onLocalVoiceInteractionStarted(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onLocalVoiceInteractionStarted, "onLocalVoiceInteractionStarted", "()V");
if (_m_Activity__onLocalVoiceInteractionStarted == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onLocalVoiceInteractionStarted);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onLocalVoiceInteractionStopped = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onLocalVoiceInteractionStopped(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onLocalVoiceInteractionStopped, "onLocalVoiceInteractionStopped", "()V");
if (_m_Activity__onLocalVoiceInteractionStopped == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onLocalVoiceInteractionStopped);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__stopLocalVoiceInteraction = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__stopLocalVoiceInteraction(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__stopLocalVoiceInteraction, "stopLocalVoiceInteraction", "()V");
if (_m_Activity__stopLocalVoiceInteraction == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__stopLocalVoiceInteraction);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onNewIntent = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onNewIntent(jobject self_,jobject intent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onNewIntent, "onNewIntent", "(Landroid/content/Intent;)V");
if (_m_Activity__onNewIntent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onNewIntent, intent);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onSaveInstanceState = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onSaveInstanceState(jobject self_,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onSaveInstanceState, "onSaveInstanceState", "(Landroid/os/Bundle;)V");
if (_m_Activity__onSaveInstanceState == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onSaveInstanceState, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onSaveInstanceState1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onSaveInstanceState1(jobject self_,jobject bundle,jobject persistableBundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onSaveInstanceState1, "onSaveInstanceState", "(Landroid/os/Bundle;Landroid/os/PersistableBundle;)V");
if (_m_Activity__onSaveInstanceState1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onSaveInstanceState1, bundle, persistableBundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onPause = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onPause(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onPause, "onPause", "()V");
if (_m_Activity__onPause == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onPause);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onUserLeaveHint = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onUserLeaveHint(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onUserLeaveHint, "onUserLeaveHint", "()V");
if (_m_Activity__onUserLeaveHint == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onUserLeaveHint);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onCreateThumbnail = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onCreateThumbnail(jobject self_,jobject bitmap,jobject canvas) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onCreateThumbnail, "onCreateThumbnail", "(Landroid/graphics/Bitmap;Landroid/graphics/Canvas;)Z");
if (_m_Activity__onCreateThumbnail == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onCreateThumbnail, bitmap, canvas);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onCreateDescription = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onCreateDescription(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onCreateDescription, "onCreateDescription", "()Ljava/lang/CharSequence;");
if (_m_Activity__onCreateDescription == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__onCreateDescription);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__onProvideAssistData = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onProvideAssistData(jobject self_,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onProvideAssistData, "onProvideAssistData", "(Landroid/os/Bundle;)V");
if (_m_Activity__onProvideAssistData == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onProvideAssistData, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onProvideAssistContent = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onProvideAssistContent(jobject self_,jobject assistContent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onProvideAssistContent, "onProvideAssistContent", "(Landroid/app/assist/AssistContent;)V");
if (_m_Activity__onProvideAssistContent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onProvideAssistContent, assistContent);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onGetDirectActions = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onGetDirectActions(jobject self_,jobject cancellationSignal,jobject consumer) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onGetDirectActions, "onGetDirectActions", "(Landroid/os/CancellationSignal;Ljava/util/function/Consumer;)V");
if (_m_Activity__onGetDirectActions == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onGetDirectActions, cancellationSignal, consumer);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onPerformDirectAction = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onPerformDirectAction(jobject self_,jobject string,jobject bundle,jobject cancellationSignal,jobject consumer) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onPerformDirectAction, "onPerformDirectAction", "(Ljava/lang/String;Landroid/os/Bundle;Landroid/os/CancellationSignal;Ljava/util/function/Consumer;)V");
if (_m_Activity__onPerformDirectAction == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onPerformDirectAction, string, bundle, cancellationSignal, consumer);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__requestShowKeyboardShortcuts = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__requestShowKeyboardShortcuts(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__requestShowKeyboardShortcuts, "requestShowKeyboardShortcuts", "()V");
if (_m_Activity__requestShowKeyboardShortcuts == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__requestShowKeyboardShortcuts);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__dismissKeyboardShortcutsHelper = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__dismissKeyboardShortcutsHelper(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__dismissKeyboardShortcutsHelper, "dismissKeyboardShortcutsHelper", "()V");
if (_m_Activity__dismissKeyboardShortcutsHelper == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__dismissKeyboardShortcutsHelper);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onProvideKeyboardShortcuts = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onProvideKeyboardShortcuts(jobject self_,jobject list,jobject menu,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onProvideKeyboardShortcuts, "onProvideKeyboardShortcuts", "(Ljava/util/List;Landroid/view/Menu;I)V");
if (_m_Activity__onProvideKeyboardShortcuts == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onProvideKeyboardShortcuts, list, menu, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__showAssist = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__showAssist(jobject self_,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__showAssist, "showAssist", "(Landroid/os/Bundle;)Z");
if (_m_Activity__showAssist == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__showAssist, bundle);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onStop = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onStop(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onStop, "onStop", "()V");
if (_m_Activity__onStop == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onStop);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onDestroy = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onDestroy(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onDestroy, "onDestroy", "()V");
if (_m_Activity__onDestroy == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onDestroy);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__reportFullyDrawn = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__reportFullyDrawn(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__reportFullyDrawn, "reportFullyDrawn", "()V");
if (_m_Activity__reportFullyDrawn == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__reportFullyDrawn);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onMultiWindowModeChanged = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onMultiWindowModeChanged(jobject self_,uint8_t z,jobject configuration) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onMultiWindowModeChanged, "onMultiWindowModeChanged", "(ZLandroid/content/res/Configuration;)V");
if (_m_Activity__onMultiWindowModeChanged == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onMultiWindowModeChanged, z, configuration);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onMultiWindowModeChanged1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onMultiWindowModeChanged1(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onMultiWindowModeChanged1, "onMultiWindowModeChanged", "(Z)V");
if (_m_Activity__onMultiWindowModeChanged1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onMultiWindowModeChanged1, z);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__isInMultiWindowMode = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__isInMultiWindowMode(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__isInMultiWindowMode, "isInMultiWindowMode", "()Z");
if (_m_Activity__isInMultiWindowMode == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__isInMultiWindowMode);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onPictureInPictureModeChanged = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onPictureInPictureModeChanged(jobject self_,uint8_t z,jobject configuration) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onPictureInPictureModeChanged, "onPictureInPictureModeChanged", "(ZLandroid/content/res/Configuration;)V");
if (_m_Activity__onPictureInPictureModeChanged == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onPictureInPictureModeChanged, z, configuration);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onPictureInPictureUiStateChanged = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onPictureInPictureUiStateChanged(jobject self_,jobject pictureInPictureUiState) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onPictureInPictureUiStateChanged, "onPictureInPictureUiStateChanged", "(Landroid/app/PictureInPictureUiState;)V");
if (_m_Activity__onPictureInPictureUiStateChanged == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onPictureInPictureUiStateChanged, pictureInPictureUiState);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onPictureInPictureModeChanged1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onPictureInPictureModeChanged1(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onPictureInPictureModeChanged1, "onPictureInPictureModeChanged", "(Z)V");
if (_m_Activity__onPictureInPictureModeChanged1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onPictureInPictureModeChanged1, z);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__isInPictureInPictureMode = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__isInPictureInPictureMode(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__isInPictureInPictureMode, "isInPictureInPictureMode", "()Z");
if (_m_Activity__isInPictureInPictureMode == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__isInPictureInPictureMode);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__enterPictureInPictureMode = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__enterPictureInPictureMode(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__enterPictureInPictureMode, "enterPictureInPictureMode", "()V");
if (_m_Activity__enterPictureInPictureMode == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__enterPictureInPictureMode);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__enterPictureInPictureMode1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__enterPictureInPictureMode1(jobject self_,jobject pictureInPictureParams) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__enterPictureInPictureMode1, "enterPictureInPictureMode", "(Landroid/app/PictureInPictureParams;)Z");
if (_m_Activity__enterPictureInPictureMode1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__enterPictureInPictureMode1, pictureInPictureParams);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__setPictureInPictureParams = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setPictureInPictureParams(jobject self_,jobject pictureInPictureParams) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setPictureInPictureParams, "setPictureInPictureParams", "(Landroid/app/PictureInPictureParams;)V");
if (_m_Activity__setPictureInPictureParams == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setPictureInPictureParams, pictureInPictureParams);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__getMaxNumPictureInPictureActions = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getMaxNumPictureInPictureActions(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getMaxNumPictureInPictureActions, "getMaxNumPictureInPictureActions", "()I");
if (_m_Activity__getMaxNumPictureInPictureActions == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Activity__getMaxNumPictureInPictureActions);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onPictureInPictureRequested = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onPictureInPictureRequested(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onPictureInPictureRequested, "onPictureInPictureRequested", "()Z");
if (_m_Activity__onPictureInPictureRequested == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onPictureInPictureRequested);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__setShouldDockBigOverlays = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setShouldDockBigOverlays(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setShouldDockBigOverlays, "setShouldDockBigOverlays", "(Z)V");
if (_m_Activity__setShouldDockBigOverlays == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setShouldDockBigOverlays, z);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__shouldDockBigOverlays = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__shouldDockBigOverlays(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__shouldDockBigOverlays, "shouldDockBigOverlays", "()Z");
if (_m_Activity__shouldDockBigOverlays == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__shouldDockBigOverlays);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onConfigurationChanged = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onConfigurationChanged(jobject self_,jobject configuration) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onConfigurationChanged, "onConfigurationChanged", "(Landroid/content/res/Configuration;)V");
if (_m_Activity__onConfigurationChanged == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onConfigurationChanged, configuration);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__getChangingConfigurations = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getChangingConfigurations(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getChangingConfigurations, "getChangingConfigurations", "()I");
if (_m_Activity__getChangingConfigurations == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Activity__getChangingConfigurations);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__getLastNonConfigurationInstance = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getLastNonConfigurationInstance(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getLastNonConfigurationInstance, "getLastNonConfigurationInstance", "()Ljava/lang/Object;");
if (_m_Activity__getLastNonConfigurationInstance == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getLastNonConfigurationInstance);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__onRetainNonConfigurationInstance = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onRetainNonConfigurationInstance(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onRetainNonConfigurationInstance, "onRetainNonConfigurationInstance", "()Ljava/lang/Object;");
if (_m_Activity__onRetainNonConfigurationInstance == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__onRetainNonConfigurationInstance);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__onLowMemory = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onLowMemory(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onLowMemory, "onLowMemory", "()V");
if (_m_Activity__onLowMemory == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onLowMemory);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onTrimMemory = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onTrimMemory(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onTrimMemory, "onTrimMemory", "(I)V");
if (_m_Activity__onTrimMemory == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onTrimMemory, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__getFragmentManager = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getFragmentManager(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getFragmentManager, "getFragmentManager", "()Landroid/app/FragmentManager;");
if (_m_Activity__getFragmentManager == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getFragmentManager);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__onAttachFragment = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onAttachFragment(jobject self_,jobject fragment) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onAttachFragment, "onAttachFragment", "(Landroid/app/Fragment;)V");
if (_m_Activity__onAttachFragment == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onAttachFragment, fragment);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__managedQuery = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__managedQuery(jobject self_,jobject uri,jobject strings,jobject string,jobject strings1,jobject string1) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__managedQuery, "managedQuery", "(Landroid/net/Uri;[Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;Ljava/lang/String;)Landroid/database/Cursor;");
if (_m_Activity__managedQuery == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__managedQuery, uri, strings, string, strings1, string1);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__startManagingCursor = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startManagingCursor(jobject self_,jobject cursor) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startManagingCursor, "startManagingCursor", "(Landroid/database/Cursor;)V");
if (_m_Activity__startManagingCursor == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startManagingCursor, cursor);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__stopManagingCursor = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__stopManagingCursor(jobject self_,jobject cursor) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__stopManagingCursor, "stopManagingCursor", "(Landroid/database/Cursor;)V");
if (_m_Activity__stopManagingCursor == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__stopManagingCursor, cursor);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__findViewById = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__findViewById(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__findViewById, "findViewById", "(I)Landroid/view/View;");
if (_m_Activity__findViewById == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__findViewById, i);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__requireViewById = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__requireViewById(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__requireViewById, "requireViewById", "(I)Landroid/view/View;");
if (_m_Activity__requireViewById == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__requireViewById, i);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__getActionBar = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getActionBar(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getActionBar, "getActionBar", "()Landroid/app/ActionBar;");
if (_m_Activity__getActionBar == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getActionBar);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__setActionBar = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setActionBar(jobject self_,jobject toolbar) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setActionBar, "setActionBar", "(Landroid/widget/Toolbar;)V");
if (_m_Activity__setActionBar == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setActionBar, toolbar);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setContentView = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setContentView(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setContentView, "setContentView", "(I)V");
if (_m_Activity__setContentView == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setContentView, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setContentView1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setContentView1(jobject self_,jobject view) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setContentView1, "setContentView", "(Landroid/view/View;)V");
if (_m_Activity__setContentView1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setContentView1, view);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setContentView2 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setContentView2(jobject self_,jobject view,jobject layoutParams) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setContentView2, "setContentView", "(Landroid/view/View;Landroid/view/ViewGroup$LayoutParams;)V");
if (_m_Activity__setContentView2 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setContentView2, view, layoutParams);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__addContentView = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__addContentView(jobject self_,jobject view,jobject layoutParams) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__addContentView, "addContentView", "(Landroid/view/View;Landroid/view/ViewGroup$LayoutParams;)V");
if (_m_Activity__addContentView == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__addContentView, view, layoutParams);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__getContentTransitionManager = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getContentTransitionManager(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getContentTransitionManager, "getContentTransitionManager", "()Landroid/transition/TransitionManager;");
if (_m_Activity__getContentTransitionManager == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getContentTransitionManager);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__setContentTransitionManager = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setContentTransitionManager(jobject self_,jobject transitionManager) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setContentTransitionManager, "setContentTransitionManager", "(Landroid/transition/TransitionManager;)V");
if (_m_Activity__setContentTransitionManager == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setContentTransitionManager, transitionManager);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__getContentScene = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getContentScene(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getContentScene, "getContentScene", "()Landroid/transition/Scene;");
if (_m_Activity__getContentScene == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getContentScene);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__setFinishOnTouchOutside = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setFinishOnTouchOutside(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setFinishOnTouchOutside, "setFinishOnTouchOutside", "(Z)V");
if (_m_Activity__setFinishOnTouchOutside == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setFinishOnTouchOutside, z);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setDefaultKeyMode = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setDefaultKeyMode(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setDefaultKeyMode, "setDefaultKeyMode", "(I)V");
if (_m_Activity__setDefaultKeyMode == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setDefaultKeyMode, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onKeyDown = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onKeyDown(jobject self_,int32_t i,jobject keyEvent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onKeyDown, "onKeyDown", "(ILandroid/view/KeyEvent;)Z");
if (_m_Activity__onKeyDown == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onKeyDown, i, keyEvent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onKeyLongPress = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onKeyLongPress(jobject self_,int32_t i,jobject keyEvent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onKeyLongPress, "onKeyLongPress", "(ILandroid/view/KeyEvent;)Z");
if (_m_Activity__onKeyLongPress == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onKeyLongPress, i, keyEvent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onKeyUp = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onKeyUp(jobject self_,int32_t i,jobject keyEvent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onKeyUp, "onKeyUp", "(ILandroid/view/KeyEvent;)Z");
if (_m_Activity__onKeyUp == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onKeyUp, i, keyEvent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onKeyMultiple = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onKeyMultiple(jobject self_,int32_t i,int32_t i1,jobject keyEvent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onKeyMultiple, "onKeyMultiple", "(IILandroid/view/KeyEvent;)Z");
if (_m_Activity__onKeyMultiple == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onKeyMultiple, i, i1, keyEvent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onBackPressed = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onBackPressed(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onBackPressed, "onBackPressed", "()V");
if (_m_Activity__onBackPressed == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onBackPressed);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onKeyShortcut = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onKeyShortcut(jobject self_,int32_t i,jobject keyEvent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onKeyShortcut, "onKeyShortcut", "(ILandroid/view/KeyEvent;)Z");
if (_m_Activity__onKeyShortcut == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onKeyShortcut, i, keyEvent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onTouchEvent = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onTouchEvent(jobject self_,jobject motionEvent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onTouchEvent, "onTouchEvent", "(Landroid/view/MotionEvent;)Z");
if (_m_Activity__onTouchEvent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onTouchEvent, motionEvent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onTrackballEvent = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onTrackballEvent(jobject self_,jobject motionEvent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onTrackballEvent, "onTrackballEvent", "(Landroid/view/MotionEvent;)Z");
if (_m_Activity__onTrackballEvent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onTrackballEvent, motionEvent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onGenericMotionEvent = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onGenericMotionEvent(jobject self_,jobject motionEvent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onGenericMotionEvent, "onGenericMotionEvent", "(Landroid/view/MotionEvent;)Z");
if (_m_Activity__onGenericMotionEvent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onGenericMotionEvent, motionEvent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onUserInteraction = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onUserInteraction(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onUserInteraction, "onUserInteraction", "()V");
if (_m_Activity__onUserInteraction == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onUserInteraction);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onWindowAttributesChanged = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onWindowAttributesChanged(jobject self_,jobject layoutParams) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onWindowAttributesChanged, "onWindowAttributesChanged", "(Landroid/view/WindowManager$LayoutParams;)V");
if (_m_Activity__onWindowAttributesChanged == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onWindowAttributesChanged, layoutParams);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onContentChanged = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onContentChanged(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onContentChanged, "onContentChanged", "()V");
if (_m_Activity__onContentChanged == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onContentChanged);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onWindowFocusChanged = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onWindowFocusChanged(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onWindowFocusChanged, "onWindowFocusChanged", "(Z)V");
if (_m_Activity__onWindowFocusChanged == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onWindowFocusChanged, z);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onAttachedToWindow = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onAttachedToWindow(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onAttachedToWindow, "onAttachedToWindow", "()V");
if (_m_Activity__onAttachedToWindow == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onAttachedToWindow);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onDetachedFromWindow = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onDetachedFromWindow(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onDetachedFromWindow, "onDetachedFromWindow", "()V");
if (_m_Activity__onDetachedFromWindow == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onDetachedFromWindow);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__hasWindowFocus = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__hasWindowFocus(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__hasWindowFocus, "hasWindowFocus", "()Z");
if (_m_Activity__hasWindowFocus == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__hasWindowFocus);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__dispatchKeyEvent = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__dispatchKeyEvent(jobject self_,jobject keyEvent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__dispatchKeyEvent, "dispatchKeyEvent", "(Landroid/view/KeyEvent;)Z");
if (_m_Activity__dispatchKeyEvent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__dispatchKeyEvent, keyEvent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__dispatchKeyShortcutEvent = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__dispatchKeyShortcutEvent(jobject self_,jobject keyEvent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__dispatchKeyShortcutEvent, "dispatchKeyShortcutEvent", "(Landroid/view/KeyEvent;)Z");
if (_m_Activity__dispatchKeyShortcutEvent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__dispatchKeyShortcutEvent, keyEvent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__dispatchTouchEvent = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__dispatchTouchEvent(jobject self_,jobject motionEvent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__dispatchTouchEvent, "dispatchTouchEvent", "(Landroid/view/MotionEvent;)Z");
if (_m_Activity__dispatchTouchEvent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__dispatchTouchEvent, motionEvent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__dispatchTrackballEvent = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__dispatchTrackballEvent(jobject self_,jobject motionEvent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__dispatchTrackballEvent, "dispatchTrackballEvent", "(Landroid/view/MotionEvent;)Z");
if (_m_Activity__dispatchTrackballEvent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__dispatchTrackballEvent, motionEvent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__dispatchGenericMotionEvent = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__dispatchGenericMotionEvent(jobject self_,jobject motionEvent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__dispatchGenericMotionEvent, "dispatchGenericMotionEvent", "(Landroid/view/MotionEvent;)Z");
if (_m_Activity__dispatchGenericMotionEvent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__dispatchGenericMotionEvent, motionEvent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__dispatchPopulateAccessibilityEvent = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__dispatchPopulateAccessibilityEvent(jobject self_,jobject accessibilityEvent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__dispatchPopulateAccessibilityEvent, "dispatchPopulateAccessibilityEvent", "(Landroid/view/accessibility/AccessibilityEvent;)Z");
if (_m_Activity__dispatchPopulateAccessibilityEvent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__dispatchPopulateAccessibilityEvent, accessibilityEvent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onCreatePanelView = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onCreatePanelView(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onCreatePanelView, "onCreatePanelView", "(I)Landroid/view/View;");
if (_m_Activity__onCreatePanelView == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__onCreatePanelView, i);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__onCreatePanelMenu = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onCreatePanelMenu(jobject self_,int32_t i,jobject menu) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onCreatePanelMenu, "onCreatePanelMenu", "(ILandroid/view/Menu;)Z");
if (_m_Activity__onCreatePanelMenu == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onCreatePanelMenu, i, menu);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onPreparePanel = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onPreparePanel(jobject self_,int32_t i,jobject view,jobject menu) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onPreparePanel, "onPreparePanel", "(ILandroid/view/View;Landroid/view/Menu;)Z");
if (_m_Activity__onPreparePanel == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onPreparePanel, i, view, menu);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onMenuOpened = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onMenuOpened(jobject self_,int32_t i,jobject menu) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onMenuOpened, "onMenuOpened", "(ILandroid/view/Menu;)Z");
if (_m_Activity__onMenuOpened == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onMenuOpened, i, menu);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onMenuItemSelected = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onMenuItemSelected(jobject self_,int32_t i,jobject menuItem) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onMenuItemSelected, "onMenuItemSelected", "(ILandroid/view/MenuItem;)Z");
if (_m_Activity__onMenuItemSelected == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onMenuItemSelected, i, menuItem);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onPanelClosed = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onPanelClosed(jobject self_,int32_t i,jobject menu) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onPanelClosed, "onPanelClosed", "(ILandroid/view/Menu;)V");
if (_m_Activity__onPanelClosed == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onPanelClosed, i, menu);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__invalidateOptionsMenu = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__invalidateOptionsMenu(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__invalidateOptionsMenu, "invalidateOptionsMenu", "()V");
if (_m_Activity__invalidateOptionsMenu == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__invalidateOptionsMenu);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onCreateOptionsMenu = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onCreateOptionsMenu(jobject self_,jobject menu) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onCreateOptionsMenu, "onCreateOptionsMenu", "(Landroid/view/Menu;)Z");
if (_m_Activity__onCreateOptionsMenu == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onCreateOptionsMenu, menu);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onPrepareOptionsMenu = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onPrepareOptionsMenu(jobject self_,jobject menu) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onPrepareOptionsMenu, "onPrepareOptionsMenu", "(Landroid/view/Menu;)Z");
if (_m_Activity__onPrepareOptionsMenu == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onPrepareOptionsMenu, menu);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onOptionsItemSelected = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onOptionsItemSelected(jobject self_,jobject menuItem) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onOptionsItemSelected, "onOptionsItemSelected", "(Landroid/view/MenuItem;)Z");
if (_m_Activity__onOptionsItemSelected == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onOptionsItemSelected, menuItem);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onNavigateUp = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onNavigateUp(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onNavigateUp, "onNavigateUp", "()Z");
if (_m_Activity__onNavigateUp == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onNavigateUp);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onNavigateUpFromChild = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onNavigateUpFromChild(jobject self_,jobject activity) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onNavigateUpFromChild, "onNavigateUpFromChild", "(Landroid/app/Activity;)Z");
if (_m_Activity__onNavigateUpFromChild == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onNavigateUpFromChild, activity);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onCreateNavigateUpTaskStack = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onCreateNavigateUpTaskStack(jobject self_,jobject taskStackBuilder) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onCreateNavigateUpTaskStack, "onCreateNavigateUpTaskStack", "(Landroid/app/TaskStackBuilder;)V");
if (_m_Activity__onCreateNavigateUpTaskStack == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onCreateNavigateUpTaskStack, taskStackBuilder);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onPrepareNavigateUpTaskStack = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onPrepareNavigateUpTaskStack(jobject self_,jobject taskStackBuilder) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onPrepareNavigateUpTaskStack, "onPrepareNavigateUpTaskStack", "(Landroid/app/TaskStackBuilder;)V");
if (_m_Activity__onPrepareNavigateUpTaskStack == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onPrepareNavigateUpTaskStack, taskStackBuilder);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onOptionsMenuClosed = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onOptionsMenuClosed(jobject self_,jobject menu) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onOptionsMenuClosed, "onOptionsMenuClosed", "(Landroid/view/Menu;)V");
if (_m_Activity__onOptionsMenuClosed == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onOptionsMenuClosed, menu);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__openOptionsMenu = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__openOptionsMenu(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__openOptionsMenu, "openOptionsMenu", "()V");
if (_m_Activity__openOptionsMenu == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__openOptionsMenu);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__closeOptionsMenu = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__closeOptionsMenu(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__closeOptionsMenu, "closeOptionsMenu", "()V");
if (_m_Activity__closeOptionsMenu == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__closeOptionsMenu);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onCreateContextMenu = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onCreateContextMenu(jobject self_,jobject contextMenu,jobject view,jobject contextMenuInfo) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onCreateContextMenu, "onCreateContextMenu", "(Landroid/view/ContextMenu;Landroid/view/View;Landroid/view/ContextMenu$ContextMenuInfo;)V");
if (_m_Activity__onCreateContextMenu == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onCreateContextMenu, contextMenu, view, contextMenuInfo);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__registerForContextMenu = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__registerForContextMenu(jobject self_,jobject view) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__registerForContextMenu, "registerForContextMenu", "(Landroid/view/View;)V");
if (_m_Activity__registerForContextMenu == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__registerForContextMenu, view);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__unregisterForContextMenu = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__unregisterForContextMenu(jobject self_,jobject view) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__unregisterForContextMenu, "unregisterForContextMenu", "(Landroid/view/View;)V");
if (_m_Activity__unregisterForContextMenu == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__unregisterForContextMenu, view);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__openContextMenu = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__openContextMenu(jobject self_,jobject view) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__openContextMenu, "openContextMenu", "(Landroid/view/View;)V");
if (_m_Activity__openContextMenu == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__openContextMenu, view);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__closeContextMenu = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__closeContextMenu(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__closeContextMenu, "closeContextMenu", "()V");
if (_m_Activity__closeContextMenu == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__closeContextMenu);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onContextItemSelected = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onContextItemSelected(jobject self_,jobject menuItem) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onContextItemSelected, "onContextItemSelected", "(Landroid/view/MenuItem;)Z");
if (_m_Activity__onContextItemSelected == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onContextItemSelected, menuItem);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onContextMenuClosed = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onContextMenuClosed(jobject self_,jobject menu) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onContextMenuClosed, "onContextMenuClosed", "(Landroid/view/Menu;)V");
if (_m_Activity__onContextMenuClosed == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onContextMenuClosed, menu);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onCreateDialog = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onCreateDialog(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onCreateDialog, "onCreateDialog", "(I)Landroid/app/Dialog;");
if (_m_Activity__onCreateDialog == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__onCreateDialog, i);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__onCreateDialog1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onCreateDialog1(jobject self_,int32_t i,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onCreateDialog1, "onCreateDialog", "(ILandroid/os/Bundle;)Landroid/app/Dialog;");
if (_m_Activity__onCreateDialog1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__onCreateDialog1, i, bundle);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__onPrepareDialog = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onPrepareDialog(jobject self_,int32_t i,jobject dialog) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onPrepareDialog, "onPrepareDialog", "(ILandroid/app/Dialog;)V");
if (_m_Activity__onPrepareDialog == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onPrepareDialog, i, dialog);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onPrepareDialog1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onPrepareDialog1(jobject self_,int32_t i,jobject dialog,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onPrepareDialog1, "onPrepareDialog", "(ILandroid/app/Dialog;Landroid/os/Bundle;)V");
if (_m_Activity__onPrepareDialog1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onPrepareDialog1, i, dialog, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__showDialog = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__showDialog(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__showDialog, "showDialog", "(I)V");
if (_m_Activity__showDialog == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__showDialog, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__showDialog1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__showDialog1(jobject self_,int32_t i,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__showDialog1, "showDialog", "(ILandroid/os/Bundle;)Z");
if (_m_Activity__showDialog1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__showDialog1, i, bundle);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__dismissDialog = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__dismissDialog(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__dismissDialog, "dismissDialog", "(I)V");
if (_m_Activity__dismissDialog == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__dismissDialog, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__removeDialog = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__removeDialog(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__removeDialog, "removeDialog", "(I)V");
if (_m_Activity__removeDialog == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__removeDialog, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onSearchRequested = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onSearchRequested(jobject self_,jobject searchEvent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onSearchRequested, "onSearchRequested", "(Landroid/view/SearchEvent;)Z");
if (_m_Activity__onSearchRequested == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onSearchRequested, searchEvent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onSearchRequested1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onSearchRequested1(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onSearchRequested1, "onSearchRequested", "()Z");
if (_m_Activity__onSearchRequested1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__onSearchRequested1);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__getSearchEvent = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getSearchEvent(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getSearchEvent, "getSearchEvent", "()Landroid/view/SearchEvent;");
if (_m_Activity__getSearchEvent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getSearchEvent);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__startSearch = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startSearch(jobject self_,jobject string,uint8_t z,jobject bundle,uint8_t z1) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startSearch, "startSearch", "(Ljava/lang/String;ZLandroid/os/Bundle;Z)V");
if (_m_Activity__startSearch == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startSearch, string, z, bundle, z1);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__triggerSearch = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__triggerSearch(jobject self_,jobject string,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__triggerSearch, "triggerSearch", "(Ljava/lang/String;Landroid/os/Bundle;)V");
if (_m_Activity__triggerSearch == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__triggerSearch, string, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__takeKeyEvents = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__takeKeyEvents(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__takeKeyEvents, "takeKeyEvents", "(Z)V");
if (_m_Activity__takeKeyEvents == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__takeKeyEvents, z);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__requestWindowFeature = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__requestWindowFeature(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__requestWindowFeature, "requestWindowFeature", "(I)Z");
if (_m_Activity__requestWindowFeature == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__requestWindowFeature, i);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__setFeatureDrawableResource = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setFeatureDrawableResource(jobject self_,int32_t i,int32_t i1) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setFeatureDrawableResource, "setFeatureDrawableResource", "(II)V");
if (_m_Activity__setFeatureDrawableResource == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setFeatureDrawableResource, i, i1);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setFeatureDrawableUri = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setFeatureDrawableUri(jobject self_,int32_t i,jobject uri) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setFeatureDrawableUri, "setFeatureDrawableUri", "(ILandroid/net/Uri;)V");
if (_m_Activity__setFeatureDrawableUri == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setFeatureDrawableUri, i, uri);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setFeatureDrawable = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setFeatureDrawable(jobject self_,int32_t i,jobject drawable) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setFeatureDrawable, "setFeatureDrawable", "(ILandroid/graphics/drawable/Drawable;)V");
if (_m_Activity__setFeatureDrawable == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setFeatureDrawable, i, drawable);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setFeatureDrawableAlpha = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setFeatureDrawableAlpha(jobject self_,int32_t i,int32_t i1) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setFeatureDrawableAlpha, "setFeatureDrawableAlpha", "(II)V");
if (_m_Activity__setFeatureDrawableAlpha == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setFeatureDrawableAlpha, i, i1);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__getLayoutInflater = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getLayoutInflater(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getLayoutInflater, "getLayoutInflater", "()Landroid/view/LayoutInflater;");
if (_m_Activity__getLayoutInflater == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getLayoutInflater);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__getMenuInflater = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getMenuInflater(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getMenuInflater, "getMenuInflater", "()Landroid/view/MenuInflater;");
if (_m_Activity__getMenuInflater == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getMenuInflater);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__setTheme = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setTheme(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setTheme, "setTheme", "(I)V");
if (_m_Activity__setTheme == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setTheme, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onApplyThemeResource = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onApplyThemeResource(jobject self_,jobject theme,int32_t i,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onApplyThemeResource, "onApplyThemeResource", "(Landroid/content/res/Resources$Theme;IZ)V");
if (_m_Activity__onApplyThemeResource == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onApplyThemeResource, theme, i, z);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__requestPermissions = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__requestPermissions(jobject self_,jobject strings,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__requestPermissions, "requestPermissions", "([Ljava/lang/String;I)V");
if (_m_Activity__requestPermissions == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__requestPermissions, strings, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onRequestPermissionsResult = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onRequestPermissionsResult(jobject self_,int32_t i,jobject strings,jobject is) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onRequestPermissionsResult, "onRequestPermissionsResult", "(I[Ljava/lang/String;[I)V");
if (_m_Activity__onRequestPermissionsResult == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onRequestPermissionsResult, i, strings, is);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__shouldShowRequestPermissionRationale = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__shouldShowRequestPermissionRationale(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__shouldShowRequestPermissionRationale, "shouldShowRequestPermissionRationale", "(Ljava/lang/String;)Z");
if (_m_Activity__shouldShowRequestPermissionRationale == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__shouldShowRequestPermissionRationale, string);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__startActivityForResult = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startActivityForResult(jobject self_,jobject intent,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startActivityForResult, "startActivityForResult", "(Landroid/content/Intent;I)V");
if (_m_Activity__startActivityForResult == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startActivityForResult, intent, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__startActivityForResult1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startActivityForResult1(jobject self_,jobject intent,int32_t i,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startActivityForResult1, "startActivityForResult", "(Landroid/content/Intent;ILandroid/os/Bundle;)V");
if (_m_Activity__startActivityForResult1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startActivityForResult1, intent, i, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__isActivityTransitionRunning = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__isActivityTransitionRunning(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__isActivityTransitionRunning, "isActivityTransitionRunning", "()Z");
if (_m_Activity__isActivityTransitionRunning == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__isActivityTransitionRunning);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__startIntentSenderForResult = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startIntentSenderForResult(jobject self_,jobject intentSender,int32_t i,jobject intent,int32_t i1,int32_t i2,int32_t i3) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startIntentSenderForResult, "startIntentSenderForResult", "(Landroid/content/IntentSender;ILandroid/content/Intent;III)V");
if (_m_Activity__startIntentSenderForResult == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startIntentSenderForResult, intentSender, i, intent, i1, i2, i3);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__startIntentSenderForResult1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startIntentSenderForResult1(jobject self_,jobject intentSender,int32_t i,jobject intent,int32_t i1,int32_t i2,int32_t i3,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startIntentSenderForResult1, "startIntentSenderForResult", "(Landroid/content/IntentSender;ILandroid/content/Intent;IIILandroid/os/Bundle;)V");
if (_m_Activity__startIntentSenderForResult1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startIntentSenderForResult1, intentSender, i, intent, i1, i2, i3, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__startActivity = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startActivity(jobject self_,jobject intent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startActivity, "startActivity", "(Landroid/content/Intent;)V");
if (_m_Activity__startActivity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startActivity, intent);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__startActivity1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startActivity1(jobject self_,jobject intent,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startActivity1, "startActivity", "(Landroid/content/Intent;Landroid/os/Bundle;)V");
if (_m_Activity__startActivity1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startActivity1, intent, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__startActivities = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startActivities(jobject self_,jobject intents) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startActivities, "startActivities", "([Landroid/content/Intent;)V");
if (_m_Activity__startActivities == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startActivities, intents);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__startActivities1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startActivities1(jobject self_,jobject intents,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startActivities1, "startActivities", "([Landroid/content/Intent;Landroid/os/Bundle;)V");
if (_m_Activity__startActivities1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startActivities1, intents, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__startIntentSender = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startIntentSender(jobject self_,jobject intentSender,jobject intent,int32_t i,int32_t i1,int32_t i2) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startIntentSender, "startIntentSender", "(Landroid/content/IntentSender;Landroid/content/Intent;III)V");
if (_m_Activity__startIntentSender == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startIntentSender, intentSender, intent, i, i1, i2);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__startIntentSender1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startIntentSender1(jobject self_,jobject intentSender,jobject intent,int32_t i,int32_t i1,int32_t i2,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startIntentSender1, "startIntentSender", "(Landroid/content/IntentSender;Landroid/content/Intent;IIILandroid/os/Bundle;)V");
if (_m_Activity__startIntentSender1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startIntentSender1, intentSender, intent, i, i1, i2, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__startActivityIfNeeded = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startActivityIfNeeded(jobject self_,jobject intent,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startActivityIfNeeded, "startActivityIfNeeded", "(Landroid/content/Intent;I)Z");
if (_m_Activity__startActivityIfNeeded == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__startActivityIfNeeded, intent, i);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__startActivityIfNeeded1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startActivityIfNeeded1(jobject self_,jobject intent,int32_t i,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startActivityIfNeeded1, "startActivityIfNeeded", "(Landroid/content/Intent;ILandroid/os/Bundle;)Z");
if (_m_Activity__startActivityIfNeeded1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__startActivityIfNeeded1, intent, i, bundle);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__startNextMatchingActivity = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startNextMatchingActivity(jobject self_,jobject intent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startNextMatchingActivity, "startNextMatchingActivity", "(Landroid/content/Intent;)Z");
if (_m_Activity__startNextMatchingActivity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__startNextMatchingActivity, intent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__startNextMatchingActivity1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startNextMatchingActivity1(jobject self_,jobject intent,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startNextMatchingActivity1, "startNextMatchingActivity", "(Landroid/content/Intent;Landroid/os/Bundle;)Z");
if (_m_Activity__startNextMatchingActivity1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__startNextMatchingActivity1, intent, bundle);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__startActivityFromChild = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startActivityFromChild(jobject self_,jobject activity,jobject intent,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startActivityFromChild, "startActivityFromChild", "(Landroid/app/Activity;Landroid/content/Intent;I)V");
if (_m_Activity__startActivityFromChild == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startActivityFromChild, activity, intent, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__startActivityFromChild1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startActivityFromChild1(jobject self_,jobject activity,jobject intent,int32_t i,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startActivityFromChild1, "startActivityFromChild", "(Landroid/app/Activity;Landroid/content/Intent;ILandroid/os/Bundle;)V");
if (_m_Activity__startActivityFromChild1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startActivityFromChild1, activity, intent, i, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__startActivityFromFragment = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startActivityFromFragment(jobject self_,jobject fragment,jobject intent,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startActivityFromFragment, "startActivityFromFragment", "(Landroid/app/Fragment;Landroid/content/Intent;I)V");
if (_m_Activity__startActivityFromFragment == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startActivityFromFragment, fragment, intent, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__startActivityFromFragment1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startActivityFromFragment1(jobject self_,jobject fragment,jobject intent,int32_t i,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startActivityFromFragment1, "startActivityFromFragment", "(Landroid/app/Fragment;Landroid/content/Intent;ILandroid/os/Bundle;)V");
if (_m_Activity__startActivityFromFragment1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startActivityFromFragment1, fragment, intent, i, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__startIntentSenderFromChild = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startIntentSenderFromChild(jobject self_,jobject activity,jobject intentSender,int32_t i,jobject intent,int32_t i1,int32_t i2,int32_t i3) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startIntentSenderFromChild, "startIntentSenderFromChild", "(Landroid/app/Activity;Landroid/content/IntentSender;ILandroid/content/Intent;III)V");
if (_m_Activity__startIntentSenderFromChild == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startIntentSenderFromChild, activity, intentSender, i, intent, i1, i2, i3);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__startIntentSenderFromChild1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startIntentSenderFromChild1(jobject self_,jobject activity,jobject intentSender,int32_t i,jobject intent,int32_t i1,int32_t i2,int32_t i3,jobject bundle) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startIntentSenderFromChild1, "startIntentSenderFromChild", "(Landroid/app/Activity;Landroid/content/IntentSender;ILandroid/content/Intent;IIILandroid/os/Bundle;)V");
if (_m_Activity__startIntentSenderFromChild1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startIntentSenderFromChild1, activity, intentSender, i, intent, i1, i2, i3, bundle);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__overridePendingTransition = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__overridePendingTransition(jobject self_,int32_t i,int32_t i1) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__overridePendingTransition, "overridePendingTransition", "(II)V");
if (_m_Activity__overridePendingTransition == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__overridePendingTransition, i, i1);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__overridePendingTransition1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__overridePendingTransition1(jobject self_,int32_t i,int32_t i1,int32_t i2) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__overridePendingTransition1, "overridePendingTransition", "(III)V");
if (_m_Activity__overridePendingTransition1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__overridePendingTransition1, i, i1, i2);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setResult = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setResult(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setResult, "setResult", "(I)V");
if (_m_Activity__setResult == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setResult, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setResult1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setResult1(jobject self_,int32_t i,jobject intent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setResult1, "setResult", "(ILandroid/content/Intent;)V");
if (_m_Activity__setResult1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setResult1, i, intent);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__getReferrer = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getReferrer(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getReferrer, "getReferrer", "()Landroid/net/Uri;");
if (_m_Activity__getReferrer == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getReferrer);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__onProvideReferrer = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onProvideReferrer(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onProvideReferrer, "onProvideReferrer", "()Landroid/net/Uri;");
if (_m_Activity__onProvideReferrer == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__onProvideReferrer);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__getCallingPackage = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getCallingPackage(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getCallingPackage, "getCallingPackage", "()Ljava/lang/String;");
if (_m_Activity__getCallingPackage == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getCallingPackage);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__getCallingActivity = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getCallingActivity(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getCallingActivity, "getCallingActivity", "()Landroid/content/ComponentName;");
if (_m_Activity__getCallingActivity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getCallingActivity);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__setVisible = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setVisible(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setVisible, "setVisible", "(Z)V");
if (_m_Activity__setVisible == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setVisible, z);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__isFinishing = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__isFinishing(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__isFinishing, "isFinishing", "()Z");
if (_m_Activity__isFinishing == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__isFinishing);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__isDestroyed = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__isDestroyed(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__isDestroyed, "isDestroyed", "()Z");
if (_m_Activity__isDestroyed == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__isDestroyed);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__isChangingConfigurations = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__isChangingConfigurations(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__isChangingConfigurations, "isChangingConfigurations", "()Z");
if (_m_Activity__isChangingConfigurations == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__isChangingConfigurations);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__recreate = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__recreate(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__recreate, "recreate", "()V");
if (_m_Activity__recreate == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__recreate);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__finish = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__finish(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__finish, "finish", "()V");
if (_m_Activity__finish == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__finish);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__finishAffinity = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__finishAffinity(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__finishAffinity, "finishAffinity", "()V");
if (_m_Activity__finishAffinity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__finishAffinity);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__finishFromChild = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__finishFromChild(jobject self_,jobject activity) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__finishFromChild, "finishFromChild", "(Landroid/app/Activity;)V");
if (_m_Activity__finishFromChild == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__finishFromChild, activity);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__finishAfterTransition = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__finishAfterTransition(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__finishAfterTransition, "finishAfterTransition", "()V");
if (_m_Activity__finishAfterTransition == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__finishAfterTransition);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__finishActivity = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__finishActivity(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__finishActivity, "finishActivity", "(I)V");
if (_m_Activity__finishActivity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__finishActivity, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__finishActivityFromChild = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__finishActivityFromChild(jobject self_,jobject activity,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__finishActivityFromChild, "finishActivityFromChild", "(Landroid/app/Activity;I)V");
if (_m_Activity__finishActivityFromChild == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__finishActivityFromChild, activity, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__finishAndRemoveTask = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__finishAndRemoveTask(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__finishAndRemoveTask, "finishAndRemoveTask", "()V");
if (_m_Activity__finishAndRemoveTask == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__finishAndRemoveTask);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__releaseInstance = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__releaseInstance(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__releaseInstance, "releaseInstance", "()Z");
if (_m_Activity__releaseInstance == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__releaseInstance);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onActivityResult = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onActivityResult(jobject self_,int32_t i,int32_t i1,jobject intent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onActivityResult, "onActivityResult", "(IILandroid/content/Intent;)V");
if (_m_Activity__onActivityResult == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onActivityResult, i, i1, intent);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onActivityReenter = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onActivityReenter(jobject self_,int32_t i,jobject intent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onActivityReenter, "onActivityReenter", "(ILandroid/content/Intent;)V");
if (_m_Activity__onActivityReenter == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onActivityReenter, i, intent);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__createPendingResult = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__createPendingResult(jobject self_,int32_t i,jobject intent,int32_t i1) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__createPendingResult, "createPendingResult", "(ILandroid/content/Intent;I)Landroid/app/PendingIntent;");
if (_m_Activity__createPendingResult == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__createPendingResult, i, intent, i1);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__setRequestedOrientation = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setRequestedOrientation(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setRequestedOrientation, "setRequestedOrientation", "(I)V");
if (_m_Activity__setRequestedOrientation == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setRequestedOrientation, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__getRequestedOrientation = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getRequestedOrientation(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getRequestedOrientation, "getRequestedOrientation", "()I");
if (_m_Activity__getRequestedOrientation == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Activity__getRequestedOrientation);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__getTaskId = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getTaskId(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getTaskId, "getTaskId", "()I");
if (_m_Activity__getTaskId == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Activity__getTaskId);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__isTaskRoot = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__isTaskRoot(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__isTaskRoot, "isTaskRoot", "()Z");
if (_m_Activity__isTaskRoot == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__isTaskRoot);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__moveTaskToBack = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__moveTaskToBack(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__moveTaskToBack, "moveTaskToBack", "(Z)Z");
if (_m_Activity__moveTaskToBack == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__moveTaskToBack, z);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__getLocalClassName = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getLocalClassName(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getLocalClassName, "getLocalClassName", "()Ljava/lang/String;");
if (_m_Activity__getLocalClassName == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getLocalClassName);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__getComponentName = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getComponentName(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getComponentName, "getComponentName", "()Landroid/content/ComponentName;");
if (_m_Activity__getComponentName == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getComponentName);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__getPreferences = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getPreferences(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getPreferences, "getPreferences", "(I)Landroid/content/SharedPreferences;");
if (_m_Activity__getPreferences == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getPreferences, i);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__isLaunchedFromBubble = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__isLaunchedFromBubble(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__isLaunchedFromBubble, "isLaunchedFromBubble", "()Z");
if (_m_Activity__isLaunchedFromBubble == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__isLaunchedFromBubble);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__getSystemService = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getSystemService(jobject self_,jobject string) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getSystemService, "getSystemService", "(Ljava/lang/String;)Ljava/lang/Object;");
if (_m_Activity__getSystemService == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getSystemService, string);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__setTitle = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setTitle(jobject self_,jobject charSequence) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setTitle, "setTitle", "(Ljava/lang/CharSequence;)V");
if (_m_Activity__setTitle == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setTitle, charSequence);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setTitle1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setTitle1(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setTitle1, "setTitle", "(I)V");
if (_m_Activity__setTitle1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setTitle1, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setTitleColor = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setTitleColor(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setTitleColor, "setTitleColor", "(I)V");
if (_m_Activity__setTitleColor == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setTitleColor, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__getTitle = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getTitle(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getTitle, "getTitle", "()Ljava/lang/CharSequence;");
if (_m_Activity__getTitle == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getTitle);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__getTitleColor = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getTitleColor(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getTitleColor, "getTitleColor", "()I");
if (_m_Activity__getTitleColor == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Activity__getTitleColor);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onTitleChanged = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onTitleChanged(jobject self_,jobject charSequence,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onTitleChanged, "onTitleChanged", "(Ljava/lang/CharSequence;I)V");
if (_m_Activity__onTitleChanged == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onTitleChanged, charSequence, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onChildTitleChanged = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onChildTitleChanged(jobject self_,jobject activity,jobject charSequence) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onChildTitleChanged, "onChildTitleChanged", "(Landroid/app/Activity;Ljava/lang/CharSequence;)V");
if (_m_Activity__onChildTitleChanged == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onChildTitleChanged, activity, charSequence);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setTaskDescription = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setTaskDescription(jobject self_,jobject taskDescription) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setTaskDescription, "setTaskDescription", "(Landroid/app/ActivityManager$TaskDescription;)V");
if (_m_Activity__setTaskDescription == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setTaskDescription, taskDescription);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setProgressBarVisibility = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setProgressBarVisibility(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setProgressBarVisibility, "setProgressBarVisibility", "(Z)V");
if (_m_Activity__setProgressBarVisibility == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setProgressBarVisibility, z);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setProgressBarIndeterminateVisibility = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setProgressBarIndeterminateVisibility(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setProgressBarIndeterminateVisibility, "setProgressBarIndeterminateVisibility", "(Z)V");
if (_m_Activity__setProgressBarIndeterminateVisibility == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setProgressBarIndeterminateVisibility, z);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setProgressBarIndeterminate = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setProgressBarIndeterminate(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setProgressBarIndeterminate, "setProgressBarIndeterminate", "(Z)V");
if (_m_Activity__setProgressBarIndeterminate == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setProgressBarIndeterminate, z);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setProgress = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setProgress(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setProgress, "setProgress", "(I)V");
if (_m_Activity__setProgress == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setProgress, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setSecondaryProgress = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setSecondaryProgress(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setSecondaryProgress, "setSecondaryProgress", "(I)V");
if (_m_Activity__setSecondaryProgress == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setSecondaryProgress, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setVolumeControlStream = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setVolumeControlStream(jobject self_,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setVolumeControlStream, "setVolumeControlStream", "(I)V");
if (_m_Activity__setVolumeControlStream == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setVolumeControlStream, i);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__getVolumeControlStream = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getVolumeControlStream(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getVolumeControlStream, "getVolumeControlStream", "()I");
if (_m_Activity__getVolumeControlStream == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Activity__getVolumeControlStream);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__setMediaController = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setMediaController(jobject self_,jobject mediaController) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setMediaController, "setMediaController", "(Landroid/media/session/MediaController;)V");
if (_m_Activity__setMediaController == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setMediaController, mediaController);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__getMediaController = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getMediaController(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getMediaController, "getMediaController", "()Landroid/media/session/MediaController;");
if (_m_Activity__getMediaController == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getMediaController);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__runOnUiThread = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__runOnUiThread(jobject self_,jobject runnable) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__runOnUiThread, "runOnUiThread", "(Ljava/lang/Runnable;)V");
if (_m_Activity__runOnUiThread == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__runOnUiThread, runnable);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onCreateView = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onCreateView(jobject self_,jobject string,jobject context,jobject attributeSet) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onCreateView, "onCreateView", "(Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;");
if (_m_Activity__onCreateView == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__onCreateView, string, context, attributeSet);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__onCreateView1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onCreateView1(jobject self_,jobject view,jobject string,jobject context,jobject attributeSet) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onCreateView1, "onCreateView", "(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;");
if (_m_Activity__onCreateView1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__onCreateView1, view, string, context, attributeSet);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__dump = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__dump(jobject self_,jobject string,jobject fileDescriptor,jobject printWriter,jobject strings) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__dump, "dump", "(Ljava/lang/String;Ljava/io/FileDescriptor;Ljava/io/PrintWriter;[Ljava/lang/String;)V");
if (_m_Activity__dump == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__dump, string, fileDescriptor, printWriter, strings);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__isImmersive = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__isImmersive(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__isImmersive, "isImmersive", "()Z");
if (_m_Activity__isImmersive == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__isImmersive);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__setTranslucent = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setTranslucent(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setTranslucent, "setTranslucent", "(Z)Z");
if (_m_Activity__setTranslucent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__setTranslucent, z);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__requestVisibleBehind = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__requestVisibleBehind(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__requestVisibleBehind, "requestVisibleBehind", "(Z)Z");
if (_m_Activity__requestVisibleBehind == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__requestVisibleBehind, z);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__onVisibleBehindCanceled = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onVisibleBehindCanceled(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onVisibleBehindCanceled, "onVisibleBehindCanceled", "()V");
if (_m_Activity__onVisibleBehindCanceled == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onVisibleBehindCanceled);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onEnterAnimationComplete = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onEnterAnimationComplete(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onEnterAnimationComplete, "onEnterAnimationComplete", "()V");
if (_m_Activity__onEnterAnimationComplete == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onEnterAnimationComplete);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setImmersive = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setImmersive(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setImmersive, "setImmersive", "(Z)V");
if (_m_Activity__setImmersive == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setImmersive, z);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setVrModeEnabled = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setVrModeEnabled(jobject self_,uint8_t z,jobject componentName) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setVrModeEnabled, "setVrModeEnabled", "(ZLandroid/content/ComponentName;)V");
if (_m_Activity__setVrModeEnabled == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setVrModeEnabled, z, componentName);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__startActionMode = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startActionMode(jobject self_,jobject callback) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startActionMode, "startActionMode", "(Landroid/view/ActionMode$Callback;)Landroid/view/ActionMode;");
if (_m_Activity__startActionMode == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__startActionMode, callback);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__startActionMode1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startActionMode1(jobject self_,jobject callback,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startActionMode1, "startActionMode", "(Landroid/view/ActionMode$Callback;I)Landroid/view/ActionMode;");
if (_m_Activity__startActionMode1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__startActionMode1, callback, i);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__onWindowStartingActionMode = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onWindowStartingActionMode(jobject self_,jobject callback) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onWindowStartingActionMode, "onWindowStartingActionMode", "(Landroid/view/ActionMode$Callback;)Landroid/view/ActionMode;");
if (_m_Activity__onWindowStartingActionMode == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__onWindowStartingActionMode, callback);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__onWindowStartingActionMode1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onWindowStartingActionMode1(jobject self_,jobject callback,int32_t i) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onWindowStartingActionMode1, "onWindowStartingActionMode", "(Landroid/view/ActionMode$Callback;I)Landroid/view/ActionMode;");
if (_m_Activity__onWindowStartingActionMode1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__onWindowStartingActionMode1, callback, i);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__onActionModeStarted = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onActionModeStarted(jobject self_,jobject actionMode) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onActionModeStarted, "onActionModeStarted", "(Landroid/view/ActionMode;)V");
if (_m_Activity__onActionModeStarted == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onActionModeStarted, actionMode);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__onActionModeFinished = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__onActionModeFinished(jobject self_,jobject actionMode) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__onActionModeFinished, "onActionModeFinished", "(Landroid/view/ActionMode;)V");
if (_m_Activity__onActionModeFinished == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__onActionModeFinished, actionMode);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__shouldUpRecreateTask = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__shouldUpRecreateTask(jobject self_,jobject intent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__shouldUpRecreateTask, "shouldUpRecreateTask", "(Landroid/content/Intent;)Z");
if (_m_Activity__shouldUpRecreateTask == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__shouldUpRecreateTask, intent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__navigateUpTo = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__navigateUpTo(jobject self_,jobject intent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__navigateUpTo, "navigateUpTo", "(Landroid/content/Intent;)Z");
if (_m_Activity__navigateUpTo == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__navigateUpTo, intent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__navigateUpToFromChild = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__navigateUpToFromChild(jobject self_,jobject activity,jobject intent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__navigateUpToFromChild, "navigateUpToFromChild", "(Landroid/app/Activity;Landroid/content/Intent;)Z");
if (_m_Activity__navigateUpToFromChild == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Activity__navigateUpToFromChild, activity, intent);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Activity__getParentActivityIntent = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getParentActivityIntent(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getParentActivityIntent, "getParentActivityIntent", "()Landroid/content/Intent;");
if (_m_Activity__getParentActivityIntent == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getParentActivityIntent);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__setEnterSharedElementCallback = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setEnterSharedElementCallback(jobject self_,jobject sharedElementCallback) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setEnterSharedElementCallback, "setEnterSharedElementCallback", "(Landroid/app/SharedElementCallback;)V");
if (_m_Activity__setEnterSharedElementCallback == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setEnterSharedElementCallback, sharedElementCallback);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setExitSharedElementCallback = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setExitSharedElementCallback(jobject self_,jobject sharedElementCallback) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setExitSharedElementCallback, "setExitSharedElementCallback", "(Landroid/app/SharedElementCallback;)V");
if (_m_Activity__setExitSharedElementCallback == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setExitSharedElementCallback, sharedElementCallback);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__postponeEnterTransition = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__postponeEnterTransition(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__postponeEnterTransition, "postponeEnterTransition", "()V");
if (_m_Activity__postponeEnterTransition == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__postponeEnterTransition);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__startPostponedEnterTransition = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startPostponedEnterTransition(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startPostponedEnterTransition, "startPostponedEnterTransition", "()V");
if (_m_Activity__startPostponedEnterTransition == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startPostponedEnterTransition);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__requestDragAndDropPermissions = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__requestDragAndDropPermissions(jobject self_,jobject dragEvent) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__requestDragAndDropPermissions, "requestDragAndDropPermissions", "(Landroid/view/DragEvent;)Landroid/view/DragAndDropPermissions;");
if (_m_Activity__requestDragAndDropPermissions == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__requestDragAndDropPermissions, dragEvent);
return to_global_ref_result(_result);
}
jmethodID _m_Activity__startLockTask = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__startLockTask(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__startLockTask, "startLockTask", "()V");
if (_m_Activity__startLockTask == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__startLockTask);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__stopLockTask = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__stopLockTask(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__stopLockTask, "stopLockTask", "()V");
if (_m_Activity__stopLockTask == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__stopLockTask);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__showLockTaskEscapeMessage = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__showLockTaskEscapeMessage(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__showLockTaskEscapeMessage, "showLockTaskEscapeMessage", "()V");
if (_m_Activity__showLockTaskEscapeMessage == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__showLockTaskEscapeMessage);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setRecentsScreenshotEnabled = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setRecentsScreenshotEnabled(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setRecentsScreenshotEnabled, "setRecentsScreenshotEnabled", "(Z)V");
if (_m_Activity__setRecentsScreenshotEnabled == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setRecentsScreenshotEnabled, z);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setShowWhenLocked = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setShowWhenLocked(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setShowWhenLocked, "setShowWhenLocked", "(Z)V");
if (_m_Activity__setShowWhenLocked == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setShowWhenLocked, z);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setInheritShowWhenLocked = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setInheritShowWhenLocked(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setInheritShowWhenLocked, "setInheritShowWhenLocked", "(Z)V");
if (_m_Activity__setInheritShowWhenLocked == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setInheritShowWhenLocked, z);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__setTurnScreenOn = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__setTurnScreenOn(jobject self_,uint8_t z) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__setTurnScreenOn, "setTurnScreenOn", "(Z)V");
if (_m_Activity__setTurnScreenOn == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
(*jniEnv)->CallVoidMethod(jniEnv, self_, _m_Activity__setTurnScreenOn, z);
return (JniResult){.value = {.j = 0}, .exception = check_exception()};
}
jmethodID _m_Activity__getOnBackInvokedDispatcher = NULL;
FFI_PLUGIN_EXPORT
JniResult Activity__getOnBackInvokedDispatcher(jobject self_) {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Activity,
&_m_Activity__getOnBackInvokedDispatcher, "getOnBackInvokedDispatcher", "()Landroid/window/OnBackInvokedDispatcher;");
if (_m_Activity__getOnBackInvokedDispatcher == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Activity__getOnBackInvokedDispatcher);
return to_global_ref_result(_result);
}
jfieldID _f_Activity__FOCUSED_STATE_SET = NULL;
FFI_PLUGIN_EXPORT
JniResult get_Activity__FOCUSED_STATE_SET() {
load_env();
load_class_global_ref(&_c_Activity, "android/app/Activity");
if (_c_Activity == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_Activity, &_f_Activity__FOCUSED_STATE_SET, "FOCUSED_STATE_SET",
"[I");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_Activity, _f_Activity__FOCUSED_STATE_SET);
return to_global_ref_result(_result);
}
// java.time.Instant
jclass _c_Instant = NULL;
jmethodID _m_Instant__now = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__now() {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Instant,
&_m_Instant__now, "now", "()Ljava/time/Instant;");
if (_m_Instant__now == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Instant, _m_Instant__now);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__now1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__now1(jobject clock) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Instant,
&_m_Instant__now1, "now", "(Ljava/time/Clock;)Ljava/time/Instant;");
if (_m_Instant__now1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Instant, _m_Instant__now1, clock);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__ofEpochSecond = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__ofEpochSecond(int64_t j) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Instant,
&_m_Instant__ofEpochSecond, "ofEpochSecond", "(J)Ljava/time/Instant;");
if (_m_Instant__ofEpochSecond == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Instant, _m_Instant__ofEpochSecond, j);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__ofEpochSecond1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__ofEpochSecond1(int64_t j,int64_t j1) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Instant,
&_m_Instant__ofEpochSecond1, "ofEpochSecond", "(JJ)Ljava/time/Instant;");
if (_m_Instant__ofEpochSecond1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Instant, _m_Instant__ofEpochSecond1, j, j1);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__ofEpochMilli = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__ofEpochMilli(int64_t j) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Instant,
&_m_Instant__ofEpochMilli, "ofEpochMilli", "(J)Ljava/time/Instant;");
if (_m_Instant__ofEpochMilli == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Instant, _m_Instant__ofEpochMilli, j);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__from = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__from(jobject temporalAccessor) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Instant,
&_m_Instant__from, "from", "(Ljava/time/temporal/TemporalAccessor;)Ljava/time/Instant;");
if (_m_Instant__from == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Instant, _m_Instant__from, temporalAccessor);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__parse = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__parse(jobject charSequence) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_Instant,
&_m_Instant__parse, "parse", "(Ljava/lang/CharSequence;)Ljava/time/Instant;");
if (_m_Instant__parse == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_Instant, _m_Instant__parse, charSequence);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__isSupported = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__isSupported(jobject self_,jobject temporalField) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__isSupported, "isSupported", "(Ljava/time/temporal/TemporalField;)Z");
if (_m_Instant__isSupported == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Instant__isSupported, temporalField);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Instant__isSupported1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__isSupported1(jobject self_,jobject temporalUnit) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__isSupported1, "isSupported", "(Ljava/time/temporal/TemporalUnit;)Z");
if (_m_Instant__isSupported1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Instant__isSupported1, temporalUnit);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Instant__range = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__range(jobject self_,jobject temporalField) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__range, "range", "(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;");
if (_m_Instant__range == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__range, temporalField);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__get0 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__get0(jobject self_,jobject temporalField) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__get0, "get", "(Ljava/time/temporal/TemporalField;)I");
if (_m_Instant__get0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Instant__get0, temporalField);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Instant__getLong = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__getLong(jobject self_,jobject temporalField) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__getLong, "getLong", "(Ljava/time/temporal/TemporalField;)J");
if (_m_Instant__getLong == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int64_t _result = (*jniEnv)->CallLongMethod(jniEnv, self_, _m_Instant__getLong, temporalField);
return (JniResult){.value = {.j = _result}, .exception = check_exception()};
}
jmethodID _m_Instant__getEpochSecond = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__getEpochSecond(jobject self_) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__getEpochSecond, "getEpochSecond", "()J");
if (_m_Instant__getEpochSecond == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int64_t _result = (*jniEnv)->CallLongMethod(jniEnv, self_, _m_Instant__getEpochSecond);
return (JniResult){.value = {.j = _result}, .exception = check_exception()};
}
jmethodID _m_Instant__getNano = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__getNano(jobject self_) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__getNano, "getNano", "()I");
if (_m_Instant__getNano == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Instant__getNano);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Instant__with0 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__with0(jobject self_,jobject temporalAdjuster) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__with0, "with", "(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/Instant;");
if (_m_Instant__with0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__with0, temporalAdjuster);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__with1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__with1(jobject self_,jobject temporalField,int64_t j) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__with1, "with", "(Ljava/time/temporal/TemporalField;J)Ljava/time/Instant;");
if (_m_Instant__with1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__with1, temporalField, j);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__truncatedTo = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__truncatedTo(jobject self_,jobject temporalUnit) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__truncatedTo, "truncatedTo", "(Ljava/time/temporal/TemporalUnit;)Ljava/time/Instant;");
if (_m_Instant__truncatedTo == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__truncatedTo, temporalUnit);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__plus = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__plus(jobject self_,jobject temporalAmount) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__plus, "plus", "(Ljava/time/temporal/TemporalAmount;)Ljava/time/Instant;");
if (_m_Instant__plus == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__plus, temporalAmount);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__plus1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__plus1(jobject self_,int64_t j,jobject temporalUnit) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__plus1, "plus", "(JLjava/time/temporal/TemporalUnit;)Ljava/time/Instant;");
if (_m_Instant__plus1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__plus1, j, temporalUnit);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__plusSeconds = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__plusSeconds(jobject self_,int64_t j) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__plusSeconds, "plusSeconds", "(J)Ljava/time/Instant;");
if (_m_Instant__plusSeconds == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__plusSeconds, j);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__plusMillis = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__plusMillis(jobject self_,int64_t j) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__plusMillis, "plusMillis", "(J)Ljava/time/Instant;");
if (_m_Instant__plusMillis == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__plusMillis, j);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__plusNanos = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__plusNanos(jobject self_,int64_t j) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__plusNanos, "plusNanos", "(J)Ljava/time/Instant;");
if (_m_Instant__plusNanos == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__plusNanos, j);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__minus = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__minus(jobject self_,jobject temporalAmount) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__minus, "minus", "(Ljava/time/temporal/TemporalAmount;)Ljava/time/Instant;");
if (_m_Instant__minus == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__minus, temporalAmount);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__minus1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__minus1(jobject self_,int64_t j,jobject temporalUnit) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__minus1, "minus", "(JLjava/time/temporal/TemporalUnit;)Ljava/time/Instant;");
if (_m_Instant__minus1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__minus1, j, temporalUnit);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__minusSeconds = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__minusSeconds(jobject self_,int64_t j) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__minusSeconds, "minusSeconds", "(J)Ljava/time/Instant;");
if (_m_Instant__minusSeconds == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__minusSeconds, j);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__minusMillis = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__minusMillis(jobject self_,int64_t j) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__minusMillis, "minusMillis", "(J)Ljava/time/Instant;");
if (_m_Instant__minusMillis == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__minusMillis, j);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__minusNanos = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__minusNanos(jobject self_,int64_t j) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__minusNanos, "minusNanos", "(J)Ljava/time/Instant;");
if (_m_Instant__minusNanos == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__minusNanos, j);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__query = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__query(jobject self_,jobject temporalQuery) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__query, "query", "(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;");
if (_m_Instant__query == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__query, temporalQuery);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__adjustInto = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__adjustInto(jobject self_,jobject temporal) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__adjustInto, "adjustInto", "(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;");
if (_m_Instant__adjustInto == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__adjustInto, temporal);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__until = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__until(jobject self_,jobject temporal,jobject temporalUnit) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__until, "until", "(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J");
if (_m_Instant__until == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int64_t _result = (*jniEnv)->CallLongMethod(jniEnv, self_, _m_Instant__until, temporal, temporalUnit);
return (JniResult){.value = {.j = _result}, .exception = check_exception()};
}
jmethodID _m_Instant__atOffset = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__atOffset(jobject self_,jobject zoneOffset) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__atOffset, "atOffset", "(Ljava/time/ZoneOffset;)Ljava/time/OffsetDateTime;");
if (_m_Instant__atOffset == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__atOffset, zoneOffset);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__atZone = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__atZone(jobject self_,jobject zoneId) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__atZone, "atZone", "(Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;");
if (_m_Instant__atZone == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__atZone, zoneId);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__toEpochMilli = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__toEpochMilli(jobject self_) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__toEpochMilli, "toEpochMilli", "()J");
if (_m_Instant__toEpochMilli == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int64_t _result = (*jniEnv)->CallLongMethod(jniEnv, self_, _m_Instant__toEpochMilli);
return (JniResult){.value = {.j = _result}, .exception = check_exception()};
}
jmethodID _m_Instant__compareTo = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__compareTo(jobject self_,jobject instant) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__compareTo, "compareTo", "(Ljava/time/Instant;)I");
if (_m_Instant__compareTo == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Instant__compareTo, instant);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Instant__isAfter = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__isAfter(jobject self_,jobject instant) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__isAfter, "isAfter", "(Ljava/time/Instant;)Z");
if (_m_Instant__isAfter == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Instant__isAfter, instant);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Instant__isBefore = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__isBefore(jobject self_,jobject instant) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__isBefore, "isBefore", "(Ljava/time/Instant;)Z");
if (_m_Instant__isBefore == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Instant__isBefore, instant);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Instant__equals1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__equals1(jobject self_,jobject object) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__equals1, "equals", "(Ljava/lang/Object;)Z");
if (_m_Instant__equals1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_Instant__equals1, object);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_Instant__hashCode1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__hashCode1(jobject self_) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__hashCode1, "hashCode", "()I");
if (_m_Instant__hashCode1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Instant__hashCode1);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jmethodID _m_Instant__toString1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__toString1(jobject self_) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__toString1, "toString", "()Ljava/lang/String;");
if (_m_Instant__toString1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__toString1);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__minus2 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__minus2(jobject self_,int64_t j,jobject temporalUnit) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__minus2, "minus", "(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;");
if (_m_Instant__minus2 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__minus2, j, temporalUnit);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__minus3 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__minus3(jobject self_,jobject temporalAmount) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__minus3, "minus", "(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;");
if (_m_Instant__minus3 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__minus3, temporalAmount);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__plus2 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__plus2(jobject self_,int64_t j,jobject temporalUnit) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__plus2, "plus", "(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;");
if (_m_Instant__plus2 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__plus2, j, temporalUnit);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__plus3 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__plus3(jobject self_,jobject temporalAmount) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__plus3, "plus", "(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;");
if (_m_Instant__plus3 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__plus3, temporalAmount);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__with2 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__with2(jobject self_,jobject temporalField,int64_t j) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__with2, "with", "(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;");
if (_m_Instant__with2 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__with2, temporalField, j);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__with3 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__with3(jobject self_,jobject temporalAdjuster) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__with3, "with", "(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;");
if (_m_Instant__with3 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_Instant__with3, temporalAdjuster);
return to_global_ref_result(_result);
}
jmethodID _m_Instant__compareTo1 = NULL;
FFI_PLUGIN_EXPORT
JniResult Instant__compareTo1(jobject self_,jobject object) {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_Instant,
&_m_Instant__compareTo1, "compareTo", "(Ljava/lang/Object;)I");
if (_m_Instant__compareTo1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_Instant__compareTo1, object);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
jfieldID _f_Instant__EPOCH = NULL;
FFI_PLUGIN_EXPORT
JniResult get_Instant__EPOCH() {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_Instant, &_f_Instant__EPOCH, "EPOCH",
"Ljava/time/Instant;");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_Instant, _f_Instant__EPOCH);
return to_global_ref_result(_result);
}
jfieldID _f_Instant__MAX = NULL;
FFI_PLUGIN_EXPORT
JniResult get_Instant__MAX() {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_Instant, &_f_Instant__MAX, "MAX",
"Ljava/time/Instant;");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_Instant, _f_Instant__MAX);
return to_global_ref_result(_result);
}
jfieldID _f_Instant__MIN = NULL;
FFI_PLUGIN_EXPORT
JniResult get_Instant__MIN() {
load_env();
load_class_global_ref(&_c_Instant, "java/time/Instant");
if (_c_Instant == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_Instant, &_f_Instant__MIN, "MIN",
"Ljava/time/Instant;");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_Instant, _f_Instant__MIN);
return to_global_ref_result(_result);
}
// androidx.health.connect.client.request.AggregateGroupByDurationRequest
jclass _c_AggregateGroupByDurationRequest = NULL;
jmethodID _m_AggregateGroupByDurationRequest__new0 = NULL;
FFI_PLUGIN_EXPORT
JniResult AggregateGroupByDurationRequest__new0(jobject set,jobject timeRangeFilter,jobject duration,jobject set1) {
load_env();
load_class_global_ref(&_c_AggregateGroupByDurationRequest, "androidx/health/connect/client/request/AggregateGroupByDurationRequest");
if (_c_AggregateGroupByDurationRequest == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_AggregateGroupByDurationRequest,
&_m_AggregateGroupByDurationRequest__new0, "<init>", "(Ljava/util/Set;Landroidx/health/connect/client/time/TimeRangeFilter;Ljava/time/Duration;Ljava/util/Set;)V");
if (_m_AggregateGroupByDurationRequest__new0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_AggregateGroupByDurationRequest, _m_AggregateGroupByDurationRequest__new0, set, timeRangeFilter, duration, set1);
return to_global_ref_result(_result);
}
jmethodID _m_AggregateGroupByDurationRequest__new1 = NULL;
FFI_PLUGIN_EXPORT
JniResult AggregateGroupByDurationRequest__new1(jobject set,jobject timeRangeFilter,jobject duration,jobject set1,int32_t i,jobject defaultConstructorMarker) {
load_env();
load_class_global_ref(&_c_AggregateGroupByDurationRequest, "androidx/health/connect/client/request/AggregateGroupByDurationRequest");
if (_c_AggregateGroupByDurationRequest == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_AggregateGroupByDurationRequest,
&_m_AggregateGroupByDurationRequest__new1, "<init>", "(Ljava/util/Set;Landroidx/health/connect/client/time/TimeRangeFilter;Ljava/time/Duration;Ljava/util/Set;ILkotlin/jvm/internal/DefaultConstructorMarker;)V");
if (_m_AggregateGroupByDurationRequest__new1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_AggregateGroupByDurationRequest, _m_AggregateGroupByDurationRequest__new1, set, timeRangeFilter, duration, set1, i, defaultConstructorMarker);
return to_global_ref_result(_result);
}
// androidx.health.connect.client.request.AggregateGroupByPeriodRequest
jclass _c_AggregateGroupByPeriodRequest = NULL;
jmethodID _m_AggregateGroupByPeriodRequest__new0 = NULL;
FFI_PLUGIN_EXPORT
JniResult AggregateGroupByPeriodRequest__new0(jobject set,jobject timeRangeFilter,jobject period,jobject set1) {
load_env();
load_class_global_ref(&_c_AggregateGroupByPeriodRequest, "androidx/health/connect/client/request/AggregateGroupByPeriodRequest");
if (_c_AggregateGroupByPeriodRequest == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_AggregateGroupByPeriodRequest,
&_m_AggregateGroupByPeriodRequest__new0, "<init>", "(Ljava/util/Set;Landroidx/health/connect/client/time/TimeRangeFilter;Ljava/time/Period;Ljava/util/Set;)V");
if (_m_AggregateGroupByPeriodRequest__new0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_AggregateGroupByPeriodRequest, _m_AggregateGroupByPeriodRequest__new0, set, timeRangeFilter, period, set1);
return to_global_ref_result(_result);
}
jmethodID _m_AggregateGroupByPeriodRequest__new1 = NULL;
FFI_PLUGIN_EXPORT
JniResult AggregateGroupByPeriodRequest__new1(jobject set,jobject timeRangeFilter,jobject period,jobject set1,int32_t i,jobject defaultConstructorMarker) {
load_env();
load_class_global_ref(&_c_AggregateGroupByPeriodRequest, "androidx/health/connect/client/request/AggregateGroupByPeriodRequest");
if (_c_AggregateGroupByPeriodRequest == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_AggregateGroupByPeriodRequest,
&_m_AggregateGroupByPeriodRequest__new1, "<init>", "(Ljava/util/Set;Landroidx/health/connect/client/time/TimeRangeFilter;Ljava/time/Period;Ljava/util/Set;ILkotlin/jvm/internal/DefaultConstructorMarker;)V");
if (_m_AggregateGroupByPeriodRequest__new1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_AggregateGroupByPeriodRequest, _m_AggregateGroupByPeriodRequest__new1, set, timeRangeFilter, period, set1, i, defaultConstructorMarker);
return to_global_ref_result(_result);
}
// androidx.health.connect.client.request.AggregateRequest
jclass _c_AggregateRequest = NULL;
jmethodID _m_AggregateRequest__new0 = NULL;
FFI_PLUGIN_EXPORT
JniResult AggregateRequest__new0(jobject set,jobject timeRangeFilter,jobject set1) {
load_env();
load_class_global_ref(&_c_AggregateRequest, "androidx/health/connect/client/request/AggregateRequest");
if (_c_AggregateRequest == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_AggregateRequest,
&_m_AggregateRequest__new0, "<init>", "(Ljava/util/Set;Landroidx/health/connect/client/time/TimeRangeFilter;Ljava/util/Set;)V");
if (_m_AggregateRequest__new0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_AggregateRequest, _m_AggregateRequest__new0, set, timeRangeFilter, set1);
return to_global_ref_result(_result);
}
jmethodID _m_AggregateRequest__new1 = NULL;
FFI_PLUGIN_EXPORT
JniResult AggregateRequest__new1(jobject set,jobject timeRangeFilter,jobject set1,int32_t i,jobject defaultConstructorMarker) {
load_env();
load_class_global_ref(&_c_AggregateRequest, "androidx/health/connect/client/request/AggregateRequest");
if (_c_AggregateRequest == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_AggregateRequest,
&_m_AggregateRequest__new1, "<init>", "(Ljava/util/Set;Landroidx/health/connect/client/time/TimeRangeFilter;Ljava/util/Set;ILkotlin/jvm/internal/DefaultConstructorMarker;)V");
if (_m_AggregateRequest__new1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_AggregateRequest, _m_AggregateRequest__new1, set, timeRangeFilter, set1, i, defaultConstructorMarker);
return to_global_ref_result(_result);
}
// androidx.health.connect.client.request.ChangesTokenRequest
jclass _c_ChangesTokenRequest = NULL;
jmethodID _m_ChangesTokenRequest__new0 = NULL;
FFI_PLUGIN_EXPORT
JniResult ChangesTokenRequest__new0(jobject set,jobject set1) {
load_env();
load_class_global_ref(&_c_ChangesTokenRequest, "androidx/health/connect/client/request/ChangesTokenRequest");
if (_c_ChangesTokenRequest == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_ChangesTokenRequest,
&_m_ChangesTokenRequest__new0, "<init>", "(Ljava/util/Set;Ljava/util/Set;)V");
if (_m_ChangesTokenRequest__new0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_ChangesTokenRequest, _m_ChangesTokenRequest__new0, set, set1);
return to_global_ref_result(_result);
}
jmethodID _m_ChangesTokenRequest__new1 = NULL;
FFI_PLUGIN_EXPORT
JniResult ChangesTokenRequest__new1(jobject set,jobject set1,int32_t i,jobject defaultConstructorMarker) {
load_env();
load_class_global_ref(&_c_ChangesTokenRequest, "androidx/health/connect/client/request/ChangesTokenRequest");
if (_c_ChangesTokenRequest == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_ChangesTokenRequest,
&_m_ChangesTokenRequest__new1, "<init>", "(Ljava/util/Set;Ljava/util/Set;ILkotlin/jvm/internal/DefaultConstructorMarker;)V");
if (_m_ChangesTokenRequest__new1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_ChangesTokenRequest, _m_ChangesTokenRequest__new1, set, set1, i, defaultConstructorMarker);
return to_global_ref_result(_result);
}
// androidx.health.connect.client.request.ReadRecordsRequest
jclass _c_ReadRecordsRequest = NULL;
jmethodID _m_ReadRecordsRequest__new0 = NULL;
FFI_PLUGIN_EXPORT
JniResult ReadRecordsRequest__new0(jobject kClass,jobject timeRangeFilter,jobject set,uint8_t z,int32_t i,jobject string) {
load_env();
load_class_global_ref(&_c_ReadRecordsRequest, "androidx/health/connect/client/request/ReadRecordsRequest");
if (_c_ReadRecordsRequest == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_ReadRecordsRequest,
&_m_ReadRecordsRequest__new0, "<init>", "(Lkotlin/reflect/KClass;Landroidx/health/connect/client/time/TimeRangeFilter;Ljava/util/Set;ZILjava/lang/String;)V");
if (_m_ReadRecordsRequest__new0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_ReadRecordsRequest, _m_ReadRecordsRequest__new0, kClass, timeRangeFilter, set, z, i, string);
return to_global_ref_result(_result);
}
jmethodID _m_ReadRecordsRequest__new1 = NULL;
FFI_PLUGIN_EXPORT
JniResult ReadRecordsRequest__new1(jobject kClass,jobject timeRangeFilter,jobject set,uint8_t z,int32_t i,jobject string,int32_t i1,jobject defaultConstructorMarker) {
load_env();
load_class_global_ref(&_c_ReadRecordsRequest, "androidx/health/connect/client/request/ReadRecordsRequest");
if (_c_ReadRecordsRequest == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_ReadRecordsRequest,
&_m_ReadRecordsRequest__new1, "<init>", "(Lkotlin/reflect/KClass;Landroidx/health/connect/client/time/TimeRangeFilter;Ljava/util/Set;ZILjava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V");
if (_m_ReadRecordsRequest__new1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_ReadRecordsRequest, _m_ReadRecordsRequest__new1, kClass, timeRangeFilter, set, z, i, string, i1, defaultConstructorMarker);
return to_global_ref_result(_result);
}
jmethodID _m_ReadRecordsRequest__equals1 = NULL;
FFI_PLUGIN_EXPORT
JniResult ReadRecordsRequest__equals1(jobject self_,jobject object) {
load_env();
load_class_global_ref(&_c_ReadRecordsRequest, "androidx/health/connect/client/request/ReadRecordsRequest");
if (_c_ReadRecordsRequest == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_ReadRecordsRequest,
&_m_ReadRecordsRequest__equals1, "equals", "(Ljava/lang/Object;)Z");
if (_m_ReadRecordsRequest__equals1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_ReadRecordsRequest__equals1, object);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_ReadRecordsRequest__hashCode1 = NULL;
FFI_PLUGIN_EXPORT
JniResult ReadRecordsRequest__hashCode1(jobject self_) {
load_env();
load_class_global_ref(&_c_ReadRecordsRequest, "androidx/health/connect/client/request/ReadRecordsRequest");
if (_c_ReadRecordsRequest == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_ReadRecordsRequest,
&_m_ReadRecordsRequest__hashCode1, "hashCode", "()I");
if (_m_ReadRecordsRequest__hashCode1 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
int32_t _result = (*jniEnv)->CallIntMethod(jniEnv, self_, _m_ReadRecordsRequest__hashCode1);
return (JniResult){.value = {.i = _result}, .exception = check_exception()};
}
// androidx.health.connect.client.aggregate.AggregationResult
jclass _c_AggregationResult = NULL;
jmethodID _m_AggregationResult__new0 = NULL;
FFI_PLUGIN_EXPORT
JniResult AggregationResult__new0(jobject map,jobject map1,jobject set) {
load_env();
load_class_global_ref(&_c_AggregationResult, "androidx/health/connect/client/aggregate/AggregationResult");
if (_c_AggregationResult == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_AggregationResult,
&_m_AggregationResult__new0, "<init>", "(Ljava/util/Map;Ljava/util/Map;Ljava/util/Set;)V");
if (_m_AggregationResult__new0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_AggregationResult, _m_AggregationResult__new0, map, map1, set);
return to_global_ref_result(_result);
}
jmethodID _m_AggregationResult__getDataOrigins = NULL;
FFI_PLUGIN_EXPORT
JniResult AggregationResult__getDataOrigins(jobject self_) {
load_env();
load_class_global_ref(&_c_AggregationResult, "androidx/health/connect/client/aggregate/AggregationResult");
if (_c_AggregationResult == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_AggregationResult,
&_m_AggregationResult__getDataOrigins, "getDataOrigins", "()Ljava/util/Set;");
if (_m_AggregationResult__getDataOrigins == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_AggregationResult__getDataOrigins);
return to_global_ref_result(_result);
}
jmethodID _m_AggregationResult__hasMetric = NULL;
FFI_PLUGIN_EXPORT
JniResult AggregationResult__hasMetric(jobject self_,jobject aggregateMetric) {
load_env();
load_class_global_ref(&_c_AggregationResult, "androidx/health/connect/client/aggregate/AggregationResult");
if (_c_AggregationResult == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_AggregationResult,
&_m_AggregationResult__hasMetric, "hasMetric", "(Landroidx/health/connect/client/aggregate/AggregateMetric;)Z");
if (_m_AggregationResult__hasMetric == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_AggregationResult__hasMetric, aggregateMetric);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_AggregationResult__contains = NULL;
FFI_PLUGIN_EXPORT
JniResult AggregationResult__contains(jobject self_,jobject aggregateMetric) {
load_env();
load_class_global_ref(&_c_AggregationResult, "androidx/health/connect/client/aggregate/AggregationResult");
if (_c_AggregationResult == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_AggregationResult,
&_m_AggregationResult__contains, "contains", "(Landroidx/health/connect/client/aggregate/AggregateMetric;)Z");
if (_m_AggregationResult__contains == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
uint8_t _result = (*jniEnv)->CallBooleanMethod(jniEnv, self_, _m_AggregationResult__contains, aggregateMetric);
return (JniResult){.value = {.z = _result}, .exception = check_exception()};
}
jmethodID _m_AggregationResult__getMetric = NULL;
FFI_PLUGIN_EXPORT
JniResult AggregationResult__getMetric(jobject self_,jobject aggregateMetric) {
load_env();
load_class_global_ref(&_c_AggregationResult, "androidx/health/connect/client/aggregate/AggregationResult");
if (_c_AggregationResult == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_AggregationResult,
&_m_AggregationResult__getMetric, "getMetric", "(Landroidx/health/connect/client/aggregate/AggregateMetric;)Ljava/lang/Object;");
if (_m_AggregationResult__getMetric == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_AggregationResult__getMetric, aggregateMetric);
return to_global_ref_result(_result);
}
jmethodID _m_AggregationResult__get0 = NULL;
FFI_PLUGIN_EXPORT
JniResult AggregationResult__get0(jobject self_,jobject aggregateMetric) {
load_env();
load_class_global_ref(&_c_AggregationResult, "androidx/health/connect/client/aggregate/AggregationResult");
if (_c_AggregationResult == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_AggregationResult,
&_m_AggregationResult__get0, "get", "(Landroidx/health/connect/client/aggregate/AggregateMetric;)Ljava/lang/Object;");
if (_m_AggregationResult__get0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_AggregationResult__get0, aggregateMetric);
return to_global_ref_result(_result);
}
// androidx.health.connect.client.aggregate.AggregateMetric$AggregationType
jclass _c_AggregateMetric_AggregationType = NULL;
jmethodID _m_AggregateMetric_AggregationType__getAggregationTypeString = NULL;
FFI_PLUGIN_EXPORT
JniResult AggregateMetric_AggregationType__getAggregationTypeString(jobject self_) {
load_env();
load_class_global_ref(&_c_AggregateMetric_AggregationType, "androidx/health/connect/client/aggregate/AggregateMetric$AggregationType");
if (_c_AggregateMetric_AggregationType == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_AggregateMetric_AggregationType,
&_m_AggregateMetric_AggregationType__getAggregationTypeString, "getAggregationTypeString", "()Ljava/lang/String;");
if (_m_AggregateMetric_AggregationType__getAggregationTypeString == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallObjectMethod(jniEnv, self_, _m_AggregateMetric_AggregationType__getAggregationTypeString);
return to_global_ref_result(_result);
}
jmethodID _m_AggregateMetric_AggregationType__values = NULL;
FFI_PLUGIN_EXPORT
JniResult AggregateMetric_AggregationType__values() {
load_env();
load_class_global_ref(&_c_AggregateMetric_AggregationType, "androidx/health/connect/client/aggregate/AggregateMetric$AggregationType");
if (_c_AggregateMetric_AggregationType == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_AggregateMetric_AggregationType,
&_m_AggregateMetric_AggregationType__values, "values", "()[Landroidx/health/connect/client/aggregate/AggregateMetric$AggregationType;");
if (_m_AggregateMetric_AggregationType__values == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_AggregateMetric_AggregationType, _m_AggregateMetric_AggregationType__values);
return to_global_ref_result(_result);
}
jmethodID _m_AggregateMetric_AggregationType__valueOf = NULL;
FFI_PLUGIN_EXPORT
JniResult AggregateMetric_AggregationType__valueOf(jobject string) {
load_env();
load_class_global_ref(&_c_AggregateMetric_AggregationType, "androidx/health/connect/client/aggregate/AggregateMetric$AggregationType");
if (_c_AggregateMetric_AggregationType == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_method(_c_AggregateMetric_AggregationType,
&_m_AggregateMetric_AggregationType__valueOf, "valueOf", "(Ljava/lang/String;)Landroidx/health/connect/client/aggregate/AggregateMetric$AggregationType;");
if (_m_AggregateMetric_AggregationType__valueOf == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->CallStaticObjectMethod(jniEnv, _c_AggregateMetric_AggregationType, _m_AggregateMetric_AggregationType__valueOf, string);
return to_global_ref_result(_result);
}
jfieldID _f_AggregateMetric_AggregationType__DURATION = NULL;
FFI_PLUGIN_EXPORT
JniResult get_AggregateMetric_AggregationType__DURATION() {
load_env();
load_class_global_ref(&_c_AggregateMetric_AggregationType, "androidx/health/connect/client/aggregate/AggregateMetric$AggregationType");
if (_c_AggregateMetric_AggregationType == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_AggregateMetric_AggregationType, &_f_AggregateMetric_AggregationType__DURATION, "DURATION",
"Landroidx/health/connect/client/aggregate/AggregateMetric$AggregationType;");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_AggregateMetric_AggregationType, _f_AggregateMetric_AggregationType__DURATION);
return to_global_ref_result(_result);
}
jfieldID _f_AggregateMetric_AggregationType__AVERAGE = NULL;
FFI_PLUGIN_EXPORT
JniResult get_AggregateMetric_AggregationType__AVERAGE() {
load_env();
load_class_global_ref(&_c_AggregateMetric_AggregationType, "androidx/health/connect/client/aggregate/AggregateMetric$AggregationType");
if (_c_AggregateMetric_AggregationType == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_AggregateMetric_AggregationType, &_f_AggregateMetric_AggregationType__AVERAGE, "AVERAGE",
"Landroidx/health/connect/client/aggregate/AggregateMetric$AggregationType;");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_AggregateMetric_AggregationType, _f_AggregateMetric_AggregationType__AVERAGE);
return to_global_ref_result(_result);
}
jfieldID _f_AggregateMetric_AggregationType__MINIMUM = NULL;
FFI_PLUGIN_EXPORT
JniResult get_AggregateMetric_AggregationType__MINIMUM() {
load_env();
load_class_global_ref(&_c_AggregateMetric_AggregationType, "androidx/health/connect/client/aggregate/AggregateMetric$AggregationType");
if (_c_AggregateMetric_AggregationType == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_AggregateMetric_AggregationType, &_f_AggregateMetric_AggregationType__MINIMUM, "MINIMUM",
"Landroidx/health/connect/client/aggregate/AggregateMetric$AggregationType;");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_AggregateMetric_AggregationType, _f_AggregateMetric_AggregationType__MINIMUM);
return to_global_ref_result(_result);
}
jfieldID _f_AggregateMetric_AggregationType__MAXIMUM = NULL;
FFI_PLUGIN_EXPORT
JniResult get_AggregateMetric_AggregationType__MAXIMUM() {
load_env();
load_class_global_ref(&_c_AggregateMetric_AggregationType, "androidx/health/connect/client/aggregate/AggregateMetric$AggregationType");
if (_c_AggregateMetric_AggregationType == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_AggregateMetric_AggregationType, &_f_AggregateMetric_AggregationType__MAXIMUM, "MAXIMUM",
"Landroidx/health/connect/client/aggregate/AggregateMetric$AggregationType;");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_AggregateMetric_AggregationType, _f_AggregateMetric_AggregationType__MAXIMUM);
return to_global_ref_result(_result);
}
jfieldID _f_AggregateMetric_AggregationType__TOTAL = NULL;
FFI_PLUGIN_EXPORT
JniResult get_AggregateMetric_AggregationType__TOTAL() {
load_env();
load_class_global_ref(&_c_AggregateMetric_AggregationType, "androidx/health/connect/client/aggregate/AggregateMetric$AggregationType");
if (_c_AggregateMetric_AggregationType == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_AggregateMetric_AggregationType, &_f_AggregateMetric_AggregationType__TOTAL, "TOTAL",
"Landroidx/health/connect/client/aggregate/AggregateMetric$AggregationType;");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_AggregateMetric_AggregationType, _f_AggregateMetric_AggregationType__TOTAL);
return to_global_ref_result(_result);
}
jfieldID _f_AggregateMetric_AggregationType__COUNT = NULL;
FFI_PLUGIN_EXPORT
JniResult get_AggregateMetric_AggregationType__COUNT() {
load_env();
load_class_global_ref(&_c_AggregateMetric_AggregationType, "androidx/health/connect/client/aggregate/AggregateMetric$AggregationType");
if (_c_AggregateMetric_AggregationType == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_AggregateMetric_AggregationType, &_f_AggregateMetric_AggregationType__COUNT, "COUNT",
"Landroidx/health/connect/client/aggregate/AggregateMetric$AggregationType;");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_AggregateMetric_AggregationType, _f_AggregateMetric_AggregationType__COUNT);
return to_global_ref_result(_result);
}
// androidx.health.connect.client.aggregate.AggregateMetric$Companion
jclass _c_AggregateMetric_Companion = NULL;
jmethodID _m_AggregateMetric_Companion__new0 = NULL;
FFI_PLUGIN_EXPORT
JniResult AggregateMetric_Companion__new0(jobject defaultConstructorMarker) {
load_env();
load_class_global_ref(&_c_AggregateMetric_Companion, "androidx/health/connect/client/aggregate/AggregateMetric$Companion");
if (_c_AggregateMetric_Companion == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_AggregateMetric_Companion,
&_m_AggregateMetric_Companion__new0, "<init>", "(Lkotlin/jvm/internal/DefaultConstructorMarker;)V");
if (_m_AggregateMetric_Companion__new0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_AggregateMetric_Companion, _m_AggregateMetric_Companion__new0, defaultConstructorMarker);
return to_global_ref_result(_result);
}
// androidx.health.connect.client.aggregate.AggregateMetric$Converter$FromDouble
jclass _c_AggregateMetric_Converter_FromDouble = NULL;
// androidx.health.connect.client.aggregate.AggregateMetric$Converter$FromLong
jclass _c_AggregateMetric_Converter_FromLong = NULL;
// androidx.health.connect.client.aggregate.AggregateMetric$Converter
jclass _c_AggregateMetric_Converter = NULL;
// androidx.health.connect.client.aggregate.AggregateMetric
jclass _c_AggregateMetric = NULL;
jmethodID _m_AggregateMetric__new0 = NULL;
FFI_PLUGIN_EXPORT
JniResult AggregateMetric__new0(jobject converter,jobject string,jobject aggregationType,jobject string1) {
load_env();
load_class_global_ref(&_c_AggregateMetric, "androidx/health/connect/client/aggregate/AggregateMetric");
if (_c_AggregateMetric == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_method(_c_AggregateMetric,
&_m_AggregateMetric__new0, "<init>", "(Landroidx/health/connect/client/aggregate/AggregateMetric$Converter;Ljava/lang/String;Landroidx/health/connect/client/aggregate/AggregateMetric$AggregationType;Ljava/lang/String;)V");
if (_m_AggregateMetric__new0 == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
jobject _result = (*jniEnv)->NewObject(jniEnv, _c_AggregateMetric, _m_AggregateMetric__new0, converter, string, aggregationType, string1);
return to_global_ref_result(_result);
}
jfieldID _f_AggregateMetric__Companion = NULL;
FFI_PLUGIN_EXPORT
JniResult get_AggregateMetric__Companion() {
load_env();
load_class_global_ref(&_c_AggregateMetric, "androidx/health/connect/client/aggregate/AggregateMetric");
if (_c_AggregateMetric == NULL) return (JniResult){.value = {.j = 0}, .exception = check_exception()};
load_static_field(_c_AggregateMetric, &_f_AggregateMetric__Companion, "Companion",
"Landroidx/health/connect/client/aggregate/AggregateMetric$Companion;");
jobject _result = (*jniEnv)->GetStaticObjectField(jniEnv, _c_AggregateMetric, _f_AggregateMetric__Companion);
return to_global_ref_result(_result);
}
| samples/experimental/pedometer/src/health_connect/health_connect.c/0 | {
"file_path": "samples/experimental/pedometer/src/health_connect/health_connect.c",
"repo_id": "samples",
"token_count": 202535
} | 1,206 |
// Copyright 2023 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:math';
import 'package:flutter/material.dart';
import '../components/components.dart';
// WonkyAnimPalette class is meant to be used with WonkyChar
// to create animations based on variable font settings (aka 'axes'),
// and a few basic settings like scale, rotation, etc.
// The choice of variable font axes to implement in this class and
// default min/max values for variable font axes are hard-coded
// for Amstelvar font, packaged and used in this project.
// Other variable fonts will have different available axes and min/max values.
//
// See articles on variable fonts at https://fonts.google.com/knowledge/topics/variable_fonts
// See a list of variable fonts in the Google Fonts lineup, along with
// an enumeration of variable font axes at https://fonts.google.com/variablefonts
class WonkyAnimPalette {
const WonkyAnimPalette({
Key? key,
});
static const Curve defaultCurve = Curves.easeInOut;
// basic (settings unrelated to variable font)
static WonkyAnimSetting scale({
double from = 1,
double to = 2,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'basic',
property: 'scale',
fromTo: RangeDbl(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
static WonkyAnimSetting offsetX({
double from = -50,
double to = 50,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'basic',
property: 'offsetX',
fromTo: RangeDbl(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
static WonkyAnimSetting offsetY({
double from = -50,
double to = 50,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'basic',
property: 'offsetY',
fromTo: RangeDbl(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
static WonkyAnimSetting rotation({
double from = -pi,
double to = pi,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'basic',
property: 'rotation',
fromTo: RangeDbl(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
static WonkyAnimSetting color({
Color from = Colors.blue,
Color to = Colors.red,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'basic',
property: 'color',
fromTo: RangeColor(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
// font variants (variable font settings)
static WonkyAnimSetting opticalSize({
double from = 8,
double to = 144,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'fv',
property: 'opsz',
fromTo: RangeDbl(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
static WonkyAnimSetting weight({
double from = 100,
double to = 1000,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'fv',
property: 'wght',
fromTo: RangeDbl(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
static WonkyAnimSetting grade({
double from = -300,
double to = 500,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'fv',
property: 'GRAD',
fromTo: RangeDbl(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
static WonkyAnimSetting slant({
double from = -10,
double to = 0,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'fv',
property: 'slnt',
fromTo: RangeDbl(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
static WonkyAnimSetting width({
double from = 50,
double to = 125,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'fv',
property: 'wdth',
fromTo: RangeDbl(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
static WonkyAnimSetting thickStroke({
double from = 18,
double to = 263,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'fv',
property: 'XOPQ',
fromTo: RangeDbl(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
static WonkyAnimSetting thinStroke({
double from = 15,
double to = 132,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'fv',
property: 'YOPQ',
fromTo: RangeDbl(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
static WonkyAnimSetting counterWd({
double from = 324,
double to = 640,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'fv',
property: 'XTRA',
fromTo: RangeDbl(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
static WonkyAnimSetting upperCaseHt({
double from = 500,
double to = 1000,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'fv',
property: 'YTUC',
fromTo: RangeDbl(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
static WonkyAnimSetting lowerCaseHt({
double from = 420,
double to = 570,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'fv',
property: 'YTLC',
fromTo: RangeDbl(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
static WonkyAnimSetting ascenderHt({
double from = 500,
double to = 983,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'fv',
property: 'YTAS',
fromTo: RangeDbl(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
static WonkyAnimSetting descenderDepth({
double from = -500,
double to = -138,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'fv',
property: 'YTDE',
fromTo: RangeDbl(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
static WonkyAnimSetting figureHt({
double from = 425,
double to = 1000,
double startAt = 0,
double endAt = 1,
Curve curve = defaultCurve,
}) {
return WonkyAnimSetting(
type: 'fv',
property: 'YTFI',
fromTo: RangeDbl(from: from, to: to),
startAt: startAt,
endAt: endAt,
curve: curve,
);
}
}
| samples/experimental/varfont_shader_puzzle/lib/components/wonky_anim_palette.dart/0 | {
"file_path": "samples/experimental/varfont_shader_puzzle/lib/components/wonky_anim_palette.dart",
"repo_id": "samples",
"token_count": 3221
} | 1,207 |
// Copyright 2020, the Flutter project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:async';
import 'package:flutter/material.dart';
import '../widgets/dialogs.dart';
import '../widgets/third_party/adaptive_scaffold.dart';
import 'dashboard.dart';
import 'entries.dart';
class HomePage extends StatefulWidget {
final VoidCallback onSignOut;
const HomePage({
required this.onSignOut,
super.key,
});
@override
State<HomePage> createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
int _pageIndex = 0;
@override
Widget build(BuildContext context) {
return AdaptiveScaffold(
title: const Text('Dashboard App'),
actions: [
Padding(
padding: const EdgeInsets.all(8.0),
child: TextButton(
style: TextButton.styleFrom(foregroundColor: Colors.white),
onPressed: () => _handleSignOut(),
child: const Text('Sign Out'),
),
)
],
currentIndex: _pageIndex,
destinations: const [
AdaptiveScaffoldDestination(title: 'Home', icon: Icons.home),
AdaptiveScaffoldDestination(title: 'Entries', icon: Icons.list),
AdaptiveScaffoldDestination(title: 'Settings', icon: Icons.settings),
],
body: _pageAtIndex(_pageIndex),
onNavigationIndexChange: (newIndex) {
setState(() {
_pageIndex = newIndex;
});
},
floatingActionButton:
_hasFloatingActionButton ? _buildFab(context) : null,
);
}
bool get _hasFloatingActionButton {
if (_pageIndex == 2) return false;
return true;
}
FloatingActionButton _buildFab(BuildContext context) {
return FloatingActionButton(
child: const Icon(Icons.add),
onPressed: () => _handleFabPressed(),
);
}
void _handleFabPressed() {
if (_pageIndex == 0) {
showDialog<NewCategoryDialog>(
context: context,
builder: (context) => const NewCategoryDialog(),
);
return;
}
if (_pageIndex == 1) {
showDialog<NewEntryDialog>(
context: context,
builder: (context) => const NewEntryDialog(),
);
return;
}
}
Future<void> _handleSignOut() async {
var shouldSignOut = await (showDialog<bool>(
context: context,
builder: (context) => AlertDialog(
title: const Text('Are you sure you want to sign out?'),
actions: [
TextButton(
child: const Text('No'),
onPressed: () {
Navigator.of(context).pop(false);
},
),
TextButton(
child: const Text('Yes'),
onPressed: () {
Navigator.of(context).pop(true);
},
),
],
),
));
if (shouldSignOut == null || !shouldSignOut) {
return;
}
widget.onSignOut();
}
static Widget _pageAtIndex(int index) {
if (index == 0) {
return const DashboardPage();
}
if (index == 1) {
return const EntriesPage();
}
return const Center(child: Text('Settings page'));
}
}
| samples/experimental/web_dashboard/lib/src/pages/home.dart/0 | {
"file_path": "samples/experimental/web_dashboard/lib/src/pages/home.dart",
"repo_id": "samples",
"token_count": 1365
} | 1,208 |
#import "GeneratedPluginRegistrant.h"
| samples/flutter_maps_firestore/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "samples/flutter_maps_firestore/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "samples",
"token_count": 13
} | 1,209 |
The following template will be deprecated soon. Please refer to the new games repo for more genre-specific templates: https://github.com/flutter/games
For more information, please refer to flutter.dev/games to see all resources available for flutter game developers.
Old template readme:
A starter game in Flutter with all the bells and whistles
of a mobile (iOS & Android) game including the following features:
- sound
- music
- main menu screen
- settings
- ads (AdMob)
- in-app purchases
- games services (Game Center & Google Play Games Services)
- crash reporting (Firebase Crashlytics)
# Getting started
The game compiles and works out of the box. It comes with things
like a main menu, a router, a settings screen, and audio.
When building a new game, this is likely everything you first need.
When you're ready to enable more advanced integrations, like ads
and in-app payments, read the _Integrations_ section below.
# Development
To run the app in debug mode:
flutter run
This assumes you have an Android emulator,
iOS Simulator, or an attached physical device.
It is often convenient to develop your game as a desktop app.
For example, you can run `flutter run -d macOS`, and get the same UI
in a desktop window on a Mac. That way, you don't need to use a
simulator/emulator or attach a mobile device. This template supports
desktop development by disabling integrations like AdMob for desktop.
## Code organization
Code is organized in a loose and shallow feature-first fashion.
In `lib/src`, you'll therefore find directories such as `ads`, `audio`
or `main_menu`. Nothing fancy, but usable.
```
lib
βββ src
βΒ Β βββ ads
βΒ Β βββ app_lifecycle
βΒ Β βββ audio
βΒ Β βββ game_internals
βΒ Β βββ games_services
βΒ Β βββ in_app_purchase
βΒ Β βββ level_selection
βΒ Β βββ main_menu
βΒ Β βββ play_session
βΒ Β βββ player_progress
βΒ Β βββ settings
βΒ Β βββ style
βΒ Β βββ win_game
βββ ...
βββ main.dart
```
The state management approach is intentionally low-level. That way, it's easy to
take this project and run with it, without having to learn new paradigms, or having
to remember to run `flutter pub run build_runner watch`. You are,
of course, encouraged to use whatever paradigm, helper package or code generation
scheme that you prefer.
## Building for production
To build the app for iOS (and open Xcode when finished):
```bash
flutter build ipa && open build/ios/archive/Runner.xcarchive
```
To build the app for Android (and open the folder with the bundle when finished):
```bash
flutter build appbundle && open build/app/outputs/bundle/release
```
While the template is meant for mobile games, you can also publish
for the web. This might be useful for web-based demos, for example,
or for rapid play-testing. The following command requires installing
[`peanut`](https://pub.dev/packages/peanut/install).
```bash
flutter pub global run peanut \
--web-renderer canvaskit \
--extra-args "--base-href=/name_of_your_github_repo/" \
&& git push origin --set-upstream gh-pages
```
The last line of the command above automatically pushes
your newly built web game to GitHub pages, assuming that you have
that set up.
# Integrations
The more advanced integrations are disabled by default. For example,
achievements aren't enabled at first because you, the developer,
have to set them up (the achievements need to exist in App Store Connect
and Google Play Console before they can be used in the code).
This section includes instructions on how to enable
any given integration.
Some general notes:
- Change the package name of your game
before you start any of the deeper integrations.
[StackOverflow has instructions](https://stackoverflow.com/a/51550358/1416886)
for this, and the [`rename`](https://pub.dev/packages/rename) tool
(on pub.dev) automates the process.
- The guides below all assume you already have your game
registered in [Google Play Console][] and in Apple's
[App Store Connect][].
## Ads
Ads are implemented using the official `google_mobile_ads` package
and are disabled by default.
```dart
// TODO: When ready, uncomment the following lines to enable integrations.
AdsController? adsController;
// if (!kIsWeb && (Platform.isIOS || Platform.isAndroid)) {
// /// Prepare the google_mobile_ads plugin so that the first ad loads
// /// faster. This can be done later or with a delay if startup
// /// experience suffers.
// adsController = AdsController(MobileAds.instance);
// adsController.initialize();
// }
```
The `AdsController` code in`lib/main.dart` is `null` by default,
so the template gracefully falls back to not showing ads
on desktop.
You can find the code relating to ads in `lib/src/ads/`.
To enable ads in your game:
1. Go to [AdMob][] and set up an account.
This could take a significant amount of time because you need to provide
banking information, sign contracts, and so on.
2. Create two _Apps_ in [AdMob][]: one for Android and one for iOS.
3. Get the AdMob _App IDs_ for both the Android app and the iOS app.
You can find these in the _App settings_ section. They look
something like `ca-app-pub-1234567890123456~1234567890`
(note the tilde between the two numbers).
4. Open `android/app/src/main/AndroidManifest.xml`, find the `<meta-data>`
entry called `com.google.android.gms.ads.APPLICATION_ID`,
and update the value with the _App ID_ of the Android AdMob app
that you obtained in the previous step.
```xml
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="ca-app-pub-1234567890123456~1234567890"/>
```
5. Open `ios/Runner/Info.plist`, find the
entry called `GADApplicationIdentifier`,
and update the value with the _App ID_ of the iOS AdMob app.
```xml
<key>GADApplicationIdentifier</key>
<string>ca-app-pub-1234567890123456~0987654321</string>
```
6. Back in [AdMob][], create an _Ad unit_ for each of the AdMob apps.
This asks for the Ad unit's format (Banner, Interstitial, Rewarded).
The template is set up for a Banner ad unit, so select that if you
want to avoid making changes to the code in `lib/src/ads`.
7. Get the _Ad unit IDs_ for both the Android app and the iOS app.
You can find these in the _Ad units_ section. They look
something like `ca-app-pub-1234567890123456/1234567890`
(yes, the format is very similar to _App ID_; note the slash
between the two numbers).
8. Open `lib/src/ads/ads_controller.dart` and update the values
of the _Ad unit_ IDs there.
```dart
final adUnitId = defaultTargetPlatform == TargetPlatform.android
? 'ca-app-pub-1234567890123456/1234567890'
: 'ca-app-pub-1234567890123456/0987654321';
```
9. Uncomment the code relating to ads in `lib/main.dart`,
and add the following two imports:
```dart
import 'dart:io';
import 'package:google_mobile_ads/google_mobile_ads.dart';
```
10. Register your test devices
in [AdMob][]'s _Settings_ → _Test devices_ section.
[AdMob]: https://admob.google.com/
The game template defines a sample AdMob _app ID_ and two sample _Ad unit ID_s.
These allow you to test your code without getting real
IDs from AdMob, but this "feature" is sparsely documented and only meant
for hello world projects.
The sample IDs **won't** work for published games.
If you feel lost at any point, a full [AdMob for Flutter walk-through][]
is available on Google AdMob's documentation site.
[AdMob for Flutter walk-through]: https://developers.google.com/admob/flutter/quick-start
If you want to implement more AdMob formats (such as Interstitial ads),
a good place to start are the examples in
[`package:google_mobile_ads`](https://pub.dev/packages/google_mobile_ads).
## Audio
Audio is enabled by default and ready to go. You can modify code
in `lib/src/audio/` to your liking.
You can find some music
tracks in `assets/music` β these are Creative Commons Attribution (CC-BY)
licensed, and are included in this repository with permission. If you decide
to keep these tracks in your game, please don't forget to give credit
to the musician, [Mr Smith][].
[Mr Smith]: https://freemusicarchive.org/music/mr-smith
The repository also includes a few sound effect samples in `assets/sfx`.
These are public domain (CC0) and you will almost surely want to replace
them because they're just recordings of a developer doing silly sounds
with their mouth.
## Crashlytics
Crashlytics integration is disabled by default.
When enabled, this integration is quite powerful:
- Any crashes of your app are sent to the Firebase Crashlytics console.
- Any uncaught exception thrown anywhere in your code is captured
and sent to the Firebase Crashlytics console.
- Each of these reports includes the following information:
- Error message
- Stack trace
- Device model, orientation, RAM free, disk free
- Operating system version
- App version
To enable Firebase Crashlytics, do the following:
1. Create a new project in
[console.firebase.google.com](https://console.firebase.google.com/).
Call the Firebase project whatever you like; just **remember the name**.
You don't need to enable Analytics in the project if you don't want to.
2. [Install `firebase-tools`](https://firebase.google.com/docs/cli?authuser=0#setup_update_cli)
on your machine.
3. [Install `flutterfire` CLI](https://firebase.google.com/docs/flutter/setup)
on your machine.
4. In the root of this project (the directory containing `pubspec.yaml`),
run the following:
- `flutterfire configure`
- This command asks you for the name of the Firebase project
that you created earlier, and the list of target platforms you support.
As of April 2022, only `android` and `ios` are fully
supported by Crashlytics.
- The command rewrites `lib/firebase_options.dart` with
the correct code.
5. Go to `lib/main.dart` and uncomment the lines that relate to Crashlytics.
You should now be able to see crashes and errors in
[console.firebase.google.com](https://console.firebase.google.com/).
To test, add a button to your project, and throw whatever
exception you like when the player presses it.
```dart
TextButton(
onPressed: () => throw StateError('whoa!'),
child: Text('Test Crashlytics'),
)
```
## Games Services (Game Center & Play Games Services)
Games Services (like achievements and leaderboards) are implemented by the
[`games_services`](https://pub.dev/packages/games_services) package,
and are disabled by default.
To enable games services, first set up _Game Center_ on iOS
and _Google Play Games Services_ on Android.
To enable _Game Center_ (GameKit) on iOS:
1. Open your Flutter project in Xcode (`open ios/Runner.xcodeproj`).
2. Select the root _Runner_ project and go to the _Signing & Capabilities_ tab.
3. Click the `+` button to add _Game Center_ as a capability.
You can close Xcode now.
4. Go to your app in [App Store Connect][] and set up _Game Center_
in the _Features_ section. For example, you might want to set up
a leaderboard and several achievements.
Take note of the IDs of the leaderboards and achievements you create.
[App Store Connect]: https://appstoreconnect.apple.com/
To enable _Play Games Services_ on Android:
1. Go to your app in [Google Play Console][].
2. Select _Play Games Services_ → _Setup and management_ →
_Configuration_ from the navigation menu and follow their instructions.
* This takes a significant amount of time and patience.
Among other things, you'll need to set up an OAuth consent
screen in Google Cloud Console.
If at any point you feel lost,
consult the official [Play Games Services guide][].
3. When done, you can start adding leaderboards and achievements
in _Play Games Services_ → _Setup and management_.
Create the exact same set as you did on the iOS side.
Make note of IDs.
4. Go to _Play Games Services_ → _Setup and management_ →
Publishing, and click _'Publish'_. Don't worry, this doesn't
actually publish your game. It only publishes the achievements
and leaderboard. Once a leaderboard, for example, is published
this way, it cannot be unpublished.
5. Go to _Play Games Services_ →
_Setup and management_ → _Configuration_ →
_Credentials_. Find a button that says _'Get resources'_.
You get an XML file with the _Play Games Services_ IDs.
```xml
<?xml version="1.0" encoding="utf-8"?>
<!--Google Play game services IDs. Save this file as res/values/games-ids.xml in your project.-->
<resources>
<!--app_id-->
<string name="app_id" translatable="false">424242424242</string>
<!--package_name-->
<string name="package_name" translatable="false">dev.flutter.tictactoe</string>
<!--achievement First win-->
<string name="achievement_first_win" translatable="false">sOmEiDsTrInG</string>
<!--leaderboard Highest Score-->
<string name="leaderboard_highest_score" translatable="false">sOmEiDsTrInG</string>
</resources>
```
6. Replace the file at `android/app/src/main/res/values/games-ids.xml`
with the XML you received in the previous step.
[Google Play Console]: https://play.google.com/console/
[Play Games Services guide]: https://developers.google.com/games/services/console/enabling
Now that you have set up _Game Center_ and _Play Games Services_,
and have your achievement & leaderboard IDs ready, it's finally Dart time.
1. Open `lib/src/games_services/games_services.dart` and edit the leaderboard
IDs in the `showLeaderboard()` function.
```dart
// TODO: When ready, change both these leaderboard IDs.
iOSLeaderboardID: "some_id_from_app_store",
androidLeaderboardID: "sOmE_iD_fRoM_gPlAy",
```
2. The `awardAchievement()` function in the same file takes the IDs
as arguments. You can therefore call it from anywhere
in your game like this:
```dart
final gamesServicesController = context.read<GamesServicesController?>();
await gamesServicesController?.awardAchievement(
iOS: 'an_achievement_id',
android: 'aNaChIeVeMenTiDfRoMgPlAy',
);
```
You might want to attach the achievement IDs to levels, enemies,
places, items, and so on. For example, the template has levels
defined in `lib/src/level_selection/levels.dart` like so:
```dart
GameLevel(
number: 1,
difficulty: 5,
achievementIdIOS: 'first_win',
achievementIdAndroid: 'sOmEtHinG',
),
```
That way, after the player reaches a level, we check if the level
has non-null achievement IDs, and if so, we call `awardAchievement()`
with those IDs.
3. Uncomment the code relating to games services in `lib/main.dart`.
```dart
// TODO: When ready, uncomment the following lines.
GamesServicesController? gamesServicesController;
// if (!kIsWeb && (Platform.isIOS || Platform.isAndroid)) {
// gamesServicesController = GamesServicesController()
// // Attempt to log the player in.
// ..initialize();
// }
```
If at any point you feel lost, there's a [How To][] guide written by the author
of `package:games_services`. Some of the guide's instructions and screenshots
are slightly outdated (for example, _iTunes Connect_ has been renamed to _App Store Connect_
after the article was published) but it's still an excellent resource.
[How To]: https://itnext.io/how-to-integrate-gamekit-and-google-play-services-flutter-4d3f4a4a2f77
## In-app purchases
In-app purchases are implemented using the official
[`in_app_purchase`](https://pub.dev/packages/in_app_purchase) package.
The integration is disabled by default.
To enable in-app purchases on Android:
1. Upload the game to [Google Play Console][],
to the Closed Testing track.
- Since the game already
depends on `package:in_app_purchase`, it signals itself to the
Play Store as a project with in-app purchases.
- Releasing to Closed Testing triggers a review process,
which is a prerequisite for in-app purchases to work.
The review process can take several days and until it's complete,
you can't move on with the Android side of things.
2. Add an in-app product in _Play Console_ → _Monetize_ →
_In-app products_. Come up with a product ID (for example,
`ad_removal`).
3. While still in Play Console, _activate_ the in-app product.
To enable in-app purchases on iOS:
1. Make sure you have signed the _Paid Apps Agreement_
in [App Store Connect][].
2. While still in App Store Connect, go to _Features_ →
_In-App Purchases_, and add a new in-app purchase
by clicking the `+` button.
Use the same product ID you used on the Android side.
3. Follow instructions on how to get the in-app purchase approved.
Now everything is ready to enable the integration in your Dart code:
1. Open `lib/src/in_app_purchase/ad_removal.dart` and change `productId`
to the product ID you entered in Play Console and App Store Connect.
```dart
/// The representation of this product on the stores.
static const productId = 'remove_ads';
```
- If your in-app purchase is not an ad removal, then create a class
similar to the template's `AdRemovalPurchase`.
- If you created several in-app purchases, you need to modify
the code in `lib/src/in_app_purchase/in_app_purchase.dart`.
By default, the template only supports one in-app purchase.
2. Uncomment the code relating to in-app purchases in `lib/main.dart`.
```dart
// TODO: When ready, uncomment the following lines.
InAppPurchaseController? inAppPurchaseController;
// if (!kIsWeb && (Platform.isIOS || Platform.isAndroid)) {
// inAppPurchaseController = InAppPurchaseController(InAppPurchase.instance)
// // Subscribing to [InAppPurchase.instance.purchaseStream] as soon
// // as possible in order not to miss any updates.
// ..subscribe();
// // Ask the store what the player has bought already.
// inAppPurchaseController.restorePurchases();
// }
```
If at any point you feel lost, check out the official
[Adding in-app purchases to your Flutter app](https://codelabs.developers.google.com/codelabs/flutter-in-app-purchases#0)
codelab.
## Settings
The settings page is enabled by default, and accessible both
from the main menu and the "gear" button in the play session screen.
Settings are saved to local storage using the `package:shared_preferences`.
To change what preferences are saved and how, edit files in
`lib/src/settings/persistence`.
```dart
abstract class SettingsPersistence {
Future<bool> getMusicOn();
Future<bool> getMuted({required bool defaultValue});
Future<String> getPlayerName();
Future<bool> getSoundsOn();
Future<void> saveMusicOn(bool value);
Future<void> saveMuted(bool value);
Future<void> savePlayerName(String value);
Future<void> saveSoundsOn(bool value);
}
```
# Icon
To update the launcher icon, first change the files
`assets/icon-adaptive-foreground.png` and `assets/icon.png`.
Then, run the following:
```bash
flutter pub run flutter_launcher_icons:main
```
You can [configure](https://github.com/fluttercommunity/flutter_launcher_icons#book-guide)
the look of the icon in the `flutter_icons:` section of `pubspec.yaml`.
# Troubleshooting
## CocoaPods
When upgrading to higher versions of Flutter or plugins, you might encounter an error when
building the iOS or macOS app. A good first thing to try is to delete the `ios/Podfile.lock`
file (or `macos/Podfile.lock`, respectively), then trying to build again. (You can achieve
a more thorough cleanup by running `flutter clean` instead.)
If this doesn't help, here are some more methods:
- See if everything is still okay with your Flutter and CocoaPods installation
by running `flutter doctor`. Revisit the macOS
[Flutter installation guide](https://docs.flutter.dev/get-started/install/macos)
if needed.
- Update CocoaPods specs directory:
```sh
cd ios
pod repo update
cd ..
```
(Substitute `ios` for `macos` when appropriate.)
- Open the project in Xcode,
[increase the build target](https://stackoverflow.com/a/38602597/1416886),
then select _Product_ > _Clean Build Folder_.
## Warnings in console
When running the game for the first time, you might see warnings like the following:
> Note: Some input files use or override a deprecated API.
or
> warning: 'viewState' was deprecated in macOS 11.0: Use -initWithState: instead
These warning come from the various plugins that are used by the template. They are not harmful
and can be ignored. The warnings are meant for the plugin authors, not for you, the game developer.
| samples/game_template/README.md/0 | {
"file_path": "samples/game_template/README.md",
"repo_id": "samples",
"token_count": 6401
} | 1,210 |
// Copyright 2022, the Flutter project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:flutter/foundation.dart';
import 'package:google_mobile_ads/google_mobile_ads.dart';
import 'preloaded_banner_ad.dart';
/// Allows showing ads. A facade for `package:google_mobile_ads`.
class AdsController {
final MobileAds _instance;
PreloadedBannerAd? _preloadedAd;
/// Creates an [AdsController] that wraps around a [MobileAds] [instance].
///
/// Example usage:
///
/// var controller = AdsController(MobileAds.instance);
AdsController(MobileAds instance) : _instance = instance;
void dispose() {
_preloadedAd?.dispose();
}
/// Initializes the injected [MobileAds.instance].
Future<void> initialize() async {
await _instance.initialize();
}
/// Starts preloading an ad to be used later.
///
/// The work doesn't start immediately so that calling this doesn't have
/// adverse effects (jank) during start of a new screen.
void preloadAd() {
// TODO: When ready, change this to the Ad Unit IDs provided by AdMob.
// The current values are AdMob's sample IDs.
final adUnitId = defaultTargetPlatform == TargetPlatform.android
? 'ca-app-pub-3940256099942544/6300978111'
// iOS
: 'ca-app-pub-3940256099942544/2934735716';
_preloadedAd =
PreloadedBannerAd(size: AdSize.mediumRectangle, adUnitId: adUnitId);
// Wait a bit so that calling at start of a new screen doesn't have
// adverse effects on performance.
Future<void>.delayed(const Duration(seconds: 1)).then((_) {
return _preloadedAd!.load();
});
}
/// Allows caller to take ownership of a [PreloadedBannerAd].
///
/// If this method returns a non-null value, then the caller is responsible
/// for disposing of the loaded ad.
PreloadedBannerAd? takePreloadedAd() {
final ad = _preloadedAd;
_preloadedAd = null;
return ad;
}
}
| samples/game_template/lib/src/ads/ads_controller.dart/0 | {
"file_path": "samples/game_template/lib/src/ads/ads_controller.dart",
"repo_id": "samples",
"token_count": 677
} | 1,211 |
// Copyright 2022, the Flutter project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:shared_preferences/shared_preferences.dart';
import 'player_progress_persistence.dart';
/// An implementation of [PlayerProgressPersistence] that uses
/// `package:shared_preferences`.
class LocalStoragePlayerProgressPersistence extends PlayerProgressPersistence {
final Future<SharedPreferences> instanceFuture =
SharedPreferences.getInstance();
@override
Future<int> getHighestLevelReached() async {
final prefs = await instanceFuture;
return prefs.getInt('highestLevelReached') ?? 0;
}
@override
Future<void> saveHighestLevelReached(int level) async {
final prefs = await instanceFuture;
await prefs.setInt('highestLevelReached', level);
}
}
| samples/game_template/lib/src/player_progress/persistence/local_storage_player_progress_persistence.dart/0 | {
"file_path": "samples/game_template/lib/src/player_progress/persistence/local_storage_player_progress_persistence.dart",
"repo_id": "samples",
"token_count": 264
} | 1,212 |
include: package:analysis_defaults/flutter.yaml
| samples/infinite_list/analysis_options.yaml/0 | {
"file_path": "samples/infinite_list/analysis_options.yaml",
"repo_id": "samples",
"token_count": 15
} | 1,213 |
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'item.dart';
const int itemsPerPage = 20;
class ItemPage {
final List<Item> items;
final int startingIndex;
final bool hasNext;
ItemPage({
required this.items,
required this.startingIndex,
required this.hasNext,
});
}
| samples/infinite_list/lib/src/api/page.dart/0 | {
"file_path": "samples/infinite_list/lib/src/api/page.dart",
"repo_id": "samples",
"token_count": 128
} | 1,214 |
// Copyright 2021, the Flutter project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
import 'auth.dart';
import 'data.dart';
import 'screens/author_details.dart';
import 'screens/authors.dart';
import 'screens/book_details.dart';
import 'screens/books.dart';
import 'screens/scaffold.dart';
import 'screens/settings.dart';
import 'screens/sign_in.dart';
import 'widgets/book_list.dart';
import 'widgets/fade_transition_page.dart';
final appShellNavigatorKey = GlobalKey<NavigatorState>(debugLabel: 'app shell');
final booksNavigatorKey = GlobalKey<NavigatorState>(debugLabel: 'books shell');
class Bookstore extends StatefulWidget {
const Bookstore({super.key});
@override
State<Bookstore> createState() => _BookstoreState();
}
class _BookstoreState extends State<Bookstore> {
final BookstoreAuth auth = BookstoreAuth();
@override
Widget build(BuildContext context) {
return MaterialApp.router(
builder: (context, child) {
if (child == null) {
throw ('No child in .router constructor builder');
}
return BookstoreAuthScope(
notifier: auth,
child: child,
);
},
routerConfig: GoRouter(
refreshListenable: auth,
debugLogDiagnostics: true,
initialLocation: '/books/popular',
redirect: (context, state) {
final signedIn = BookstoreAuth.of(context).signedIn;
if (state.uri.toString() != '/sign-in' && !signedIn) {
return '/sign-in';
}
return null;
},
routes: [
ShellRoute(
navigatorKey: appShellNavigatorKey,
builder: (context, state, child) {
return BookstoreScaffold(
selectedIndex: switch (state.uri.path) {
var p when p.startsWith('/books') => 0,
var p when p.startsWith('/authors') => 1,
var p when p.startsWith('/settings') => 2,
_ => 0,
},
child: child,
);
},
routes: [
ShellRoute(
pageBuilder: (context, state, child) {
return FadeTransitionPage<dynamic>(
key: state.pageKey,
// Use a builder to get the correct BuildContext
// TODO (johnpryan): remove when https://github.com/flutter/flutter/issues/108177 lands
child: Builder(builder: (context) {
return BooksScreen(
onTap: (idx) {
GoRouter.of(context).go(switch (idx) {
0 => '/books/popular',
1 => '/books/new',
2 => '/books/all',
_ => '/books/popular',
});
},
selectedIndex: switch (state.uri.path) {
var p when p.startsWith('/books/popular') => 0,
var p when p.startsWith('/books/new') => 1,
var p when p.startsWith('/books/all') => 2,
_ => 0,
},
child: child,
);
}),
);
},
routes: [
GoRoute(
path: '/books/popular',
pageBuilder: (context, state) {
return FadeTransitionPage<dynamic>(
// Use a builder to get the correct BuildContext
// TODO (johnpryan): remove when https://github.com/flutter/flutter/issues/108177 lands
key: state.pageKey,
child: Builder(
builder: (context) {
return BookList(
books: libraryInstance.popularBooks,
onTap: (book) {
GoRouter.of(context)
.go('/books/popular/book/${book.id}');
},
);
},
),
);
},
routes: [
GoRoute(
path: 'book/:bookId',
parentNavigatorKey: appShellNavigatorKey,
builder: (context, state) {
return BookDetailsScreen(
book: libraryInstance
.getBook(state.pathParameters['bookId'] ?? ''),
);
},
),
],
),
GoRoute(
path: '/books/new',
pageBuilder: (context, state) {
return FadeTransitionPage<dynamic>(
key: state.pageKey,
// Use a builder to get the correct BuildContext
// TODO (johnpryan): remove when https://github.com/flutter/flutter/issues/108177 lands
child: Builder(
builder: (context) {
return BookList(
books: libraryInstance.newBooks,
onTap: (book) {
GoRouter.of(context)
.go('/books/new/book/${book.id}');
},
);
},
),
);
},
routes: [
GoRoute(
path: 'book/:bookId',
parentNavigatorKey: appShellNavigatorKey,
builder: (context, state) {
return BookDetailsScreen(
book: libraryInstance
.getBook(state.pathParameters['bookId'] ?? ''),
);
},
),
],
),
GoRoute(
path: '/books/all',
pageBuilder: (context, state) {
return FadeTransitionPage<dynamic>(
key: state.pageKey,
// Use a builder to get the correct BuildContext
// TODO (johnpryan): remove when https://github.com/flutter/flutter/issues/108177 lands
child: Builder(
builder: (context) {
return BookList(
books: libraryInstance.allBooks,
onTap: (book) {
GoRouter.of(context)
.go('/books/all/book/${book.id}');
},
);
},
),
);
},
routes: [
GoRoute(
path: 'book/:bookId',
parentNavigatorKey: appShellNavigatorKey,
builder: (context, state) {
return BookDetailsScreen(
book: libraryInstance
.getBook(state.pathParameters['bookId'] ?? ''),
);
},
),
],
),
],
),
GoRoute(
path: '/authors',
pageBuilder: (context, state) {
return FadeTransitionPage<dynamic>(
key: state.pageKey,
child: Builder(builder: (context) {
return AuthorsScreen(
onTap: (author) {
GoRouter.of(context)
.go('/authors/author/${author.id}');
},
);
}),
);
},
routes: [
GoRoute(
path: 'author/:authorId',
builder: (context, state) {
final author = libraryInstance.allAuthors.firstWhere(
(author) =>
author.id ==
int.parse(state.pathParameters['authorId']!));
// Use a builder to get the correct BuildContext
// TODO (johnpryan): remove when https://github.com/flutter/flutter/issues/108177 lands
return Builder(builder: (context) {
return AuthorDetailsScreen(
author: author,
onBookTapped: (book) {
GoRouter.of(context)
.go('/books/all/book/${book.id}');
},
);
});
},
)
],
),
GoRoute(
path: '/settings',
pageBuilder: (context, state) {
return FadeTransitionPage<dynamic>(
key: state.pageKey,
child: const SettingsScreen(),
);
},
),
],
),
GoRoute(
path: '/sign-in',
builder: (context, state) {
// Use a builder to get the correct BuildContext
// TODO (johnpryan): remove when https://github.com/flutter/flutter/issues/108177 lands
return Builder(
builder: (context) {
return SignInScreen(
onSignIn: (value) async {
final router = GoRouter.of(context);
await BookstoreAuth.of(context)
.signIn(value.username, value.password);
router.go('/books/popular');
},
);
},
);
},
),
],
),
);
}
}
| samples/navigation_and_routing/lib/src/app.dart/0 | {
"file_path": "samples/navigation_and_routing/lib/src/app.dart",
"repo_id": "samples",
"token_count": 6639
} | 1,215 |
// Copyright 2020 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package dev.flutter.platform_channels
import android.content.Context
import android.hardware.Sensor
import android.hardware.SensorManager
import com.google.gson.Gson
import com.google.gson.reflect.TypeToken
import io.flutter.embedding.android.FlutterActivity
import io.flutter.embedding.engine.FlutterEngine
import io.flutter.plugin.common.*
import java.io.InputStream
import java.nio.ByteBuffer
class MainActivity : FlutterActivity() {
override fun configureFlutterEngine(flutterEngine: FlutterEngine) {
// Creates a MethodChannel as soon as the FlutterEngine is attached to
// the Activity, and registers a MethodCallHandler. The Method.setMethodCallHandler
// is responsible to register a MethodCallHandler to handle the incoming calls.
// The call parameter of MethodCallHandler has information about the incoming call,
// like method name, and arguments. The result parameter of MethodCallHandler is
// responsible to send the results of the call.
MethodChannel(flutterEngine.dartExecutor, "methodChannelDemo")
.setMethodCallHandler { call, result ->
val count: Int? = call.argument<Int>("count")
if (count == null) {
result.error("INVALID ARGUMENT", "Value of count cannot be null", null)
} else {
when (call.method) {
"increment" -> result.success(count + 1)
"decrement" -> result.success(count - 1)
else -> result.notImplemented()
}
}
}
val sensorManger: SensorManager = getSystemService(Context.SENSOR_SERVICE) as SensorManager
val accelerometerSensor: Sensor = sensorManger.getDefaultSensor(Sensor.TYPE_ACCELEROMETER)
EventChannel(flutterEngine.dartExecutor, "eventChannelDemo")
.setStreamHandler(AccelerometerStreamHandler(sensorManger, accelerometerSensor))
// Registers a MessageHandler for BasicMessageChannel to receive a message from Dart and send
// image data in reply.
BasicMessageChannel(flutterEngine.dartExecutor, "platformImageDemo", StandardMessageCodec())
.setMessageHandler { message, reply ->
if (message == "getImage") {
val inputStream: InputStream = assets.open("eat_new_orleans.jpg")
reply.reply(inputStream.readBytes())
}
}
val petList = mutableListOf<Map<String, String>>()
val gson = Gson()
// A BasicMessageChannel for sending petList to Dart.
val stringCodecChannel = BasicMessageChannel(flutterEngine.dartExecutor, "stringCodecDemo", StringCodec.INSTANCE)
// Registers a MessageHandler for BasicMessageChannel to receive pet details to be
// added in petList and send the it back to Dart using stringCodecChannel.
BasicMessageChannel(flutterEngine.dartExecutor, "jsonMessageCodecDemo", JSONMessageCodec.INSTANCE)
.setMessageHandler { message, reply ->
petList.add(0, gson.fromJson(message.toString(), object : TypeToken<Map<String, String>>() {}.type))
stringCodecChannel.send(gson.toJson(mapOf("petList" to petList)))
}
// Registers a MessageHandler for BasicMessageChannel to receive the index of pet
// details to be removed from the petList and send the petList back to Dart using
// stringCodecChannel. If the index is not in the range of petList, we send null
// back to Dart.
BasicMessageChannel(flutterEngine.dartExecutor, "binaryCodecDemo", BinaryCodec.INSTANCE)
.setMessageHandler { message, reply ->
val index = String(message!!.array()).toInt()
if (index >= 0 && index < petList.size) {
petList.removeAt(index)
val replyMessage = "Removed Successfully"
reply.reply(ByteBuffer.allocateDirect(replyMessage.toByteArray().size).put(replyMessage.toByteArray()))
stringCodecChannel.send(gson.toJson(mapOf("petList" to petList)))
} else {
reply.reply(null)
}
}
}
}
| samples/platform_channels/android/app/src/main/kotlin/dev/flutter/platform_channels/MainActivity.kt/0 | {
"file_path": "samples/platform_channels/android/app/src/main/kotlin/dev/flutter/platform_channels/MainActivity.kt",
"repo_id": "samples",
"token_count": 1909
} | 1,216 |
# Run with tooling from https://github.com/flutter/codelabs/tree/main/tooling/codelab_rebuild
name: Animations rebuild script
steps:
- name: Remove runners
rmdirs:
- android
- ios
- name: Flutter recreate
flutter: create --platform android,ios --org dev.flutter .
- name: Patch android/app/build.gradle
path: android/app/build.gradle
patch-u: |
--- b/platform_channels/android/app/build.gradle
+++ a/platform_channels/android/app/build.gradle
@@ -64,4 +64,6 @@ flutter {
source '../..'
}
-dependencies {}
+dependencies {
+ implementation 'com.google.code.gson:gson:2.8.6'
+}
- name: Mkdir ios/Runner/Assets.xcassets/eat_new_orleans.imageset
mkdir: ios/Runner/Assets.xcassets/eat_new_orleans.imageset
- name: Add ios/Runner/Assets.xcassets/eat_new_orleans.imageset/Contents.json
path: ios/Runner/Assets.xcassets/eat_new_orleans.imageset/Contents.json
replace-contents: |
{
"images" : [
{
"filename" : "eat_new_orleans.jpg",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
- name: Add ios/Runner/Assets.xcassets/eat_new_orleans.imageset/eat_new_orleans.jpg
path: ios/Runner/Assets.xcassets/eat_new_orleans.imageset/eat_new_orleans.jpg
base64-contents: |
/9j/4AAQSkZJRgABAQAA8ADwAAD/4QN6RXhpZgAATU0AKgAAAAgACgEGAAMAAAABAAIAAAEPAAIAAAAS
AAAAhgEQAAIAAAALAAAAmAESAAMAAAABAAEAAAEaAAUAAAABAAAApAEbAAUAAAABAAAArAEoAAMAAAAB
AAIAAAExAAIAAAARAAAAtAEyAAIAAAAUAAAAxodpAAQAAAABAAAA2gAAAABOSUtPTiBDT1JQT1JBVElP
TgBOSUtPTiBEODUwAAAAAADwAAAAAQAAAPAAAAABUGl4ZWxtYXRvciAzLjguNQAAMjAxOTowNzoxNyAx
MDowNzozNgAAKYKaAAUAAAABAAACzIKdAAUAAAABAAAC1IgiAAMAAAABAAEAAIgnAAMAAAABAfQAAIgw
AAMAAAABAAIAAIgyAAQAAAABAAAB9JAAAAcAAAAEMDIzMJADAAIAAAAUAAAC3JAEAAIAAAAUAAAC8JIB
AAoAAAABAAADBJICAAUAAAABAAADDJIEAAoAAAABAAADFJIFAAUAAAABAAADHJIHAAMAAAABAAUAAJII
AAMAAAABAAAAAJIJAAMAAAABAAAAAJIKAAUAAAABAAADJJKRAAIAAAADNTMAAJKSAAIAAAADNTMAAKAB
AAMAAAABAAEAAKACAAQAAAABAAAB9KADAAQAAAABAAAB9KIOAAUAAAABAAADLKIPAAUAAAABAAADNKIQ
AAMAAAABAAMAAKIXAAMAAAABAAIAAKMAAAcAAAABAwAAAKMBAAcAAAABAQAAAKQBAAMAAAABAAAAAKQC
AAMAAAABAAEAAKQDAAMAAAABAAEAAKQFAAMAAAABADIAAKQGAAMAAAABAAAAAKQHAAMAAAABAAAAAKQI
AAMAAAABAAAAAKQJAAMAAAABAAAAAKQKAAMAAAABAAAAAKQMAAMAAAABAAAAAKQxAAIAAAAIAAADPKQy
AAUAAAAEAAADRKQ0AAIAAAAOAAADZAAAAAAAAAABAAAAyAAAAAUAAAACMjAxODowOToyNiAxMDozNDo1
MwAyMDE4OjA5OjI2IDEwOjM0OjUzAAAAZFsAAA0hAAKFeQAA9CQAAAACAAAAAwAAAAEAAAABAAAAMgAA
AAEAFtM1AAACigAW0zUAAAKKODgwNDAwNwAAAAAyAAAAAQAAADIAAAABAAAABwAAAAUAAAAHAAAABTUw
LjAgbW0gZi8xLjQA/+ELJ2h0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8APD94cGFja2V0IGJlZ2lu
PSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJh
ZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS40LjAiPiA8cmRmOlJERiB4bWxuczpyZGY9
Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0
aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHht
bG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6ZGM9
Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczphdXg9Imh0dHA6Ly9ucy5hZG9i
ZS5jb20vZXhpZi8xLjAvYXV4LyIgeG1wOk1vZGlmeURhdGU9IjIwMTktMDctMTdUMTA6MDc6MzYiIHht
cDpDcmVhdG9yVG9vbD0iUGl4ZWxtYXRvciAzLjguNSIgeG1wOkNyZWF0ZURhdGU9IjIwMTgtMDktMjZU
MTA6MzQ6NTMiIHBob3Rvc2hvcDpEYXRlQ3JlYXRlZD0iMjAxOC0wOS0yNlQxMDozNDo1MyIgYXV4Okxl
bnM9IjUwLjAgbW0gZi8xLjQiIGF1eDpJbWFnZU51bWJlcj0iNTQwNyIgYXV4OkxlbnNJRD0iMTYwIiBh
dXg6U2VyaWFsTnVtYmVyPSI4ODA0MDA3IiBhdXg6TGVuc0luZm89IjUwLzEgNTAvMSA3LzUgNy81Ij4g
PGRjOnN1YmplY3Q+IDxyZGY6QmFnLz4gPC9kYzpzdWJqZWN0PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9y
ZGY6UkRGPiA8L3g6eG1wbWV0YT4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8P3hwYWNrZXQgZW5kPSJ3Ij8+AP/tAHhQaG90b3No
b3AgMy4wADhCSU0EBAAAAAAAPxwBWgADGyVHHAIAAAIAAhwCPgAIMjAxODA5MjYcAj8ABjEwMzQ1MxwC
NwAIMjAxODA5MjYcAjwABjEwMzQ1MwA4QklNBCUAAAAAABBP7b/y1Vk/1NM2WgzC7tTm/8AAEQgB9AH0
AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQE
AAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5
OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqy
s7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEB
AQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKB
CBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdo
aWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW
19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/bAEMAAQEBAQEBAgEBAgMCAgIDBAMDAwMEBgQEBAQEBgcGBgYG
BgYHBwcHBwcHBwgICAgICAkJCQkJCwsLCwsLCwsLC//bAEMBAgICAwMDBQMDBQsIBggLCwsLCwsLCwsL
CwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLC//dAAQAIP/aAAwDAQACEQMRAD8A
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
- name: Mkdir android/app/src/main/assets
mkdir: android/app/src/main/assets
- name: Add android/app/src/main/assets/eat_new_orleans.jpg
path: android/app/src/main/assets/eat_new_orleans.jpg
base64-contents: |
/9j/4AAQSkZJRgABAQAA8ADwAAD/4QN6RXhpZgAATU0AKgAAAAgACgEGAAMAAAABAAIAAAEPAAIAAAAS
AAAAhgEQAAIAAAALAAAAmAESAAMAAAABAAEAAAEaAAUAAAABAAAApAEbAAUAAAABAAAArAEoAAMAAAAB
AAIAAAExAAIAAAARAAAAtAEyAAIAAAAUAAAAxodpAAQAAAABAAAA2gAAAABOSUtPTiBDT1JQT1JBVElP
TgBOSUtPTiBEODUwAAAAAADwAAAAAQAAAPAAAAABUGl4ZWxtYXRvciAzLjguNQAAMjAxOTowNzoxNyAx
MDowNzozNgAAKYKaAAUAAAABAAACzIKdAAUAAAABAAAC1IgiAAMAAAABAAEAAIgnAAMAAAABAfQAAIgw
AAMAAAABAAIAAIgyAAQAAAABAAAB9JAAAAcAAAAEMDIzMJADAAIAAAAUAAAC3JAEAAIAAAAUAAAC8JIB
AAoAAAABAAADBJICAAUAAAABAAADDJIEAAoAAAABAAADFJIFAAUAAAABAAADHJIHAAMAAAABAAUAAJII
AAMAAAABAAAAAJIJAAMAAAABAAAAAJIKAAUAAAABAAADJJKRAAIAAAADNTMAAJKSAAIAAAADNTMAAKAB
AAMAAAABAAEAAKACAAQAAAABAAAB9KADAAQAAAABAAAB9KIOAAUAAAABAAADLKIPAAUAAAABAAADNKIQ
AAMAAAABAAMAAKIXAAMAAAABAAIAAKMAAAcAAAABAwAAAKMBAAcAAAABAQAAAKQBAAMAAAABAAAAAKQC
AAMAAAABAAEAAKQDAAMAAAABAAEAAKQFAAMAAAABADIAAKQGAAMAAAABAAAAAKQHAAMAAAABAAAAAKQI
AAMAAAABAAAAAKQJAAMAAAABAAAAAKQKAAMAAAABAAAAAKQMAAMAAAABAAAAAKQxAAIAAAAIAAADPKQy
AAUAAAAEAAADRKQ0AAIAAAAOAAADZAAAAAAAAAABAAAAyAAAAAUAAAACMjAxODowOToyNiAxMDozNDo1
MwAyMDE4OjA5OjI2IDEwOjM0OjUzAAAAZFsAAA0hAAKFeQAA9CQAAAACAAAAAwAAAAEAAAABAAAAMgAA
AAEAFtM1AAACigAW0zUAAAKKODgwNDAwNwAAAAAyAAAAAQAAADIAAAABAAAABwAAAAUAAAAHAAAABTUw
LjAgbW0gZi8xLjQA/+ELJ2h0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8APD94cGFja2V0IGJlZ2lu
PSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJh
ZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS40LjAiPiA8cmRmOlJERiB4bWxuczpyZGY9
Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0
aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHht
bG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6ZGM9
Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczphdXg9Imh0dHA6Ly9ucy5hZG9i
ZS5jb20vZXhpZi8xLjAvYXV4LyIgeG1wOk1vZGlmeURhdGU9IjIwMTktMDctMTdUMTA6MDc6MzYiIHht
cDpDcmVhdG9yVG9vbD0iUGl4ZWxtYXRvciAzLjguNSIgeG1wOkNyZWF0ZURhdGU9IjIwMTgtMDktMjZU
MTA6MzQ6NTMiIHBob3Rvc2hvcDpEYXRlQ3JlYXRlZD0iMjAxOC0wOS0yNlQxMDozNDo1MyIgYXV4Okxl
bnM9IjUwLjAgbW0gZi8xLjQiIGF1eDpJbWFnZU51bWJlcj0iNTQwNyIgYXV4OkxlbnNJRD0iMTYwIiBh
dXg6U2VyaWFsTnVtYmVyPSI4ODA0MDA3IiBhdXg6TGVuc0luZm89IjUwLzEgNTAvMSA3LzUgNy81Ij4g
PGRjOnN1YmplY3Q+IDxyZGY6QmFnLz4gPC9kYzpzdWJqZWN0PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9y
ZGY6UkRGPiA8L3g6eG1wbWV0YT4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8P3hwYWNrZXQgZW5kPSJ3Ij8+AP/tAHhQaG90b3No
b3AgMy4wADhCSU0EBAAAAAAAPxwBWgADGyVHHAIAAAIAAhwCPgAIMjAxODA5MjYcAj8ABjEwMzQ1MxwC
NwAIMjAxODA5MjYcAjwABjEwMzQ1MwA4QklNBCUAAAAAABBP7b/y1Vk/1NM2WgzC7tTm/8AAEQgB9AH0
AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQE
AAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5
OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqy
s7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEB
AQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKB
CBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdo
aWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW
19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/bAEMAAQEBAQEBAgEBAgMCAgIDBAMDAwMEBgQEBAQEBgcGBgYG
BgYHBwcHBwcHBwgICAgICAkJCQkJCwsLCwsLCwsLC//bAEMBAgICAwMDBQMDBQsIBggLCwsLCwsLCwsL
CwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLC//dAAQAIP/aAAwDAQACEQMRAD8A
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
- name: Remove widget_test.dart
rm: test/widget_test.dart
- name: Add android/app/src/main/kotlin/dev/flutter/platform_channels/AccelerometerStreamHandler.kt
path: android/app/src/main/kotlin/dev/flutter/platform_channels/AccelerometerStreamHandler.kt
replace-contents: |
// Copyright 2020 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package dev.flutter.platform_channels
import android.hardware.Sensor
import android.hardware.SensorEvent
import android.hardware.SensorEventListener
import android.hardware.SensorManager
import io.flutter.plugin.common.EventChannel
class AccelerometerStreamHandler(sManager: SensorManager, s: Sensor) : EventChannel.StreamHandler, SensorEventListener {
private val sensorManager: SensorManager = sManager
private val accelerometerSensor: Sensor = s
private lateinit var eventSink: EventChannel.EventSink
override fun onListen(arguments: Any?, events: EventChannel.EventSink?) {
if (events != null) {
eventSink = events
sensorManager.registerListener(this, accelerometerSensor, SensorManager.SENSOR_DELAY_UI)
}
}
override fun onCancel(arguments: Any?) {
sensorManager.unregisterListener(this)
}
override fun onAccuracyChanged(sensor: Sensor?, accuracy: Int) {}
override fun onSensorChanged(sensorEvent: SensorEvent?) {
if (sensorEvent != null) {
val axisValues = listOf(sensorEvent.values[0], sensorEvent.values[1], sensorEvent.values[2])
eventSink.success(axisValues)
} else {
eventSink.error("DATA_UNAVAILABLE", "Cannot get accelerometer data", null)
}
}
}
- name: Replace android/app/src/main/kotlin/dev/flutter/platform_channels/MainActivity.kt
path: android/app/src/main/kotlin/dev/flutter/platform_channels/MainActivity.kt
replace-contents: |
// Copyright 2020 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package dev.flutter.platform_channels
import android.content.Context
import android.hardware.Sensor
import android.hardware.SensorManager
import com.google.gson.Gson
import com.google.gson.reflect.TypeToken
import io.flutter.embedding.android.FlutterActivity
import io.flutter.embedding.engine.FlutterEngine
import io.flutter.plugin.common.*
import java.io.InputStream
import java.nio.ByteBuffer
class MainActivity : FlutterActivity() {
override fun configureFlutterEngine(flutterEngine: FlutterEngine) {
// Creates a MethodChannel as soon as the FlutterEngine is attached to
// the Activity, and registers a MethodCallHandler. The Method.setMethodCallHandler
// is responsible to register a MethodCallHandler to handle the incoming calls.
// The call parameter of MethodCallHandler has information about the incoming call,
// like method name, and arguments. The result parameter of MethodCallHandler is
// responsible to send the results of the call.
MethodChannel(flutterEngine.dartExecutor, "methodChannelDemo")
.setMethodCallHandler { call, result ->
val count: Int? = call.argument<Int>("count")
if (count == null) {
result.error("INVALID ARGUMENT", "Value of count cannot be null", null)
} else {
when (call.method) {
"increment" -> result.success(count + 1)
"decrement" -> result.success(count - 1)
else -> result.notImplemented()
}
}
}
val sensorManger: SensorManager = getSystemService(Context.SENSOR_SERVICE) as SensorManager
val accelerometerSensor: Sensor = sensorManger.getDefaultSensor(Sensor.TYPE_ACCELEROMETER)
EventChannel(flutterEngine.dartExecutor, "eventChannelDemo")
.setStreamHandler(AccelerometerStreamHandler(sensorManger, accelerometerSensor))
// Registers a MessageHandler for BasicMessageChannel to receive a message from Dart and send
// image data in reply.
BasicMessageChannel(flutterEngine.dartExecutor, "platformImageDemo", StandardMessageCodec())
.setMessageHandler { message, reply ->
if (message == "getImage") {
val inputStream: InputStream = assets.open("eat_new_orleans.jpg")
reply.reply(inputStream.readBytes())
}
}
val petList = mutableListOf<Map<String, String>>()
val gson = Gson()
// A BasicMessageChannel for sending petList to Dart.
val stringCodecChannel = BasicMessageChannel(flutterEngine.dartExecutor, "stringCodecDemo", StringCodec.INSTANCE)
// Registers a MessageHandler for BasicMessageChannel to receive pet details to be
// added in petList and send the it back to Dart using stringCodecChannel.
BasicMessageChannel(flutterEngine.dartExecutor, "jsonMessageCodecDemo", JSONMessageCodec.INSTANCE)
.setMessageHandler { message, reply ->
petList.add(0, gson.fromJson(message.toString(), object : TypeToken<Map<String, String>>() {}.type))
stringCodecChannel.send(gson.toJson(mapOf("petList" to petList)))
}
// Registers a MessageHandler for BasicMessageChannel to receive the index of pet
// details to be removed from the petList and send the petList back to Dart using
// stringCodecChannel. If the index is not in the range of petList, we send null
// back to Dart.
BasicMessageChannel(flutterEngine.dartExecutor, "binaryCodecDemo", BinaryCodec.INSTANCE)
.setMessageHandler { message, reply ->
val index = String(message!!.array()).toInt()
if (index >= 0 && index < petList.size) {
petList.removeAt(index)
val replyMessage = "Removed Successfully"
reply.reply(ByteBuffer.allocateDirect(replyMessage.toByteArray().size).put(replyMessage.toByteArray()))
stringCodecChannel.send(gson.toJson(mapOf("petList" to petList)))
} else {
reply.reply(null)
}
}
}
}
- name: Add ios/Runner/AccelerometerStreamHandler.swift
path: ios/Runner/AccelerometerStreamHandler.swift
replace-contents: |
// Copyright 2020 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import CoreMotion
class AccelerometerStreamHandler: NSObject, FlutterStreamHandler {
var motionManager: CMMotionManager;
override init() {
motionManager = CMMotionManager()
}
func onListen(withArguments arguments: Any?, eventSink events: @escaping FlutterEventSink) -> FlutterError? {
if !motionManager.isAccelerometerAvailable {
events(FlutterError(code: "SENSOR_UNAVAILABLE", message: "Accelerometer is not available", details: nil))
}
motionManager.accelerometerUpdateInterval = 0.1
motionManager.startAccelerometerUpdates(to: OperationQueue.main) {(data, error) in
guard let accelerationData = data?.acceleration else {
events(FlutterError(code: "DATA_UNAVAILABLE", message: "Cannot get accelerometer data", details: nil ))
return
}
events([accelerationData.x, accelerationData.y, accelerationData.z])
}
return nil
}
func onCancel(withArguments arguments: Any?) -> FlutterError? {
return nil
}
}
- name: Add AccelerometerStreamHandler.swift to Xcode project
xcode-project-path: ios/Runner.xcodeproj
xcode-add-file: AccelerometerStreamHandler.swift
- name: Replace ios/Runner/AppDelegate.swift
path: ios/Runner/AppDelegate.swift
replace-contents: |
// Copyright 2020 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import UIKit
import Flutter
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
let flutterViewController = window.rootViewController as! FlutterViewController
FlutterMethodChannel(name: "methodChannelDemo", binaryMessenger: flutterViewController.binaryMessenger).setMethodCallHandler({
(call: FlutterMethodCall, result: FlutterResult) -> Void in
guard let count = (call.arguments as? NSDictionary)?["count"] as? Int else {
result(FlutterError(code: "INVALID_ARGUMENT", message: "Value of count cannot be null", details: nil))
return
}
switch call.method {
case "increment":
result(count + 1)
case "decrement":
result(count - 1)
default:
result(FlutterMethodNotImplemented)
}
})
FlutterBasicMessageChannel(name: "platformImageDemo", binaryMessenger: flutterViewController.binaryMessenger, codec: FlutterStandardMessageCodec.sharedInstance()).setMessageHandler{
(message: Any?, reply: FlutterReply) -> Void in
if(message as! String == "getImage") {
guard let image = UIImage(named: "eat_new_orleans.jpg") else {
reply(nil)
return
}
reply(FlutterStandardTypedData(bytes: image.jpegData(compressionQuality: 1)!))
}
}
FlutterEventChannel(name: "eventChannelDemo", binaryMessenger: flutterViewController.binaryMessenger).setStreamHandler(AccelerometerStreamHandler())
var petList : [[String:String]] = []
// A FlutterBasicMessageChannel for sending petList to Dart.
let stringCodecChannel = FlutterBasicMessageChannel(name: "stringCodecDemo", binaryMessenger: flutterViewController.binaryMessenger, codec: FlutterStringCodec.sharedInstance())
// Registers a MessageHandler for FlutterBasicMessageChannel to receive pet details.
FlutterBasicMessageChannel(name: "jsonMessageCodecDemo", binaryMessenger: flutterViewController.binaryMessenger, codec: FlutterJSONMessageCodec.sharedInstance())
.setMessageHandler{(message: Any?, reply: FlutterReply) -> Void in
petList.insert(message! as! [String: String], at: 0)
stringCodecChannel.sendMessage(self.convertPetListToJson(petList: petList))
}
// Registers a MessageHandler for FlutterBasicMessageHandler to receive indices of detail records to remove from the petList.
FlutterBasicMessageChannel(name: "binaryCodecDemo", binaryMessenger: flutterViewController.binaryMessenger, codec: FlutterBinaryCodec.sharedInstance()).setMessageHandler{
(message: Any?, reply: FlutterReply) -> Void in
guard let index = Int.init(String.init(data: message! as! Data, encoding: String.Encoding.utf8)!) else {
reply(nil)
return
}
if (index >= 0 && index < petList.count) {
petList.remove(at: index)
reply("Removed Successfully".data(using: .utf8)!)
stringCodecChannel.sendMessage(self.convertPetListToJson(petList: petList))
} else {
reply(nil)
}
}
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
// Function to convert petList to json string.
func convertPetListToJson(petList: [[String: String]]) -> String? {
guard let data = try? JSONSerialization.data(withJSONObject: ["petList": petList], options: .prettyPrinted) else {
return nil
}
return String(data: data, encoding: String.Encoding.utf8)
}
}
- name: Add ios/Runner/Assets.xcassets/Contents.json
path: ios/Runner/Assets.xcassets/Contents.json
replace-contents: |
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
| samples/platform_channels/codelab_rebuild.yaml/0 | {
"file_path": "samples/platform_channels/codelab_rebuild.yaml",
"repo_id": "samples",
"token_count": 169015
} | 1,217 |
// Copyright 2020 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:platform_channels/src/accelerometer_event_channel.dart';
/// Demonstrates how to use [EventChannel] to listen continuous values
/// of Accelerometer Sensor from platform.
///
/// The widget uses a [StreamBuilder] to rebuild it's descendant whenever it
/// listens a new value from the [Accelerometer.readings] stream. It has three
/// [Text] widgets to display the value of [AccelerometerReadings.x],
/// [AccelerometerReadings.y], and [AccelerometerReadings.z] respectively.
class EventChannelDemo extends StatelessWidget {
const EventChannelDemo({super.key});
@override
Widget build(BuildContext context) {
final textStyle = Theme.of(context).textTheme.headlineSmall;
return Scaffold(
appBar: AppBar(
title: const Text('EventChannel Demo'),
),
body: Center(
child: StreamBuilder<AccelerometerReadings>(
stream: Accelerometer.readings,
builder: (context, snapshot) {
return switch (snapshot) {
AsyncSnapshot(hasError: true) =>
Text((snapshot.error as PlatformException).message!),
AsyncSnapshot(hasData: true) => Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text('x axis: ${snapshot.data!.x.toStringAsFixed(3)}',
style: textStyle),
Text('y axis: ${snapshot.data!.y.toStringAsFixed(3)}',
style: textStyle),
Text('z axis: ${snapshot.data!.z.toStringAsFixed(3)}',
style: textStyle)
],
),
_ => Text('No Data Available', style: textStyle),
};
},
),
),
);
}
}
| samples/platform_channels/lib/src/event_channel_demo.dart/0 | {
"file_path": "samples/platform_channels/lib/src/event_channel_demo.dart",
"repo_id": "samples",
"token_count": 845
} | 1,218 |
// Copyright 2020 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'widgets.dart';
class SettingsTab extends StatefulWidget {
static const title = 'Settings';
static const androidIcon = Icon(Icons.settings);
static const iosIcon = Icon(CupertinoIcons.gear);
const SettingsTab({super.key});
@override
State<SettingsTab> createState() => _SettingsTabState();
}
class _SettingsTabState extends State<SettingsTab> {
var switch1 = false;
var switch2 = true;
var switch3 = true;
var switch4 = true;
var switch5 = true;
var switch6 = false;
var switch7 = true;
Widget _buildList() {
return ListView(
children: [
const Padding(padding: EdgeInsets.only(top: 24)),
ListTile(
title: const Text('Send me marketing emails'),
// The Material switch has a platform adaptive constructor.
trailing: Switch.adaptive(
value: switch1,
onChanged: (value) => setState(() => switch1 = value),
),
),
ListTile(
title: const Text('Enable notifications'),
trailing: Switch.adaptive(
value: switch2,
onChanged: (value) => setState(() => switch2 = value),
),
),
ListTile(
title: const Text('Remind me to rate this app'),
trailing: Switch.adaptive(
value: switch3,
onChanged: (value) => setState(() => switch3 = value),
),
),
ListTile(
title: const Text('Background song refresh'),
trailing: Switch.adaptive(
value: switch4,
onChanged: (value) => setState(() => switch4 = value),
),
),
ListTile(
title: const Text('Recommend me songs based on my location'),
trailing: Switch.adaptive(
value: switch5,
onChanged: (value) => setState(() => switch5 = value),
),
),
ListTile(
title: const Text('Auto-transition playback to cast devices'),
trailing: Switch.adaptive(
value: switch6,
onChanged: (value) => setState(() => switch6 = value),
),
),
ListTile(
title: const Text('Find friends from my contact list'),
trailing: Switch.adaptive(
value: switch7,
onChanged: (value) => setState(() => switch7 = value),
),
),
],
);
}
// ===========================================================================
// Non-shared code below because this tab uses different scaffolds.
// ===========================================================================
Widget _buildAndroid(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text(SettingsTab.title),
),
body: _buildList(),
);
}
Widget _buildIos(BuildContext context) {
return CupertinoPageScaffold(
navigationBar: const CupertinoNavigationBar(),
child: _buildList(),
);
}
@override
Widget build(context) {
return PlatformWidget(
androidBuilder: _buildAndroid,
iosBuilder: _buildIos,
);
}
}
| samples/platform_design/lib/settings_tab.dart/0 | {
"file_path": "samples/platform_design/lib/settings_tab.dart",
"repo_id": "samples",
"token_count": 1357
} | 1,219 |
# platform_view_swift
A Flutter sample app that combines a native iOS UIViewController
with a full-screen Flutter view.
## Goals for this sample
* Show a simple technique for combining native and Flutter views.
## The important bits
### `lib/main.dart`
The Flutter part of the application is quite simple, and all the action
takes place in a single file.
### `ios/Runner/PlatformViewController.swift` and `AppDelegate.swift`
These files contain the Swift code responsible for setting up a platform
channel, launching a native UIViewController, and returning control to
Flutter when finished.
## Questions/issues
If you have a general question about Flutter, the best places to go are:
* [The FlutterDev Google Group](https://groups.google.com/forum/#!forum/flutter-dev)
* [The Flutter Gitter channel](https://gitter.im/flutter/flutter)
* [StackOverflow](https://stackoverflow.com/questions/tagged/flutter)
If you run into an issue with the sample itself, please file an issue
in the [main Flutter repo](https://github.com/flutter/flutter/issues).
| samples/platform_view_swift/README.md/0 | {
"file_path": "samples/platform_view_swift/README.md",
"repo_id": "samples",
"token_count": 299
} | 1,220 |
name: provider_counter
description: >
The starter Flutter application, but using Provider to manage state.
publish_to: none
version: 1.0.0
environment:
sdk: ^3.2.0
dependencies:
flutter:
sdk: flutter
provider: ^6.0.2
cupertino_icons: ^1.0.3
window_size:
git:
url: https://github.com/google/flutter-desktop-embedding.git
path: plugins/window_size
dev_dependencies:
analysis_defaults:
path: ../analysis_defaults
flutter_test:
sdk: flutter
flutter:
uses-material-design: true
| samples/provider_counter/pubspec.yaml/0 | {
"file_path": "samples/provider_counter/pubspec.yaml",
"repo_id": "samples",
"token_count": 204
} | 1,221 |
// Copyright 2019 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
/// A proxy of the catalog of items the user can buy.
///
/// In a real app, this might be backed by a backend and cached on device.
/// In this sample app, the catalog is procedurally generated and infinite.
///
/// For simplicity, the catalog is expected to be immutable (no products are
/// expected to be added, removed or changed during the execution of the app).
class CatalogModel {
static List<String> itemNames = [
'Code Smell',
'Control Flow',
'Interpreter',
'Recursion',
'Sprint',
'Heisenbug',
'Spaghetti',
'Hydra Code',
'Off-By-One',
'Scope',
'Callback',
'Closure',
'Automata',
'Bit Shift',
'Currying',
];
/// Get item by [id].
///
/// In this sample, the catalog is infinite, looping over [itemNames].
Item getById(int id) => Item(id, itemNames[id % itemNames.length]);
/// Get item by its position in the catalog.
Item getByPosition(int position) {
// In this simplified case, an item's position in the catalog
// is also its id.
return getById(position);
}
}
@immutable
class Item {
final int id;
final String name;
final Color color;
final int price = 42;
Item(this.id, this.name)
// To make the sample app look nicer, each item is given one of the
// Material Design primary colors.
: color = Colors.primaries[id % Colors.primaries.length];
@override
int get hashCode => id;
@override
bool operator ==(Object other) => other is Item && other.id == id;
}
| samples/provider_shopper/lib/models/catalog.dart/0 | {
"file_path": "samples/provider_shopper/lib/models/catalog.dart",
"repo_id": "samples",
"token_count": 550
} | 1,222 |
package com.example.simple_shader
import io.flutter.embedding.android.FlutterActivity
class MainActivity: FlutterActivity() {
}
| samples/simple_shader/android/app/src/main/kotlin/com/example/simple_shader/MainActivity.kt/0 | {
"file_path": "samples/simple_shader/android/app/src/main/kotlin/com/example/simple_shader/MainActivity.kt",
"repo_id": "samples",
"token_count": 39
} | 1,223 |
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:simplistic_calculator/main.dart';
void main() {
testWidgets('Calculator smoke test', (tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(
const ProviderScope(
child: CalculatorApp(),
),
);
// Verify that our counter starts at 1 through 9, + and =.
expect(find.text('1'), findsOneWidget);
expect(find.text('2'), findsOneWidget);
expect(find.text('3'), findsOneWidget);
expect(find.text('4'), findsOneWidget);
expect(find.text('5'), findsOneWidget);
expect(find.text('6'), findsOneWidget);
expect(find.text('7'), findsOneWidget);
expect(find.text('8'), findsOneWidget);
expect(find.text('9'), findsOneWidget);
expect(find.text('+'), findsOneWidget);
expect(find.text('='), findsOneWidget);
await tester.tap(find.text('9'));
await tester.tap(find.text('+'));
await tester.tap(find.text('6'));
await tester.tap(find.text('='));
await tester.pump();
// Verify that our calculator evaluates correctly.
expect(find.text('15'), findsOneWidget);
});
}
| samples/simplistic_calculator/test/widget_test.dart/0 | {
"file_path": "samples/simplistic_calculator/test/widget_test.dart",
"repo_id": "samples",
"token_count": 448
} | 1,224 |
// Copyright 2020 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:provider/provider.dart';
import 'package:testing_app/main.dart';
import 'package:testing_app/models/favorites.dart';
Widget createHomeScreen() => ChangeNotifierProvider<Favorites>(
create: (context) => Favorites(),
child: MaterialApp.router(
routerConfig: router(),
),
);
void main() {
group('Home Page Widget Tests', () {
testWidgets('Testing if ListView shows up', (tester) async {
await tester.pumpWidget(createHomeScreen());
// Verify if ListView shows up.
expect(find.byType(ListView), findsOneWidget);
});
testWidgets('Testing Scrolling', (tester) async {
await tester.pumpWidget(createHomeScreen());
// Check if "Item 0" is present on the screen.
expect(find.text('Item 0'), findsOneWidget);
// Fling i.e scroll down.
await tester.fling(find.byType(ListView), const Offset(0, -200), 3000);
await tester.pumpAndSettle();
// Check if "Item 0" disappeared.
expect(find.text('Item 0'), findsNothing);
});
testWidgets('Testing IconButtons', (tester) async {
await tester.pumpWidget(createHomeScreen());
// Check if any solid favorite icon is present.
expect(find.byIcon(Icons.favorite), findsNothing);
// Tap the first item's icon to add it to favorites.
await tester.tap(find.byIcon(Icons.favorite_border).first);
await tester.pumpAndSettle(const Duration(seconds: 1));
// Verify if the appropriate message is shown.
expect(find.text('Added to favorites.'), findsOneWidget);
// Check if any solid favorite icon shows up.
expect(find.byIcon(Icons.favorite), findsWidgets);
// Tap the first item's icon which has filled icon to
// remove it from favorites.
await tester.tap(find.byIcon(Icons.favorite).first);
await tester.pumpAndSettle(const Duration(seconds: 1));
// Verify if the appropriate message is shown.
expect(find.text('Removed from favorites.'), findsOneWidget);
// Check if the filled icon changes back to bordered icon.
expect(find.byIcon(Icons.favorite), findsNothing);
});
testWidgets('Testing Navigation', (tester) async {
await tester.pumpWidget(createHomeScreen());
// Tap the Favorites button in the app bar
await tester.tap(find.text('Favorites'));
await tester.pumpAndSettle();
// Verify if the empty favorites screen is shown.
expect(find.text('No favorites added.'), findsOneWidget);
});
});
}
| samples/testing_app/test/home_test.dart/0 | {
"file_path": "samples/testing_app/test/home_test.dart",
"repo_id": "samples",
"token_count": 975
} | 1,225 |
#!/bin/bash
set -e
scriptDirectory="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
# It seems federated_plugin_* isn't happy to run flutter pub upgrade
for dir in `find "${scriptDirectory}/.." -name pubspec.yaml -exec dirname {} \; | grep -v federated_plugin | grep -v experimental | sort`
do
(
cd $dir
echo "Updating `pwd`"
flutter pub upgrade
flutter pub outdated
)
done
| samples/tool/flutter_pub_upgrade.sh/0 | {
"file_path": "samples/tool/flutter_pub_upgrade.sh",
"repo_id": "samples",
"token_count": 179
} | 1,226 |
// Copyright 2018 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/cupertino.dart';
enum VeggieCategory {
allium,
berry,
citrus,
cruciferous,
fern,
flower,
fruit,
fungus,
gourd,
leafy,
legume,
melon,
root,
stealthFruit,
stoneFruit,
tropical,
tuber,
vegetable,
}
enum Season {
winter,
spring,
summer,
autumn,
}
class Trivia {
final String question;
final List<String> answers;
final int correctAnswerIndex;
const Trivia(this.question, this.answers, this.correctAnswerIndex);
}
const Map<VeggieCategory, String> veggieCategoryNames = {
VeggieCategory.allium: 'Allium',
VeggieCategory.berry: 'Berry',
VeggieCategory.citrus: 'Citrus',
VeggieCategory.cruciferous: 'Cruciferous',
VeggieCategory.fern: 'Technically a fern',
VeggieCategory.flower: 'Flower',
VeggieCategory.fruit: 'Fruit',
VeggieCategory.fungus: 'Fungus',
VeggieCategory.gourd: 'Gourd',
VeggieCategory.leafy: 'Leafy',
VeggieCategory.legume: 'Legume',
VeggieCategory.melon: 'Melon',
VeggieCategory.root: 'Root vegetable',
VeggieCategory.stealthFruit: 'Stealth fruit',
VeggieCategory.stoneFruit: 'Stone fruit',
VeggieCategory.tropical: 'Tropical',
VeggieCategory.tuber: 'Tuber',
VeggieCategory.vegetable: 'Vegetable',
};
const Map<Season, String> seasonNames = {
Season.winter: 'Winter',
Season.spring: 'Spring',
Season.summer: 'Summer',
Season.autumn: 'Autumn',
};
class Veggie {
Veggie({
required this.id,
required this.name,
required this.imageAssetPath,
required this.category,
required this.shortDescription,
required this.accentColor,
required this.seasons,
required this.vitaminAPercentage,
required this.vitaminCPercentage,
required this.servingSize,
required this.caloriesPerServing,
required this.trivia,
this.isFavorite = false,
});
final int id;
final String name;
/// Each veggie has an associated image asset that's used as a background
/// image and icon.
final String imageAssetPath;
final VeggieCategory category;
/// A short, snappy line.
final String shortDescription;
/// A color value to use when constructing UI elements to match the image
/// found at [imageAssetPath].
final Color accentColor;
/// Seasons during which a veggie is harvested.
final List<Season> seasons;
/// Percentage of the FDA's recommended daily value of vitamin A for someone
/// with a 2,000 calorie diet.
final int vitaminAPercentage;
/// Percentage of the FDA's recommended daily value of vitamin C for someone
/// with a 2,000 calorie diet.
final int vitaminCPercentage;
/// A text description of a single serving (e.g. '1 apple' or '1/2 cup').
final String servingSize;
/// Calories per serving (as described in [servingSize]).
final int caloriesPerServing;
/// Whether or not the veggie has been saved to the user's garden (i.e. marked
/// as a favorite).
bool isFavorite;
/// A set of trivia questions and answers related to the veggie.
final List<Trivia> trivia;
String? get categoryName => veggieCategoryNames[category];
}
| samples/veggieseasons/lib/data/veggie.dart/0 | {
"file_path": "samples/veggieseasons/lib/data/veggie.dart",
"repo_id": "samples",
"token_count": 1033
} | 1,227 |
import 'dart:io';
import 'package:path/path.dart' as p;
Future<void> main() async {
await fixBaseTags();
}
/// Changes each sample's `<base href="/">` tag in index.html to
/// `<base href="/samples/web/<SAMPLE_DIR_NAME>/">`
///
/// For example, after building using `build_ci.dart,
/// `../samples_index/public/web/navigation_and_routing/index.html` should
/// contain `<base href="/samples/web/navigation_and_routing/">
Future<void> fixBaseTags() async {
print('currentDir = ${Directory.current.path}');
var builtSamplesDir = Directory(p.joinAll([
// Parent directory
...p.split(Directory.current.path),
// path to built samples
...p.split('samples_index/public/web')
]));
if (!await builtSamplesDir.exists()) {
print('${builtSamplesDir.path} does not exist.');
exit(1);
}
await for (var builtSample in builtSamplesDir.list()) {
if (builtSample is Directory) {
var index = File(p.join(builtSample.path, 'index.html'));
if (!await index.exists()) {
throw ('no index.html file found in ${builtSample.path}');
}
var sampleDirName = p.split(builtSample.path).last;
if (await index.exists()) {
final regex = RegExp('<base href="(.*)">');
var contents = await index.readAsString();
if (!contents.contains(regex)) {
continue;
}
var newContents = contents.replaceFirst(
regex, '<base href="/samples/web/$sampleDirName/">');
await index.writeAsString(newContents);
}
}
}
}
| samples/web/_tool/fix_base_tags.dart/0 | {
"file_path": "samples/web/_tool/fix_base_tags.dart",
"repo_id": "samples",
"token_count": 594
} | 1,228 |
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"useDefineForClassFields": false,
"lib": [
"ES2022",
"dom"
]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}
| samples/web_embedding/ng-flutter/tsconfig.json/0 | {
"file_path": "samples/web_embedding/ng-flutter/tsconfig.json",
"repo_id": "samples",
"token_count": 362
} | 1,229 |
source 'https://rubygems.org'
gem 'jekyll', '4.3.3'
gem 'jekyll-sass-converter', '~> 3.0.0'
gem 'webrick'
# Used for custom _plugins
gem 'activesupport', '~> 7.1.3'
gem 'liquid-tag-parser', '~> 2.0.2'
group :jekyll_plugins do
gem 'jekyll-toc', '~> 0.18.0'
end
| website/Gemfile/0 | {
"file_path": "website/Gemfile",
"repo_id": "website",
"token_count": 130
} | 1,230 |
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
// #docregion MaterialApp
return MaterialApp(
title: 'Custom Fonts',
// Set Raleway as the default app font.
theme: ThemeData(fontFamily: 'Raleway'),
home: const MyHomePage(),
);
// #enddocregion MaterialApp
}
}
class MyHomePage extends StatelessWidget {
const MyHomePage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
// The AppBar uses the app-default Raleway font.
appBar: AppBar(title: const Text('Custom Fonts')),
body: const Center(
// This Text widget uses the RobotoMono font.
// #docregion Text
child: Text(
'Roboto Mono sample',
style: TextStyle(fontFamily: 'RobotoMono'),
),
// #enddocregion Text
),
);
}
}
| website/examples/cookbook/design/fonts/lib/main.dart/0 | {
"file_path": "website/examples/cookbook/design/fonts/lib/main.dart",
"repo_id": "website",
"token_count": 388
} | 1,231 |
// ignore_for_file: prefer_const_constructors
import 'package:flutter/material.dart';
class TabBarDemo1 extends StatelessWidget {
const TabBarDemo1({super.key});
@override
Widget build(BuildContext context) {
// #docregion TabController
return MaterialApp(
home: DefaultTabController(
length: 3,
child: Scaffold(),
),
);
// #enddocregion TabController
}
}
class TabBarDemo2 extends StatelessWidget {
const TabBarDemo2({super.key});
@override
Widget build(BuildContext context) {
// #docregion Tabs
return MaterialApp(
home: DefaultTabController(
length: 3,
child: Scaffold(
appBar: AppBar(
bottom: const TabBar(
tabs: [
Tab(icon: Icon(Icons.directions_car)),
Tab(icon: Icon(Icons.directions_transit)),
Tab(icon: Icon(Icons.directions_bike)),
],
),
),
),
),
);
// #enddocregion Tabs
}
}
| website/examples/cookbook/design/tabs/lib/partials.dart/0 | {
"file_path": "website/examples/cookbook/design/tabs/lib/partials.dart",
"repo_id": "website",
"token_count": 470
} | 1,232 |
import 'package:flutter/material.dart';
class Shimmer extends StatefulWidget {
static ShimmerState? of(BuildContext context) {
return context.findAncestorStateOfType<ShimmerState>();
}
const Shimmer({
super.key,
required this.linearGradient,
this.child,
});
final LinearGradient linearGradient;
final Widget? child;
@override
ShimmerState createState() => ShimmerState();
}
// #docregion ShimmerState
class ShimmerState extends State<Shimmer> {
Gradient get gradient => LinearGradient(
colors: widget.linearGradient.colors,
stops: widget.linearGradient.stops,
begin: widget.linearGradient.begin,
end: widget.linearGradient.end,
);
bool get isSized =>
(context.findRenderObject() as RenderBox?)?.hasSize ?? false;
Size get size => (context.findRenderObject() as RenderBox).size;
Offset getDescendantOffset({
required RenderBox descendant,
Offset offset = Offset.zero,
}) {
final shimmerBox = context.findRenderObject() as RenderBox;
return descendant.localToGlobal(offset, ancestor: shimmerBox);
}
@override
Widget build(BuildContext context) {
return widget.child ?? const SizedBox();
}
}
// #enddocregion ShimmerState
| website/examples/cookbook/effects/shimmer_loading/lib/shimmer_state.dart/0 | {
"file_path": "website/examples/cookbook/effects/shimmer_loading/lib/shimmer_state.dart",
"repo_id": "website",
"token_count": 416
} | 1,233 |
name: text_field_changes
description: Sample code for text_field_changes
environment:
sdk: ^3.3.0
dependencies:
flutter:
sdk: flutter
dev_dependencies:
example_utils:
path: ../../../example_utils
flutter:
uses-material-design: true
| website/examples/cookbook/forms/text_field_changes/pubspec.yaml/0 | {
"file_path": "website/examples/cookbook/forms/text_field_changes/pubspec.yaml",
"repo_id": "website",
"token_count": 93
} | 1,234 |
// This file has only enough in it to satisfy `firestore_controller.dart`.
import 'dart:async';
import 'playing_card.dart';
class PlayingArea {
final List<PlayingCard> cards = [];
final StreamController<void> _playerChanges =
StreamController<void>.broadcast();
PlayingArea();
Stream<void> get playerChanges => _playerChanges.stream;
void dispose() {
_playerChanges.close();
}
void replaceWith(List<PlayingCard> cards) {}
}
| website/examples/cookbook/games/firestore_multiplayer/lib/game_internals/playing_area.dart/0 | {
"file_path": "website/examples/cookbook/games/firestore_multiplayer/lib/game_internals/playing_area.dart",
"repo_id": "website",
"token_count": 140
} | 1,235 |
name: ripples
description: Example for ripples cookbook recipe
environment:
sdk: ^3.3.0
dependencies:
flutter:
sdk: flutter
dev_dependencies:
example_utils:
path: ../../../example_utils
flutter:
uses-material-design: true
| website/examples/cookbook/gestures/ripples/pubspec.yaml/0 | {
"file_path": "website/examples/cookbook/gestures/ripples/pubspec.yaml",
"repo_id": "website",
"token_count": 89
} | 1,236 |
import 'package:flutter/material.dart';
// ignore_for_file: unused_local_variable
void main() {
runApp(
const MaterialApp(
title: 'Returning Data',
home: HomeScreen(),
),
);
}
// #docregion HomeScreen
class HomeScreen extends StatelessWidget {
const HomeScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Returning Data Demo'),
),
// Create the SelectionButton widget in the next step.
body: const Center(
child: SelectionButton(),
),
);
}
}
// #enddocregion HomeScreen
// #docregion SelectionButton
class SelectionButton extends StatefulWidget {
const SelectionButton({super.key});
@override
State<SelectionButton> createState() => _SelectionButtonState();
}
class _SelectionButtonState extends State<SelectionButton> {
@override
Widget build(BuildContext context) {
return ElevatedButton(
onPressed: () {
_navigateAndDisplaySelection(context);
},
child: const Text('Pick an option, any option!'),
);
}
Future<void> _navigateAndDisplaySelection(BuildContext context) async {
// Navigator.push returns a Future that completes after calling
// Navigator.pop on the Selection Screen.
final result = await Navigator.push(
context,
// Create the SelectionScreen in the next step.
MaterialPageRoute(builder: (context) => const SelectionScreen()),
);
}
}
// #enddocregion SelectionButton
// #docregion SelectionScreen
class SelectionScreen extends StatelessWidget {
const SelectionScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Pick an option'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Padding(
padding: const EdgeInsets.all(8),
// #docregion Yep
child: ElevatedButton(
onPressed: () {
// Pop here with "Yep"...
},
child: const Text('Yep!'),
),
// #enddocregion Yep
),
Padding(
padding: const EdgeInsets.all(8),
// #docregion Nope
child: ElevatedButton(
onPressed: () {
// Pop here with "Nope"...
},
child: const Text('Nope.'),
),
// #enddocregion Nope
)
],
),
),
);
}
}
// #enddocregion SelectionScreen
| website/examples/cookbook/navigation/returning_data/lib/main_step2.dart/0 | {
"file_path": "website/examples/cookbook/navigation/returning_data/lib/main_step2.dart",
"repo_id": "website",
"token_count": 1141
} | 1,237 |
import 'dart:async';
import 'package:http/http.dart' as http;
// #docregion fetchAlbum
Future<http.Response> fetchAlbum() {
return http.get(Uri.parse('https://jsonplaceholder.typicode.com/albums/1'));
}
// #enddocregion fetchAlbum
| website/examples/cookbook/networking/fetch_data/lib/main_step1.dart/0 | {
"file_path": "website/examples/cookbook/networking/fetch_data/lib/main_step1.dart",
"repo_id": "website",
"token_count": 87
} | 1,238 |
import 'package:flutter_test/flutter_test.dart';
import 'package:shared_preferences/shared_preferences.dart';
Future<void> step2() async {
int counter = 0;
// #docregion Step2
// Load and obtain the shared preferences for this app.
final prefs = await SharedPreferences.getInstance();
// Save the counter value to persistent storage under the 'counter' key.
await prefs.setInt('counter', counter);
// #enddocregion Step2
}
Future<int> step3() async {
// #docregion Step3
final prefs = await SharedPreferences.getInstance();
// Try reading the counter value from persistent storage.
// If not present, null is returned, so default to 0.
final counter = prefs.getInt('counter') ?? 0;
// #enddocregion Step3
return counter;
}
Future<void> step4() async {
// #docregion Step4
final prefs = await SharedPreferences.getInstance();
// Remove the counter key-value pair from persistent storage.
await prefs.remove('counter');
// #enddocregion Step4
}
| website/examples/cookbook/persistence/key_value/lib/partial_excerpts.dart/0 | {
"file_path": "website/examples/cookbook/persistence/key_value/lib/partial_excerpts.dart",
"repo_id": "website",
"token_count": 293
} | 1,239 |
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
testWidgets('Add and remove a todo', (tester) async {
// Build the widget.
await tester.pumpWidget(const TodoList());
// Enter 'hi' into the TextField.
await tester.enterText(find.byType(TextField), 'hi');
// Tap the add button.
await tester.tap(find.byType(FloatingActionButton));
// Rebuild the widget with the new item.
await tester.pump();
// Expect to find the item on screen.
expect(find.text('hi'), findsOneWidget);
// Swipe the item to dismiss it.
await tester.drag(find.byType(Dismissible), const Offset(500, 0));
// Build the widget until the dismiss animation ends.
await tester.pumpAndSettle();
// Ensure that the item is no longer on screen.
expect(find.text('hi'), findsNothing);
});
}
// #docregion TodoList
class TodoList extends StatefulWidget {
const TodoList({super.key});
@override
State<TodoList> createState() => _TodoListState();
}
class _TodoListState extends State<TodoList> {
static const _appTitle = 'Todo List';
final todos = <String>[];
final controller = TextEditingController();
@override
Widget build(BuildContext context) {
return MaterialApp(
title: _appTitle,
home: Scaffold(
appBar: AppBar(
title: const Text(_appTitle),
),
body: Column(
children: [
TextField(
controller: controller,
),
Expanded(
child: ListView.builder(
itemCount: todos.length,
itemBuilder: (context, index) {
final todo = todos[index];
return Dismissible(
key: Key('$todo$index'),
onDismissed: (direction) => todos.removeAt(index),
background: Container(color: Colors.red),
child: ListTile(title: Text(todo)),
);
},
),
),
],
),
floatingActionButton: FloatingActionButton(
onPressed: () {
setState(() {
todos.add(controller.text);
controller.clear();
});
},
child: const Icon(Icons.add),
),
),
);
}
}
// #enddocregion TodoList
| website/examples/cookbook/testing/widget/tap_drag/test/main_test.dart/0 | {
"file_path": "website/examples/cookbook/testing/widget/tap_drag/test/main_test.dart",
"repo_id": "website",
"token_count": 1090
} | 1,240 |
import 'package:json_annotation/json_annotation.dart';
import 'address.dart';
part 'user.g.dart';
@JsonSerializable(explicitToJson: true)
class User {
User(this.name, this.address);
String name;
Address address;
factory User.fromJson(Map<String, dynamic> json) => _$UserFromJson(json);
Map<String, dynamic> toJson() => _$UserToJson(this);
}
| website/examples/development/data-and-backend/json/lib/nested/user.dart/0 | {
"file_path": "website/examples/development/data-and-backend/json/lib/nested/user.dart",
"repo_id": "website",
"token_count": 131
} | 1,241 |
include: package:flutter_lints/flutter.yaml
analyzer:
language:
strict-casts: true
# strict-inference: true
# strict-raw-types: true
linter:
rules:
- always_declare_return_types
- avoid_types_on_closure_parameters
- avoid_void_async
- cancel_subscriptions
- comment_references
- close_sinks
- directives_ordering
- invalid_case_patterns
- library_annotations
- matching_super_parameters
- no_self_assignments
- no_wildcard_variable_uses
- one_member_abstracts
- package_api_docs
- prefer_relative_imports
- prefer_single_quotes
- only_throw_errors
- sort_unnamed_constructors_first
- test_types_in_equals
- throw_in_finally
- unawaited_futures
- unnecessary_breaks
- unnecessary_library_directive
- unnecessary_statements
| website/examples/example_utils/lib/analysis.yaml/0 | {
"file_path": "website/examples/example_utils/lib/analysis.yaml",
"repo_id": "website",
"token_count": 328
} | 1,242 |
import 'package:flutter/material.dart';
// #docregion CustomButton
class CustomButton extends StatelessWidget {
final String label;
const CustomButton(this.label, {super.key});
@override
Widget build(BuildContext context) {
return ElevatedButton(
onPressed: () {},
child: Text(label),
);
}
}
// #enddocregion CustomButton
class MyWidget extends StatelessWidget {
const MyWidget({super.key});
// #docregion UseCustomButton
@override
Widget build(BuildContext context) {
return const Center(
child: CustomButton('Hello'),
);
}
// #enddocregion UseCustomButton
}
| website/examples/get-started/flutter-for/android_devs/lib/custom.dart/0 | {
"file_path": "website/examples/get-started/flutter-for/android_devs/lib/custom.dart",
"repo_id": "website",
"token_count": 205
} | 1,243 |
import 'package:flutter/cupertino.dart';
void main() {
runApp(
const App(),
);
}
class App extends StatelessWidget {
const App({
super.key,
});
@override
Widget build(BuildContext context) {
return const
// #docregion Theme
CupertinoApp(
theme: CupertinoThemeData(
brightness: Brightness.dark,
),
home: HomePage(),
);
// #enddocregion Theme
}
}
class HomePage extends StatelessWidget {
const HomePage({super.key});
@override
Widget build(BuildContext context) {
return const CupertinoPageScaffold(
navigationBar: CupertinoNavigationBar(
middle: Text(
'Cupertino',
),
),
child: Center(
child:
// #docregion StylingTextExample
Text(
'Hello, world!',
style: TextStyle(
fontSize: 30,
fontWeight: FontWeight.bold,
color: CupertinoColors.systemYellow,
),
),
// #enddocregion StylingTextExample
),
);
}
}
| website/examples/get-started/flutter-for/ios_devs/lib/cupertino_themes.dart/0 | {
"file_path": "website/examples/get-started/flutter-for/ios_devs/lib/cupertino_themes.dart",
"repo_id": "website",
"token_count": 486
} | 1,244 |
import 'package:flutter/material.dart';
// #docregion StatefulWidget
class SampleApp extends StatelessWidget {
// This widget is the root of your application.
const SampleApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: 'Sample App',
home: SampleAppPage(),
);
}
}
class SampleAppPage extends StatefulWidget {
const SampleAppPage({super.key});
@override
State<SampleAppPage> createState() => _SampleAppPageState();
}
class _SampleAppPageState extends State<SampleAppPage> {
// Default placeholder text
String textToShow = 'I Like Flutter';
void _updateText() {
setState(() {
// Update the text
textToShow = 'Flutter is Awesome!';
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Sample App')),
body: Center(child: Text(textToShow)),
floatingActionButton: FloatingActionButton(
onPressed: _updateText,
tooltip: 'Update Text',
child: const Icon(Icons.update),
),
);
}
}
// #enddocregion StatefulWidget
class MyWidget extends StatelessWidget {
const MyWidget({super.key});
@override
Widget build(BuildContext context) {
// #docregion TextWidget
return const Text(
'I like Flutter!',
style: TextStyle(fontWeight: FontWeight.bold),
);
// #enddocregion TextWidget
}
}
| website/examples/get-started/flutter-for/ios_devs/lib/text_widget.dart/0 | {
"file_path": "website/examples/get-started/flutter-for/ios_devs/lib/text_widget.dart",
"repo_id": "website",
"token_count": 506
} | 1,245 |
import 'dart:async';
import 'package:flutter/material.dart';
// #docregion StatefulWidget
class MyStatefulWidget extends StatefulWidget {
const MyStatefulWidget({
super.key,
required this.title,
});
final String title;
@override
State<MyStatefulWidget> createState() => _MyStatefulWidgetState();
}
// #enddocregion StatefulWidget
// #docregion StatefulWidgetState
class _MyStatefulWidgetState extends State<MyStatefulWidget> {
bool showText = true;
bool toggleState = true;
Timer? t2;
void toggleBlinkState() {
setState(() {
toggleState = !toggleState;
});
if (!toggleState) {
t2 = Timer.periodic(const Duration(milliseconds: 1000), (t) {
toggleShowText();
});
} else {
t2?.cancel();
}
}
void toggleShowText() {
setState(() {
showText = !showText;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Column(
children: <Widget>[
if (showText)
const Text(
'This execution will be done before you can blink.',
),
Padding(
padding: const EdgeInsets.only(top: 70),
child: ElevatedButton(
onPressed: toggleBlinkState,
child: toggleState
? const Text('Blink')
: const Text('Stop Blinking'),
),
),
],
),
),
);
}
}
// #enddocregion StatefulWidgetState
| website/examples/get-started/flutter-for/react_native_devs/lib/stateful.dart/0 | {
"file_path": "website/examples/get-started/flutter-for/react_native_devs/lib/stateful.dart",
"repo_id": "website",
"token_count": 698
} | 1,246 |
import 'package:flutter/material.dart';
class MyForm extends StatefulWidget {
const MyForm({super.key});
@override
State<MyForm> createState() => _MyFormState();
}
class _MyFormState extends State<MyForm> {
/// Create a text controller and use it to retrieve the current value
/// of the TextField.
final TextEditingController myController = TextEditingController();
@override
void dispose() {
// Clean up the controller when disposing of the widget.
myController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Retrieve Text Input')),
body: Padding(
padding: const EdgeInsets.all(16),
child: TextField(controller: myController),
),
floatingActionButton: FloatingActionButton(
// When the user presses the button, show an alert dialog with the
// text that the user has typed into our text field.
onPressed: () {
showDialog(
context: context,
builder: (context) {
return AlertDialog(
// Retrieve the text that the user has entered using the
// TextEditingController.
content: Text(myController.text),
);
},
);
},
tooltip: 'Show me the value!',
child: const Icon(Icons.text_fields),
),
);
}
}
| website/examples/get-started/flutter-for/xamarin_devs/lib/form.dart/0 | {
"file_path": "website/examples/get-started/flutter-for/xamarin_devs/lib/form.dart",
"repo_id": "website",
"token_count": 572
} | 1,247 |
import 'package:flutter/material.dart';
void main() {
runApp(const SampleApp());
}
class SampleApp extends StatelessWidget {
/// This widget is the root of your application.
const SampleApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: 'Sample App',
home: SampleAppPage(),
);
}
}
class SampleAppPage extends StatefulWidget {
const SampleAppPage({super.key});
@override
State<SampleAppPage> createState() => _SampleAppPageState();
}
class _SampleAppPageState extends State<SampleAppPage> {
String? _errorText;
String? _getErrorText() {
return _errorText;
}
bool isEmail(String em) {
const String emailRegexp =
r'^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|'
r'(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|'
r'(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$';
final RegExp regExp = RegExp(emailRegexp);
return regExp.hasMatch(em);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Sample App')),
body: Center(
child: TextField(
onSubmitted: (text) {
setState(() {
if (!isEmail(text)) {
_errorText = 'Error: This is not an email';
} else {
_errorText = null;
}
});
},
decoration: InputDecoration(
hintText: 'This is a hint',
errorText: _getErrorText(),
),
),
),
);
}
}
| website/examples/get-started/flutter-for/xamarin_devs/lib/validation.dart/0 | {
"file_path": "website/examples/get-started/flutter-for/xamarin_devs/lib/validation.dart",
"repo_id": "website",
"token_count": 747
} | 1,248 |
{
"description": "List of plants by common name",
"source": "https://en.wikipedia.org/wiki/List_of_plants_by_common_name",
"plants": [
{
"name": "Alder",
"species": "Alnus"
},
{
"name": "Black alder",
"species": "Alnus glutinosa, Ilex verticillata"
},
{
"name": "Common alder",
"species": "Alnus glutinosa"
},
{
"name": "False alder",
"species": "Ilex verticillata"
},
{
"name": "Gray alder",
"species": "Alnus incana"
},
{
"name": "Speckled alder",
"species": "Alnus incana"
},
{
"name": "Striped alder",
"species": "Ilex verticillata"
},
{
"name": "White alder",
"species": "Alnus incana, Ilex verticillata"
},
{
"name": "Almond",
"species": "Prunus amygdalus"
},
{
"name": "Tall ambrosia",
"species": "Ambrosia trifida"
},
{
"name": "Amy root",
"species": "Apocynum cannabinum"
},
{
"name": "Apple",
"species": "Malus domestica"
},
{
"name": "apple",
"species": "Maclura pomifera"
},
{
"name": "Apple of Sodom",
"species": "Solanum carolinense"
},
{
"name": "Apricot",
"species": "Prunus armeniaca"
},
{
"name": "Arfaj",
"species": "Rhanterium epapposum"
},
{
"name": "Arizona sycamore",
"species": "Platanus wrighitii"
},
{
"name": "Arrowwood",
"species": "Cornus florida"
},
{
"name": "Indian arrowwood",
"species": "Cornus florida"
},
{
"name": "Ash",
"species": "Fraxinus spp."
},
{
"name": "Black ash",
"species": "Acer negundo, Fraxinus nigra"
},
{
"name": "Blue ash",
"species": "Fraxinus pennsylvanica"
},
{
"name": "Cane ash",
"species": "Fraxinus americana"
},
{
"name": "Green ash",
"species": "Fraxinus pennsylvanica"
},
{
"name": "Maple ash",
"species": "Acer negundo"
},
{
"name": "Red ash",
"species": "Fraxinus pennsylvanica"
},
{
"name": "River ash",
"species": "Fraxinus pennsylvanica"
},
{
"name": "Swamp ash",
"species": "Fraxinus pennsylvanica"
},
{
"name": "White ash",
"species": "Fraxinus americana"
},
{
"name": "Water ash",
"species": "Acer negundo, Fraxinus pennsylvanica"
},
{
"name": "Azolla",
"species": "Azolla"
},
{
"name": "Carolina azolla",
"species": "Azolla caroliniana"
},
{
"name": "Bamboo",
"species": "Bambuseae"
},
{
"name": "Banana",
"species": "mainly Musa Γ paradisica, but also other Musa species and hybrids"
},
{
"name": "Baobab",
"species": "Adansonia"
},
{
"name": "Bay",
"species": "Laurus spp. or Umbellularia spp."
},
{
"name": "Bay laurel",
"species": "Laurus nobilis (culinary)"
},
{
"name": "California bay",
"species": "Umbellularia californica"
},
{
"name": "Bean",
"species": "Fabaceae, specifically Phaseolus spp."
},
{
"name": "Bearberry",
"species": "Ilex decidua"
},
{
"name": "Bear corn",
"species": "Veratrum viride"
},
{
"name": "Beech",
"species": "Fagus"
},
{
"name": "Blue bindweed",
"species": "Solanum dulcamara"
},
{
"name": "Bird's nest",
"species": "Daucus carota"
},
{
"name": "Bird's nest plant",
"species": "Daucus carota"
},
{
"name": "Birch",
"species": "Betula spp."
},
{
"name": "Black birch",
"species": "Betula lenta, Betula nigra"
},
{
"name": "Bolean birch",
"species": "Betula papyrifera"
},
{
"name": "Canoe birch",
"species": "Betula papyrifera"
},
{
"name": "Cherry birch",
"species": "Betula lenta"
},
{
"name": "European weeping birch",
"species": "Betula pendula"
},
{
"name": "European white birch",
"species": "Betula pendula"
},
{
"name": "Gray birch",
"species": "Betula alleghaniensis"
},
{
"name": "Mahogany birch",
"species": "Betula lenta"
},
{
"name": "Paper birch",
"species": "Betula papyrifera"
},
{
"name": "Red birch",
"species": "Betula nigra"
},
{
"name": "River birch",
"species": "Betula nigra, Betula lenta"
},
{
"name": "Silver birch",
"species": "Betula papyrifera"
},
{
"name": "Spice birch",
"species": "Betula lenta"
},
{
"name": "Sweet birch",
"species": "Betula lenta"
},
{
"name": "Water birch",
"species": "Betula nigra"
},
{
"name": "Weeping birch",
"species": "Betula pendula"
},
{
"name": "White birch",
"species": "Betula papyrifera, Betula pendula"
},
{
"name": "Yellow birch",
"species": "Betula alleghaniensis"
},
{
"name": "Bittercress",
"species": "Barbarea vulgaris, Cardamine bulbosa, Cardamine hirsuta"
},
{
"name": "Hairy bittercress",
"species": "Cardamine hirsuta"
},
{
"name": "Bittersweet",
"species": "Solanum dulcamara"
},
{
"name": "Trailing bittersweet",
"species": "Solanum dulcamara"
},
{
"name": "Bitterweed",
"species": "Any plant in the Ambrosia genus, specially Ambrosia artemisiifolia, Artemisia trifida, Helenium amarum"
},
{
"name": "Blackberry",
"species": "Rubus spp., Rubus pensilvanicus, Rubus occidentalis"
},
{
"name": "Hispid swamp blackberry",
"species": "Rubus hispidus"
},
{
"name": "Pennsylvania blackberry",
"species": "Rubus pensilvanicus"
},
{
"name": "Running swamp blackberry",
"species": "Rubus hispidus"
},
{
"name": "Black cap",
"species": "Rubus occidentalis"
},
{
"name": "Black-eyed Susan",
"species": "Rudbeckia hirta, Rudbeckia fulgida"
},
{
"name": "Blackhaw",
"species": "Viburnum prunifolium"
},
{
"name": "Blackiehead",
"species": "Rudbeckia hirta"
},
{
"name": "Black-weed",
"species": "Ambrosia artemisiifolia"
},
{
"name": "Blueberry",
"species": "Vaccinium (Cyanococcus) spp."
},
{
"name": "Blue-of-the-heavens",
"species": "Allium caeruleum"
},
{
"name": "Bow-wood",
"species": "Maclura pomifera"
},
{
"name": "Box",
"species": "Buxus"
},
{
"name": "False box",
"species": "Cornus florida"
},
{
"name": "Boxelder",
"species": "Acer negundo"
},
{
"name": "Boxwood",
"species": "Buxus, Cornus florida"
},
{
"name": "False boxwood",
"species": "Cornus florida"
},
{
"name": "Sand brier",
"species": "Solanum carolinense"
},
{
"name": "Brittlebush",
"species": "Encelia farinosa"
},
{
"name": "Broadleaf",
"species": "Plantago major"
},
{
"name": "Brown Betty",
"species": "Rudbeckia hirta"
},
{
"name": "Brown-eyed Susan",
"species": "Rudbeckia hirta, Rudbeckia triloba"
},
{
"name": "Buckeye (California buckeye)",
"species": "Aesculus californica"
},
{
"name": "buckeye",
"species": "Aesculus spp."
},
{
"name": "Buffalo weed",
"species": "Ambrosia trifida"
},
{
"name": "Butterfly flower",
"species": "Asclepias syriaca"
},
{
"name": "Butterfly weed",
"species": "Asclepias tuberosa"
},
{
"name": "Cabbage",
"species": "Brassica oleracea"
},
{
"name": "Clumpfoot cabbage",
"species": "Symplocarpus foetidus"
},
{
"name": "Meadow cabbage",
"species": "Symplocarpus foetidus"
},
{
"name": "Skunk cabbage",
"species": "Symplocarpus foetidus, Lysichiton spp."
},
{
"name": "Swamp cabbage",
"species": "Symplocarpus foetidus"
},
{
"name": "California bay",
"species": "Umbellularia californica"
},
{
"name": "California buckeye",
"species": "Aesculus californica"
},
{
"name": "California sycamore",
"species": "Platanus racemosa"
},
{
"name": "California walnut",
"species": "Juglans californica"
},
{
"name": "Canada root",
"species": "Asclepias tuberosa"
},
{
"name": "Cancer jalap",
"species": "Phytolacca americana"
},
{
"name": "Carrot",
"species": "Daucus carota"
},
{
"name": "Wild carrot",
"species": "Daucus carota"
},
{
"name": "Carrot weed",
"species": "Ambrosia artemisiifolia"
},
{
"name": "Cart track plant",
"species": "Plantago major"
},
{
"name": "Catalina ironwood",
"species": "Lyonothamnus floribundus ssp. floribundus"
},
{
"name": "Cherry",
"species": "Prunus spp."
},
{
"name": "Black cherry",
"species": "Prunus serotina"
},
{
"name": "Cabinet cherry",
"species": "Prunus serotina"
},
{
"name": "Rum cherry",
"species": "Prunus serotina"
},
{
"name": "Whiskey cherry",
"species": "Prunus serotina"
},
{
"name": "Wild cherry",
"species": "Prunus avium, Prunus serotina"
},
{
"name": "Wild black cherry",
"species": "Prunus serotina"
},
{
"name": "Chestnut",
"species": "Castanea spp."
},
{
"name": "Chigger flower",
"species": "Asclepias tuberosa"
},
{
"name": "Chrysanthemum",
"species": "Dendranthema grandiflora, Chrysanthemum morifolium"
},
{
"name": "(True) cinnamon",
"species": "Cinnamomum verum"
},
{
"name": "Clove",
"species": "Syzygium aromaticum"
},
{
"name": "Clover",
"species": "Trifolium spp."
},
{
"name": "Coakum",
"species": "Phytolacca americana"
},
{
"name": "Coconut",
"species": "Cocos nucifera"
},
{
"name": "Coffee plant",
"species": "Coffea spp."
},
{
"name": "Colic weed",
"species": "Corydalis flavula"
},
{
"name": "Collard",
"species": "Symplocarpus foetidus"
},
{
"name": "Hare's colwort",
"species": "Sonchus oleraceus"
},
{
"name": "Brilliant coneflower",
"species": "Rudbeckia fulgida"
},
{
"name": "Cutleaf coneflower",
"species": "Rudbeckia laciniata"
},
{
"name": "Eastern coneflower",
"species": "Rudbeckia fulgida"
},
{
"name": "Green-headed Coneflower",
"species": "Rudbeckia laciniata"
},
{
"name": "Orange coneflower",
"species": "Rudbeckia fulgida"
},
{
"name": "Tall coneflower",
"species": "Rudbeckia laciniata"
},
{
"name": "Thin-leaved Coneflower",
"species": "Rudbeckia triloba"
},
{
"name": "Three-leaved Coneflower",
"species": "Rudbeckia triloba"
},
{
"name": "Blueberry cornel",
"species": "Cornus amomum"
},
{
"name": "Silky cornel",
"species": "Cornus amomum"
},
{
"name": "White cornel",
"species": "Cornus florida"
},
{
"name": "Cornelian tree",
"species": "Cornus florida"
},
{
"name": "Corydalis",
"species": "Corydalis spp."
},
{
"name": "Fern-leaf Corydalis",
"species": "Corydalis chelidoniifolia"
},
{
"name": "Golden corydalis",
"species": "Corydalis aurea"
},
{
"name": "Pale corydalis",
"species": "Corydalis flavula, Corydalis sempervirens"
},
{
"name": "Pink corydalis",
"species": "Corydalis sempervirens"
},
{
"name": "Yellow corydalis",
"species": "Corydalis lutea, Corydalis flavula"
},
{
"name": "Cotton plant",
"species": "Gossypium"
},
{
"name": "Creeping yellowcress",
"species": "Rorippa sylvestris"
},
{
"name": "Cress",
"species": "(several genera)"
},
{
"name": "American cress",
"species": "Barbarea verna"
},
{
"name": "Bank cress",
"species": "Barbarea verna"
},
{
"name": "Belle Isle cress",
"species": "Barbarea verna"
},
{
"name": "Bermuda cress",
"species": "Barbarea verna"
},
{
"name": "Bulbous cress",
"species": "Cardamine bulbosa"
},
{
"name": "Lamb's cress",
"species": "Cardamine hirsuta"
},
{
"name": "Land cress",
"species": "Barbarea verna, Cardamine hirsuta"
},
{
"name": "Scurvy cress",
"species": "Barbarea verna"
},
{
"name": "Spring cress",
"species": "Cardamine bulbosa"
},
{
"name": "Upland cress",
"species": "Barbarea verna"
},
{
"name": "Crowfoot",
"species": "Cardamine concatenata"
},
{
"name": "Crow's nest",
"species": "Daucus carota"
},
{
"name": "Crow's toes",
"species": "Cardamine concatenata"
},
{
"name": "Cucumber",
"species": "Cucumis sativus"
},
{
"name": "Brown daisy",
"species": "Rudbeckia hirta"
},
{
"name": "Common daisy, daisy",
"species": "Bellis perennis"
},
{
"name": "Gloriosa daisy",
"species": "Rudbeckia hirta"
},
{
"name": "Poorland daisy",
"species": "Rudbeckia hirta"
},
{
"name": "Yellow daisy",
"species": "Rudbeckia hirta"
},
{
"name": "Yellow ox-eye daisy",
"species": "Rudbeckia hirta"
},
{
"name": "Deadnettle",
"species": "Lamium spp."
},
{
"name": "Henbit deadnettle",
"species": "Lamium amplexicaule"
},
{
"name": "Spotted deadnettle",
"species": "Lamium maculatum"
},
{
"name": "Devil's bite",
"species": "Veratrum viride"
},
{
"name": "Devil's darning needle",
"species": "Clematis virginiana"
},
{
"name": "Devil's nose",
"species": "Clematis virginiana"
},
{
"name": "Devil's plague",
"species": "Daucus carota"
},
{
"name": "Bristly dewberry",
"species": "Rubus hispidus"
},
{
"name": "Swamp dewberry",
"species": "Rubus hispidus"
},
{
"name": "Dindle",
"species": "Sonchus arvensis"
},
{
"name": "Dogwood",
"species": "Cornus spp."
},
{
"name": "American dogwood",
"species": "Cornus florida"
},
{
"name": "Florida dogwood",
"species": "Cornus florida"
},
{
"name": "Flowering dogwood",
"species": "Cornus florida"
},
{
"name": "Japanese flowering dogwood",
"species": "Cornus kousa"
},
{
"name": "Kousa dogwood",
"species": "Cornus kousa"
},
{
"name": "Drumstick",
"species": "Moringa oleifera"
},
{
"name": "Pacific dogwood",
"species": "Cornus nuttallii"
},
{
"name": "Silky dogwood",
"species": "Cornus amomum"
},
{
"name": "Swamp dogwood",
"species": "Cornus amomum"
},
{
"name": "Duck retten",
"species": "Veratrum viride"
},
{
"name": "Duscle",
"species": "Solanum nigrum"
},
{
"name": "Dye-leaves",
"species": "Ilex glabra"
},
{
"name": "Earth gall",
"species": "Veratrum viride"
},
{
"name": "English bull's eye",
"species": "Rudbeckia hirta"
},
{
"name": "Eucalyptus",
"species": "Eucalyptus spp."
},
{
"name": "Extinguisher moss",
"species": "Encalypta"
},
{
"name": "Eytelia",
"species": "Amphipappus"
},
{
"name": "Fair-maid-of-France",
"species": "Achillea ptarmica"
},
{
"name": "Fellenwort",
"species": "Solanum dulcamara"
},
{
"name": "Felonwood",
"species": "Solanum dulcamara"
},
{
"name": "Felonwort",
"species": "Solanum dulcamara"
},
{
"name": "Fennel",
"species": "Foeniculum vulgare"
},
{
"name": "Boston fern or sword fern",
"species": "Nephrolepis exaltata"
},
{
"name": "Christmas fern",
"species": "Polystichum acrostichoides"
},
{
"name": "Coast polypody",
"species": "Polypodium scouleri"
},
{
"name": "Kimberly queen fern",
"species": "Nephrolepis obliterata"
},
{
"name": "Korean rock fern",
"species": "Polystichum tsus-simense"
},
{
"name": "Mosquito fern",
"species": "Azolla caroliniana"
},
{
"name": "Sword ferns",
"species": "Polystichum spp."
},
{
"name": "Water fern",
"species": "Azolla caroliniana"
},
{
"name": "Western sword fern",
"species": "Polystichum munitum"
},
{
"name": "Feverbush",
"species": "Ilex verticillata"
},
{
"name": "Feverfew",
"species": "Tanacetum parthenium"
},
{
"name": "Fig",
"species": "Ficus spp."
},
{
"name": "Common fig",
"species": "Ficus carica"
},
{
"name": "European flax",
"species": "Linum usitatissimum"
},
{
"name": "New Zealand flax",
"species": "Phormium tenax, Phormium colensoi"
},
{
"name": "Fluxroot",
"species": "Asclepias tuberosa"
},
{
"name": "Yellow fumewort",
"species": "Corydalis flavula"
},
{
"name": "Gallberry",
"species": "Ilex glabra"
},
{
"name": "Garget",
"species": "Phytolacca americana"
},
{
"name": "Golden garlic",
"species": "Allium moly"
},
{
"name": "Wild garlic",
"species": "Allium canadense"
},
{
"name": "Garlic mustard",
"species": "Alliaria petiolata"
},
{
"name": "Garlic root",
"species": "Alliaria petiolata"
},
{
"name": "Dame's gilliflower",
"species": "Hesperis matronalis"
},
{
"name": "Night scented gilliflower",
"species": "Hesperis matronalis"
},
{
"name": "Queen's gilliflower",
"species": "Hesperis matronalis"
},
{
"name": "Rogue's gilliflower",
"species": "Hesperis matronalis"
},
{
"name": "Winter gilliflower",
"species": "Hesperis matronalis"
},
{
"name": "Golden buttons",
"species": "Tanacetum vulgare"
},
{
"name": "Goldenglow",
"species": "Rudbeckia laciniata"
},
{
"name": "Golden Jerusalem",
"species": "Rudbeckia hirta"
},
{
"name": "Gordaldo",
"species": "Achillea millefolium"
},
{
"name": "Goose tongue",
"species": "Achillea ptarmica"
},
{
"name": "Grapefruit",
"species": "Citrus Γ paradisi"
},
{
"name": "Grapevine",
"species": "Vitis"
},
{
"name": "Groundberry",
"species": "Rubus hispidus"
},
{
"name": "Bristly groundberry",
"species": "Rubus hispidus"
},
{
"name": "Gutweed",
"species": "Sonchus arvensis"
},
{
"name": "Haldi",
"species": "Curcuma domestica"
},
{
"name": "Rock harlequin",
"species": "Corydalis sempervirens"
},
{
"name": "Yellow harlequin",
"species": "Corydalis flavula"
},
{
"name": "Hay fever weed",
"species": "Ambrosia artemisiifolia, Artemisia trifida"
},
{
"name": "Healing blade",
"species": "Plantago major"
},
{
"name": "Hedge plant",
"species": "Maclura pomifera"
},
{
"name": "Hellebore",
"species": "Helleborus"
},
{
"name": "American white hellebore",
"species": "Veratrum viride"
},
{
"name": "Big hellebore",
"species": "Veratrum viride"
},
{
"name": "Black hellebore",
"species": "Veratrum nigrum"
},
{
"name": "European white hellebore",
"species": "Veratrum album"
},
{
"name": "False hellebore",
"species": "Veratrum album, Veratrum viride"
},
{
"name": "Swamp hellebore",
"species": "Veratrum viride"
},
{
"name": "White hellebore",
"species": "Veratrum album, Veratrum viride"
},
{
"name": "Hemp",
"species": "Cannabis spp., specifically Cannabis sativa"
},
{
"name": "Hemp dogbane",
"species": "Apocynum cannabinum"
},
{
"name": "Hen plant",
"species": "Plantago major"
},
{
"name": "Herb barbara",
"species": "Barbarea vulgaris"
},
{
"name": "Hogweed",
"species": "Ambrosia artemisiifolia"
},
{
"name": "Holly",
"species": "Ilex spp."
},
{
"name": "Deciduous holly",
"species": "Ilex decidua, Ilex verticillata"
},
{
"name": "European holly",
"species": "Ilex aquifolium"
},
{
"name": "Inkberry holly",
"species": "Ilex glabra"
},
{
"name": "Meadow holly",
"species": "Ilex decidua"
},
{
"name": "Swamp holly",
"species": "Ilex decidua"
},
{
"name": "Winterberry holly",
"species": "Ilex verticillata"
},
{
"name": "Horse cane",
"species": "Ambrosia trifida"
},
{
"name": "Hound's berry",
"species": "Solanum nigrum"
},
{
"name": "Huckleberry",
"species": "Vaccinium spp."
},
{
"name": "Evergreen huckleberry",
"species": "Vaccinium ovatum"
},
{
"name": "Trailing red huckleberry",
"species": "Vaccinium parvifolium"
},
{
"name": "Houseleek",
"species": "Sempervivum tectorum"
},
{
"name": "Indian hemp",
"species": "various genera"
},
{
"name": "Indian hemp",
"species": "Apocynum cannabinum, Cannabis indica"
},
{
"name": "White Indian hemp",
"species": "Asclepias incarnata"
},
{
"name": "Indian paintbrush",
"species": "Castilleja, Castilleja mutis, Asclepias tuberosa"
},
{
"name": "Indian posy",
"species": "Asclepias tuberosa"
},
{
"name": "Inkberry",
"species": "Ilex glabra, Phytolacca americana"
},
{
"name": "Isle of Man cabbage",
"species": "Coincya monensis"
},
{
"name": "Itchweed",
"species": "Veratrum viride"
},
{
"name": "Ivy",
"species": "Hedera spp."
},
{
"name": "Jack-by-the-hedge",
"species": "Alliaria petiolata"
},
{
"name": "Jack-in-the-bush",
"species": "Alliaria petiolata"
},
{
"name": "Juneberry",
"species": "Amelanchier canadensis"
},
{
"name": "Juniper",
"species": "Various species in the genus Juniperus"
},
{
"name": "Keek",
"species": "Rorippa sylvestris"
},
{
"name": "Kinnikinnik",
"species": "Cornus amomum"
},
{
"name": "Kousa",
"species": "Cornus kousa"
},
{
"name": "Kudzu",
"species": "Pueraria lobata"
},
{
"name": "Laceflower",
"species": "Daucus carota"
},
{
"name": "Lamb's foot",
"species": "Plantago major"
},
{
"name": "Lavender",
"species": "Lavandula"
},
{
"name": "Leek",
"species": "Allium"
},
{
"name": "Lemon",
"species": "Citrus Γ limon"
},
{
"name": "Lettuce",
"species": "Lactuca sativa"
},
{
"name": "Lily leek",
"species": "Allium moly"
},
{
"name": "Summer lilac",
"species": "Hesperis matronalis"
},
{
"name": "Love vine",
"species": "Clematis virginiana"
},
{
"name": "Maize",
"species": "Zea mays"
},
{
"name": "Mango",
"species": "Mangifera indica"
},
{
"name": "Maple",
"species": "Acer"
},
{
"name": "Ash-leaved maple",
"species": "Acer negundo"
},
{
"name": "Black maple",
"species": "Acer nigrum"
},
{
"name": "Creek maple",
"species": "Acer saccharinum"
},
{
"name": "Cutleaf maple",
"species": "Acer negundo"
},
{
"name": "Maple ash",
"species": "Acer negundo"
},
{
"name": "Moose maple",
"species": "Acer pensylvanicum"
},
{
"name": "Red river maple",
"species": "Acer negundo"
},
{
"name": "River maple",
"species": "Acer saccharinum"
},
{
"name": "Silver maple",
"species": "Acer saccharinum"
},
{
"name": "Silverleaf maple",
"species": "Acer saccharinum"
},
{
"name": "Soft maple",
"species": "Acer saccharinum"
},
{
"name": "Striped maple",
"species": "Acer pensylvanicum"
},
{
"name": "Sugar maple",
"species": "Acer saccharum (main use), Acer barbatum, Acer leucoderme,"
},
{
"name": "Swamp maple",
"species": "Acer saccharinum"
},
{
"name": "Water maple",
"species": "Acer saccharinum"
},
{
"name": "White maple",
"species": "Acer saccharinum"
},
{
"name": "Mesquite",
"species": "Prosopis"
},
{
"name": "Honey mesquite",
"species": "Prosopis glandulosa"
},
{
"name": "Screwbean mesquite",
"species": "Prosopis pubescens"
},
{
"name": "Milfoil",
"species": "Achillea millefolium"
},
{
"name": "Milkweed",
"species": "Asclepias, Sonchus oleraceus"
},
{
"name": "Blunt-leaved Milkweed",
"species": "Asclepias amplexicaulis"
},
{
"name": "Common milkweed",
"species": "Asclepias syriaca"
},
{
"name": "Horsetail milkweed",
"species": "Asclepias verticillata"
},
{
"name": "Orange milkweed",
"species": "Asclepias tuberosa"
},
{
"name": "Swamp milkweed",
"species": "Asclepias incarnata"
},
{
"name": "Rose milkweed",
"species": "Asclepias incarnata"
},
{
"name": "Whorled milkweed",
"species": "Asclepias verticillata"
},
{
"name": "Yellow milkweed",
"species": "Asclepias tuberosa"
},
{
"name": "Milky tassel",
"species": "Sonchus oleraceus"
},
{
"name": "Moosewood",
"species": "Acer pensylvanicum"
},
{
"name": "Petty morel",
"species": "Solanum nigrum"
},
{
"name": "Mosquito plant",
"species": "Azolla caroliniana"
},
{
"name": "Mother-of-the-evening",
"species": "Hesperis matronalis"
},
{
"name": "Mountain mahogany",
"species": "Betula lenta"
},
{
"name": "Mulberry",
"species": "Morus"
},
{
"name": "Red mulberry",
"species": "Morus rubra"
},
{
"name": "White mulberry",
"species": "Morus alba"
},
{
"name": "Flowering Dogwood",
"species": "Cornus florida"
},
{
"name": "Neem",
"species": "Azadirachta indica"
},
{
"name": "Bull nettle",
"species": "Solanum carolinense"
},
{
"name": "Carolina horse nettle",
"species": "Solanum carolinense"
},
{
"name": "Horse nettle",
"species": "Solanum carolinense"
},
{
"name": "American nightshade",
"species": "Phytolacca americana, Solanum americanum"
},
{
"name": "Bitter nightshade",
"species": "Solanum dulcamara"
},
{
"name": "Black nightshade",
"species": "Solanum nigrum, Solanum americanum"
},
{
"name": "Climbing nightshade",
"species": "Solanum dulcamara"
},
{
"name": "Deadly nightshade",
"species": "Solanum nigrum"
},
{
"name": "Garden nightshade",
"species": "Solanum nigrum"
},
{
"name": "Trailing nightshade",
"species": "Solanum dulcamara"
},
{
"name": "Trailing violet nightshade",
"species": "Solanum dulcamara"
},
{
"name": "Woody nightshade",
"species": "Solanum dulcamara"
},
{
"name": "Nosebleed",
"species": "Achillea millefolium"
},
{
"name": "Blue oak",
"species": "Quercus douglasii"
},
{
"name": "Bur oak",
"species": "Quercus macrocarpa"
},
{
"name": "Champion oak",
"species": "Quercus rubra"
},
{
"name": "Coast live oak",
"species": "Quercus agrifolia"
},
{
"name": "Cork oak",
"species": "Quercus suber"
},
{
"name": "Dyer's oak",
"species": "Quercus velutina"
},
{
"name": "Eastern black oak",
"species": "Quercus velutina'"
},
{
"name": "English oak",
"species": "Quercus robur"
},
{
"name": "Island oak",
"species": "Quercus. tomentella"
},
{
"name": "Mirbeck's oak",
"species": "Quercus canariensis"
},
{
"name": "Mossycup white oak",
"species": "Quercus macrocarpa"
},
{
"name": "Northern red oak",
"species": "Quercus rubra"
},
{
"name": "Pedunculate oak",
"species": "Quercus robur"
},
{
"name": "Pin oak",
"species": "Quercus palustris"
},
{
"name": "Red oak",
"species": "Quercus rubra, Quercus coccinea"
},
{
"name": "Scarlet oak",
"species": "Quercus coccinea"
},
{
"name": "Scrub oak",
"species": "Quercus macrocarpa"
},
{
"name": "Sessile oak",
"species": "Quercus petraea"
},
{
"name": "Spanish oak",
"species": "Quercus coccinea, Quercus rubra"
},
{
"name": "Spotted oak",
"species": "Quercus velutina"
},
{
"name": "Swamp oak",
"species": "Quercus palustris, Quercus bicolor"
},
{
"name": "Swamp Spanish oak",
"species": "Quercus palustris"
},
{
"name": "Swamp white oak",
"species": "Quercus bicolor"
},
{
"name": "Valley oak",
"species": "Quercus lobata"
},
{
"name": "White oak",
"species": "Quercus alba"
},
{
"name": "Yellowbark oak",
"species": "Quercus velutina"
},
{
"name": "Olive",
"species": "Olea europaea"
},
{
"name": "Onion",
"species": "Allium"
},
{
"name": "Common onion",
"species": "Allium cepa"
},
{
"name": "Giant onion",
"species": "Allium giganteum"
},
{
"name": "Nodding onion",
"species": "Allium cernuum"
},
{
"name": "Tree onion",
"species": "Allium canadense"
},
{
"name": "Wild onion",
"species": "Allium canadense"
},
{
"name": "Osage orange",
"species": "Maclura pomifera"
},
{
"name": "sweet orange",
"species": "Citrus Γ sinensis"
},
{
"name": "Wild orange",
"species": "Maclura pomifera"
},
{
"name": "Orange-root",
"species": "Asclepias tuberosa"
},
{
"name": "Osage",
"species": "Maclura pomifera"
},
{
"name": "Red osier",
"species": "Cornus amomum"
},
{
"name": "Parsley",
"species": "Petroselinum crispum"
},
{
"name": "Parsnip",
"species": "Pastinaca sativa, Daucus carota"
},
{
"name": "Pea",
"species": "Pisum sativum"
},
{
"name": "Peach",
"species": "Prunus persica"
},
{
"name": "Peanut",
"species": "Arachis hypogaea"
},
{
"name": "Pear",
"species": "Pyrus"
},
{
"name": "Bastard pellitory",
"species": "Achillea ptarmica"
},
{
"name": "European pellitory",
"species": "Achillea ptarmica"
},
{
"name": "Wild pellitory",
"species": "Achillea ptarmica"
},
{
"name": "Penny hedge",
"species": "Alliaria petiolata"
},
{
"name": "Pepper root",
"species": "Cardamine concatenata"
},
{
"name": "Pigeon berry",
"species": "Phytolacca americana"
},
{
"name": "Pine",
"species": "Pinus"
},
{
"name": "Pineapple",
"species": "Ananas comosus"
},
{
"name": "Pistachio",
"species": "Pistacia vera"
},
{
"name": "Plane (European sycamore)",
"species": "Platanus acerifolia"
},
{
"name": "Broadleaf plantain",
"species": "Plantago major"
},
{
"name": "Common plantain",
"species": "Plantago major"
},
{
"name": "Dooryard plantain",
"species": "Plantago major"
},
{
"name": "Greater plantain",
"species": "Plantago major"
},
{
"name": "Roundleaf plantain",
"species": "Plantago major"
},
{
"name": "Wayside plantain",
"species": "Plantago major"
},
{
"name": "Pleurisy root",
"species": "Asclepias tuberosa"
},
{
"name": "Pocan bush",
"species": "Phytolacca americana"
},
{
"name": "Poison ivy",
"species": "Toxicodendron radicans"
},
{
"name": "Poisonberry",
"species": "Solanum dulcamara"
},
{
"name": "Poisonflower",
"species": "Solanum dulcamara"
},
{
"name": "Poke",
"species": "Phytolacca americana"
},
{
"name": "Indian poke",
"species": "Veratrum viride"
},
{
"name": "Pokeroot",
"species": "Phytolacca americana"
},
{
"name": "Pokeweed",
"species": "Phytolacca americana"
},
{
"name": "Polkweed",
"species": "Symplocarpus foetidus"
},
{
"name": "Polecat weed",
"species": "Symplocarpus foetidus"
},
{
"name": "Poor Annie",
"species": "Veratrum viride"
},
{
"name": "Poor man's mustard",
"species": "Alliaria petiolata"
},
{
"name": "Poplar",
"species": "Populus"
},
{
"name": "Poppy",
"species": "Papaveraceae"
},
{
"name": "Possumhaw",
"species": "Ilex decidua"
},
{
"name": "Potato",
"species": "Solanum tuberosum"
},
{
"name": "Pudina",
"species": "Mentha indica"
},
{
"name": "Queen Anne's lace",
"species": "Daucus carota, Anthriscus sylvestris"
},
{
"name": "Quercitron",
"species": "Quercus velutina"
},
{
"name": "Radical weed",
"species": "Solanum carolinense"
},
{
"name": "Ragweed",
"species": "Ambrosia"
},
{
"name": "Common ragweed",
"species": "Ambrosia artemisiifolia"
},
{
"name": "Giant ragweed",
"species": "Ambrosia trifida"
},
{
"name": "Great ragweed",
"species": "Ambrosia trifida"
},
{
"name": "Ragwort",
"species": "Senecio"
},
{
"name": "Common ragwort",
"species": "Senecio jacobaea"
},
{
"name": "Hoary ragwort",
"species": "Senecio erucifolius"
},
{
"name": "Marsh ragwort",
"species": "Senecio aquaticus"
},
{
"name": "Oxford ragwort",
"species": "Senecio squalidus"
},
{
"name": "Silver ragwort",
"species": "Senecio cineraria"
},
{
"name": "Rantipole",
"species": "Daucus carota"
},
{
"name": "Rapeseed",
"species": "Brassica napus"
},
{
"name": "Raspberry",
"species": "Rubus (Idaeobatus) spp."
},
{
"name": "Black raspberry",
"species": "Rubus occidentalis"
},
{
"name": "Purple raspberry",
"species": "Rubus occidentalis"
},
{
"name": "Redbrush",
"species": "Cornus amomum"
},
{
"name": "Redbud",
"species": "Cercis spp."
},
{
"name": "Eastern redbud",
"species": "Cercis canadensis"
},
{
"name": "Western redbud",
"species": "Cercis occidentalis"
},
{
"name": "Judas-tree",
"species": "Cercis siliquastrum"
},
{
"name": "Red ink plant",
"species": "Phytolacca americana"
},
{
"name": "Redweed",
"species": "Phytolacca americana"
},
{
"name": "Rheumatism root",
"species": "Apocynum cannabinum"
},
{
"name": "Rhubarb",
"species": "Rheum rhabarbarum"
},
{
"name": "Ribwort",
"species": "Plantago major"
},
{
"name": "Asian rice",
"species": "Oryza sativa"
},
{
"name": "African rice",
"species": "Oryza glaberrima"
},
{
"name": "Roadweed",
"species": "Plantago major"
},
{
"name": "Rocket",
"species": "(several genera)"
},
{
"name": "Dame's rocket",
"species": "Hesperis matronalis"
},
{
"name": "Sweet rocket",
"species": "Hesperis matronalis"
},
{
"name": "Winter rocket",
"species": "Barbarea vulgaris"
},
{
"name": "Yellow rocket",
"species": "Barbarea vulgaris"
},
{
"name": "Rocketcress",
"species": "Barbarea vulgaris"
},
{
"name": "Rose",
"species": "Rosa"
},
{
"name": "Baby rose",
"species": "Rosa multiflora"
},
{
"name": "Dwarf wild rose",
"species": "Rosa virginiana"
},
{
"name": "Low rose",
"species": "Rosa virginiana"
},
{
"name": "Multiflora rose",
"species": "Rosa multiflora"
},
{
"name": "Prairie rose",
"species": "Rosa virginiana"
},
{
"name": "Rambler rose",
"species": "Rosa multiflora"
},
{
"name": "Wild rose",
"species": "Rosa virginiana"
},
{
"name": "Rosemary",
"species": "Rosmarinus officinalis"
},
{
"name": "Rye",
"species": "Secale cereale"
},
{
"name": "Saffron crocus",
"species": "Crocus sativus"
},
{
"name": "Sanguinary",
"species": "Achillea millefolium"
},
{
"name": "Sauce-alone",
"species": "Alliaria petiolata"
},
{
"name": "Scarlet berry",
"species": "Solanum dulcamara"
},
{
"name": "Scoke",
"species": "Phytolacca americana"
},
{
"name": "Scotch cap",
"species": "Rubus occidentalis"
},
{
"name": "Scrambled eggs",
"species": "Corydalis aurea"
},
{
"name": "Scurvy grass",
"species": "Barbarea verna"
},
{
"name": "Serviceberry",
"species": "Amelanchier"
},
{
"name": "Common serviceberry",
"species": "Amelanchier arborea"
},
{
"name": "Downy serviceberry",
"species": "Amelanchier arborea"
},
{
"name": "Shadblow serviceberry",
"species": "Amelanchier canadensis"
},
{
"name": "Shadblow",
"species": "Amelanchier canadensis"
},
{
"name": "Shadbush",
"species": "Amelanchier canadensis"
},
{
"name": "Silkweed",
"species": "Asclepias syriaca"
},
{
"name": "Swamp silkweed",
"species": "Asclepias incarnata"
},
{
"name": "Virginia silkweed",
"species": "Asclepias syriaca"
},
{
"name": "Skunkweed",
"species": "Symplocarpus foetidus"
},
{
"name": "Snakeberry",
"species": "Solanum dulcamara"
},
{
"name": "Snowdrop",
"species": "Galanthus"
},
{
"name": "Sorrel",
"species": "Oxalis"
},
{
"name": "Redwood sorrel",
"species": "Oxalis oregana"
},
{
"name": "Corn speedwell",
"species": "Veronica arvensis"
},
{
"name": "Wall speedwell",
"species": "Veronica arvensis"
},
{
"name": "Spoolwood",
"species": "Betula papyrifera"
},
{
"name": "Squaw bush",
"species": "Cornus amomum"
},
{
"name": "Stammerwort",
"species": "Ambrosia artemisiifolia"
},
{
"name": "Star-of-Persia",
"species": "Allium cristophii"
},
{
"name": "Stickweed",
"species": "Ambrosia artemisiifolia"
},
{
"name": "Strawberry",
"species": "Fragaria Γ ananassa"
},
{
"name": "Strawberry tree",
"species": "Arbutus unedo"
},
{
"name": "Strawberry tree 'Marina'",
"species": "Madrone"
},
{
"name": "Sugarcane",
"species": "Saccharum"
},
{
"name": "Orange swallow-wort",
"species": "Asclepias tuberosa"
},
{
"name": "Silky swallow-wort",
"species": "Asclepias syriaca"
},
{
"name": "Sneezeweed",
"species": "Achillea ptarmica"
},
{
"name": "Sneezewort",
"species": "Achillea ptarmica"
},
{
"name": "Sunflower",
"species": "Helianthus annuus"
},
{
"name": "Sugarplum",
"species": "Amelanchier canadensis"
},
{
"name": "Soldier's woundwort",
"species": "Achillea millefolium"
},
{
"name": "Stag bush",
"species": "Viburnum prunifolium"
},
{
"name": "Orange swallow-wort",
"species": "Asclepias tuberosa"
},
{
"name": "Silky swallow-wort",
"species": "Asclepias syriaca"
},
{
"name": "Sweet potato",
"species": "Ipomoea batatas"
},
{
"name": "Sweet potato vine",
"species": "Ipomoea batatas"
},
{
"name": "Swinies",
"species": "Sonchus oleraceus"
},
{
"name": "Sycamore",
"species": "Platanus spp."
},
{
"name": "Sycamore (California)",
"species": "Platanus racemosa"
},
{
"name": "Sycamore (Arizona)",
"species": "Platanus wrighitii"
},
{
"name": "Sycamore (American)",
"species": "Platanus occidentalis"
},
{
"name": "Common tansy",
"species": "Tanacetum vulgare"
},
{
"name": "White tansy",
"species": "Achillea ptarmica"
},
{
"name": "Wild tansy",
"species": "Ambrosia artemisiifolia"
},
{
"name": "Tea",
"species": "Camellia sinensis"
},
{
"name": "Appalachian tea",
"species": "Ilex glabra"
},
{
"name": "Thimbleberry",
"species": "Rubus occidentalis"
},
{
"name": "Thimbleweed",
"species": "Rudbeckia laciniata"
},
{
"name": "Thousand-leaf",
"species": "Achillea millefolium"
},
{
"name": "Thousand-seal",
"species": "Achillea millefolium"
},
{
"name": "Tassel weed",
"species": "Ambrosia artemisiifolia"
},
{
"name": "Thistle",
"species": "(Several genera)"
},
{
"name": "Annual sow thistle",
"species": "Sonchus oleraceus"
},
{
"name": "California thistle",
"species": "Cirsium arvense"
},
{
"name": "Canada thistle",
"species": "Cirsium arvense"
},
{
"name": "Corn thistle",
"species": "Cirsium arvense"
},
{
"name": "Corn sow thistle",
"species": "Sonchus arvensis"
},
{
"name": "Creeping thistle",
"species": "Cirsium arvense"
},
{
"name": "Cursed thistle",
"species": "Cirsium arvense"
},
{
"name": "Field sow thistle",
"species": "Sonchus arvensis"
},
{
"name": "Green thistle",
"species": "Cirsium arvense"
},
{
"name": "Hard thistle",
"species": "Cirsium arvense"
},
{
"name": "Hare's thistle",
"species": "Sonchus oleraceus"
},
{
"name": "Milk thistle",
"species": "Sonchus oleraceus"
},
{
"name": "Nodding thistle",
"species": "Carduus nutans L."
},
{
"name": "Perennial thistle",
"species": "Cirsium arvense"
},
{
"name": "Prickly thistle",
"species": "Cirsium arvense"
},
{
"name": "Sharp-fringed sow Thistle",
"species": "Sonchus asper"
},
{
"name": "Small-flowered Thistle",
"species": "Cirsium arvense"
},
{
"name": "Spiny sow thistle",
"species": "Sonchus asper"
},
{
"name": "Spiny-leaved sow Thistle",
"species": "Sonchus asper"
},
{
"name": "Swine thistle",
"species": "Sonchus arvensis"
},
{
"name": "Tree sow thistle",
"species": "Sonchus arvensis"
},
{
"name": "Way thistle",
"species": "Cirsium arvense"
},
{
"name": "Thyme",
"species": "Thymus, specifically Thymus vulgaris"
},
{
"name": "Tickleweed",
"species": "Veratrum viride"
},
{
"name": "Tobacco plant",
"species": "Nicotiana"
},
{
"name": "Tomato",
"species": "Solanum lycopersicum"
},
{
"name": "Toothwort",
"species": "Cardamine concatenata"
},
{
"name": "Cutleaf toothwort",
"species": "Cardamine concatenata"
},
{
"name": "Purple-flowered Toothwort",
"species": "Cardamine concatenata"
},
{
"name": "Touch-me-not",
"species": "Impatiens capensis, Impatiens pallida, Mimosa pudica, Cardamine hirsuta"
},
{
"name": "Traveller's joy",
"species": "Clematis virginiana"
},
{
"name": "Tread-softly",
"species": "Solanum carolinense"
},
{
"name": "Tree tobacco",
"species": "Nicotiana glauca"
},
{
"name": "Trillium",
"species": "Trillium spp."
},
{
"name": "Western trillium",
"species": "Trillium ovatum"
},
{
"name": "Western wake robin",
"species": "Trillium ovatum"
},
{
"name": "White trillium",
"species": "Trillium grandiflorum"
},
{
"name": "Tuber-root",
"species": "Asclepias tuberosa"
},
{
"name": "Tulip",
"species": "Tulipa"
},
{
"name": "Tulsi",
"species": "Ocimum santalum"
},
{
"name": "Vanilla orchid",
"species": "Vanilla"
},
{
"name": "Viburnum",
"species": "Viburnum"
},
{
"name": "Blackhaw viburnum",
"species": "Viburnum prunifolium"
},
{
"name": "Leatherleaf viburnum",
"species": "Viburnum rhytidophyllum"
},
{
"name": "Violet",
"species": "(several genera)"
},
{
"name": "African violet",
"species": "Saintpaulia species"
},
{
"name": "Damask violet",
"species": "Hesperis matronalis"
},
{
"name": "Dame's violet",
"species": "Hesperis matronalis"
},
{
"name": "Dog's-tooth-violet or dogtooth violet",
"species": "Erythronium dens-canis"
},
{
"name": "Violet bloom",
"species": "Solanum dulcamara"
},
{
"name": "Virgin's bower",
"species": "Clematis virginiana"
},
{
"name": "Virginia virgin's bower",
"species": "Clematis virginiana"
},
{
"name": "Walnut (California walnut)",
"species": "Juglans californica"
},
{
"name": "Walnut",
"species": "Juglans sp."
},
{
"name": "Waybread",
"species": "Plantago major"
},
{
"name": "Western redbud",
"species": "Cercis occidentalis"
},
{
"name": "Wheat",
"species": "Triticum spp."
},
{
"name": "White man's foot",
"species": "Plantago major"
},
{
"name": "White-root",
"species": "Asclepias tuberosa"
},
{
"name": "Wild cotton",
"species": "Apocynum cannabinum, Asclepias syriaca"
},
{
"name": "Wild hops",
"species": "Clematis virginiana"
},
{
"name": "Willow",
"species": "Salix"
},
{
"name": "Coyote willow",
"species": "Salix exigua"
},
{
"name": "Goodding willow",
"species": "Salix gooddingii"
},
{
"name": "Red willow",
"species": "Cornus amomum"
},
{
"name": "Rose willow",
"species": "Cornus amomum"
},
{
"name": "Windroot",
"species": "Asclepias tuberosa"
},
{
"name": "Wineberry",
"species": "Rubus phoenicolasius"
},
{
"name": "Winterberry",
"species": "Ilex verticillata"
},
{
"name": "American winterberry",
"species": "Ilex verticillata"
},
{
"name": "Evergreen winterberry",
"species": "Ilex glabra"
},
{
"name": "Virginia winterberry",
"species": "Ilex verticillata"
},
{
"name": "Wintercress",
"species": "Barbarea vulgaris"
},
{
"name": "Early wintercress",
"species": "Barbarea verna"
},
{
"name": "Woodbine",
"species": "Clematis virginiana"
},
{
"name": "Roman wormwood",
"species": "Ambrosia artemisiifolia, Corydalis sempervirens"
},
{
"name": "Wound rocket",
"species": "Barbarea vulgaris"
},
{
"name": "Yarrow",
"species": "Achillea"
},
{
"name": "Common yarrow",
"species": "Achillea millefolium"
},
{
"name": "Fernleaf yarrow",
"species": "Achillea filipendulina"
},
{
"name": "Sneezewort yarrow",
"species": "Achillea ptarmica"
},
{
"name": "Woolly yarrow",
"species": "Achillea tomentosa"
},
{
"name": "Yellow fieldcress",
"species": "Rorippa sylvestris"
},
{
"name": "Yellowwood",
"species": "Cladrastis lutea, Maclura pomifera"
},
{
"name": "Yellow coneflower",
"species": "Echinacea paradoxa"
},
{
"name": "Zedoary",
"species": "Curcuma zedoaria"
}
]
}
| website/examples/integration_test_migration/assets/plants.json/0 | {
"file_path": "website/examples/integration_test_migration/assets/plants.json",
"repo_id": "website",
"token_count": 26487
} | 1,249 |
{
"helloWorld": "Β‘Hola Mundo!"
}
| website/examples/internationalization/gen_l10n_example/lib/l10n/app_es.arb/0 | {
"file_path": "website/examples/internationalization/gen_l10n_example/lib/l10n/app_es.arb",
"repo_id": "website",
"token_count": 20
} | 1,250 |
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// A simple "rough and ready" example of localizing a Flutter app.
// Spanish and English (locale language codes 'en' and 'es') are
// supported.
// The pubspec.yaml file must include flutter_localizations in its
// dependencies section. For example:
//
// dependencies:
// flutter:
// sdk: flutter
// flutter_localizations:
// sdk: flutter
// If you run this app with the device's locale set to anything but
// English or Spanish, the app's locale will be English. If you
// set the device's locale to Spanish, the app's locale will be
// Spanish.
import 'dart:async';
import 'package:flutter/foundation.dart' show SynchronousFuture;
import 'package:flutter/material.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
// #docregion Demo
class DemoLocalizations {
DemoLocalizations(this.locale);
final Locale locale;
static DemoLocalizations of(BuildContext context) {
return Localizations.of<DemoLocalizations>(context, DemoLocalizations)!;
}
static const _localizedValues = <String, Map<String, String>>{
'en': {
'title': 'Hello World',
},
'es': {
'title': 'Hola Mundo',
},
};
static List<String> languages() => _localizedValues.keys.toList();
String get title {
return _localizedValues[locale.languageCode]!['title']!;
}
}
// #enddocregion Demo
// #docregion Delegate
class DemoLocalizationsDelegate
extends LocalizationsDelegate<DemoLocalizations> {
const DemoLocalizationsDelegate();
@override
bool isSupported(Locale locale) =>
DemoLocalizations.languages().contains(locale.languageCode);
@override
Future<DemoLocalizations> load(Locale locale) {
// Returning a SynchronousFuture here because an async "load" operation
// isn't needed to produce an instance of DemoLocalizations.
return SynchronousFuture<DemoLocalizations>(DemoLocalizations(locale));
}
@override
bool shouldReload(DemoLocalizationsDelegate old) => false;
}
// #enddocregion Delegate
class DemoApp extends StatelessWidget {
const DemoApp({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(DemoLocalizations.of(context).title),
),
body: Center(
child: Text(DemoLocalizations.of(context).title),
),
);
}
}
class Demo extends StatelessWidget {
const Demo({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
onGenerateTitle: (context) => DemoLocalizations.of(context).title,
localizationsDelegates: const [
DemoLocalizationsDelegate(),
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
],
supportedLocales: const [
Locale('en', ''),
Locale('es', ''),
],
// Watch out: MaterialApp creates a Localizations widget
// with the specified delegates. DemoLocalizations.of()
// will only find the app's Localizations widget if its
// context is a child of the app.
home: const DemoApp(),
);
}
}
void main() {
runApp(const Demo());
}
| website/examples/internationalization/minimal/lib/main.dart/0 | {
"file_path": "website/examples/internationalization/minimal/lib/main.dart",
"repo_id": "website",
"token_count": 1096
} | 1,251 |
// Copyright 2019 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
class ListDemo extends StatelessWidget {
const ListDemo({super.key, required this.type});
final ListDemoType type;
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
),
home: Scaffold(
appBar: AppBar(
automaticallyImplyLeading: false,
title: const Text('List demo'),
),
body: Scrollbar(
child: ListView(
restorationId: 'list_demo_list_view',
padding: const EdgeInsets.symmetric(vertical: 8),
children: [
for (var index = 1; index < 21; index++)
ListTile(
leading: ExcludeSemantics(
child: CircleAvatar(child: Text('$index')),
),
title: Text('Item $index'),
subtitle: type == ListDemoType.twoLine
? const Text('Secondary text')
: null,
),
],
),
),
),
);
}
}
enum ListDemoType {
oneLine,
twoLine,
}
void main() {
runApp(const ListDemo(type: ListDemoType.twoLine));
}
| website/examples/layout/gallery/lib/list_demo.dart/0 | {
"file_path": "website/examples/layout/gallery/lib/list_demo.dart",
"repo_id": "website",
"token_count": 676
} | 1,252 |
// Basic Flutter widget test.
// Learn more at https://docs.flutter.dev/testing/overview#widget-tests.
import 'package:flutter/foundation.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:layout/main.dart';
void main() {
testWidgets('Example app smoke test', (tester) async {
await tester.pumpWidget(const MyApp());
// A FlutterError shouldn't normally occur during a smoke test, but it
// is expected for this not-quite-finished app.
final error = tester.takeException();
expect(error, isFlutterError);
final flutterError = error as FlutterError;
expect(
flutterError.message,
matches(RegExp(r'A RenderFlex overflowed by \d+ pixels on the bottom\.')),
);
expect(find.text('Strawberry Pavlova Recipe'), findsOneWidget);
});
}
| website/examples/layout/pavlova/test/widget_test.dart/0 | {
"file_path": "website/examples/layout/pavlova/test/widget_test.dart",
"repo_id": "website",
"token_count": 272
} | 1,253 |
import 'package:flutter/material.dart';
class SomeWidget extends StatelessWidget {
const SomeWidget(this.child, {super.key});
final Widget child;
@override
Widget build(BuildContext context) {
return child;
}
}
| website/examples/state_mgmt/simple/lib/src/common.dart/0 | {
"file_path": "website/examples/state_mgmt/simple/lib/src/common.dart",
"repo_id": "website",
"token_count": 73
} | 1,254 |
import 'package:flutter/material.dart';
void main() {
runApp(
const MaterialApp(
home: AppHome(),
),
);
}
class AppHome extends StatelessWidget {
const AppHome({super.key});
@override
Widget build(BuildContext context) {
return Material(
child: Center(
child: TextButton(
onPressed: () {
debugDumpFocusTree();
},
child: const Text('Dump Focus Tree'),
),
),
);
}
}
| website/examples/testing/code_debugging/lib/dump_focus_tree.dart/0 | {
"file_path": "website/examples/testing/code_debugging/lib/dump_focus_tree.dart",
"repo_id": "website",
"token_count": 210
} | 1,255 |
name: debugging
description: A Flutter debugging example.
publish_to: none
environment:
sdk: ^3.3.0
dependencies:
flutter:
sdk: flutter
dev_dependencies:
example_utils:
path: ../../example_utils
integration_test:
sdk: flutter
flutter_test:
sdk: flutter
flutter:
uses-material-design: true
| website/examples/testing/debugging/pubspec.yaml/0 | {
"file_path": "website/examples/testing/debugging/pubspec.yaml",
"repo_id": "website",
"token_count": 124
} | 1,256 |
// Copyright 2023 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:url_launcher/url_launcher.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'URL Launcher',
theme: ThemeData(
useMaterial3: true,
colorSchemeSeed: Colors.purple,
),
home: const MyHomePage(title: 'URL Launcher'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
Future<void>? _launched;
Future<void> _launchInBrowser(Uri url) async {
if (!await launchUrl(
url,
mode: LaunchMode.externalApplication,
)) {
throw Exception('Could not launch $url');
}
}
Future<void> _launchInWebView(Uri url) async {
if (!await launchUrl(
url,
mode: LaunchMode.inAppWebView,
)) {
throw Exception('Could not launch $url');
}
}
Widget _launchStatus(BuildContext context, AsyncSnapshot<void> snapshot) {
if (snapshot.hasError) {
return Text('Error: ${snapshot.error}');
} else {
return const Text('');
}
}
@override
Widget build(BuildContext context) {
final Uri toLaunch = Uri(
scheme: 'https',
host: 'docs.flutter.dev',
path: 'testing/native-debugging');
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Padding(
padding: const EdgeInsets.all(16),
child: Text(toLaunch.toString()),
),
FilledButton(
onPressed: () => setState(() {
_launched = _launchInBrowser(toLaunch);
}),
child: const Text('Launch in browser'),
),
const Padding(padding: EdgeInsets.all(16)),
FilledButton(
onPressed: () => setState(() {
_launched = _launchInWebView(toLaunch);
}),
child: const Text('Launch in app'),
),
const Padding(padding: EdgeInsets.all(16.0)),
FutureBuilder<void>(future: _launched, builder: _launchStatus),
],
),
),
);
}
}
| website/examples/testing/native_debugging/lib/main.dart/0 | {
"file_path": "website/examples/testing/native_debugging/lib/main.dart",
"repo_id": "website",
"token_count": 1175
} | 1,257 |
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../app_model.dart';
class ScrollViewWithScrollbars extends StatefulWidget {
const ScrollViewWithScrollbars({
super.key,
required this.child,
this.axis = Axis.vertical,
});
final Widget child;
final Axis axis;
@override
State<ScrollViewWithScrollbars> createState() =>
_ScrollViewWithScrollbarsState();
}
class _ScrollViewWithScrollbarsState extends State<ScrollViewWithScrollbars> {
final ScrollController _scrollController = ScrollController();
@override
Widget build(BuildContext context) {
return Scrollbar(
controller: _scrollController,
thumbVisibility: context.select<AppModel, bool>((m) => m.touchMode),
child: SingleChildScrollView(
scrollDirection: widget.axis,
controller: _scrollController,
child: widget.child,
),
);
}
}
| website/examples/ui/layout/adaptive_app_demos/lib/widgets/scroll_view_with_scrollbars.dart/0 | {
"file_path": "website/examples/ui/layout/adaptive_app_demos/lib/widgets/scroll_view_with_scrollbars.dart",
"repo_id": "website",
"token_count": 312
} | 1,258 |
import 'package:flutter/rendering.dart';
void showBaselines() {
debugPaintBaselinesEnabled = true;
}
| website/examples/visual_debugging/lib/show_baselines.dart/0 | {
"file_path": "website/examples/visual_debugging/lib/show_baselines.dart",
"repo_id": "website",
"token_count": 35
} | 1,259 |
- name: bash
set-path: echo 'export PATH="$HOME/development/flutter/bin:$PATH"' >> ~/.bash_profile
- name: zsh
set-path: echo 'export PATH="$HOME/development/flutter/bin:$PATH"' >> ~/.zshenv
- name: fish
set-path: fish_add_path -g -p $HOME/development/flutter/bin
- name: csh
set-path: echo 'setenv PATH "$HOME/development/flutter/bin:$PATH"' >> ~/.cshrc
- name: tsch
set-path: echo 'setenv PATH "$HOME/development/flutter/bin:$PATH"' >> ~/.tcshrc
- name: ksh
set-path: echo 'export PATH="$HOME/development/flutter/bin:$PATH"' >> ~/.profile
- name: sh
set-path: echo 'export PATH="$HOME/development/flutter/bin:$PATH"' >> ~/.profile
| website/src/_data/shells.yml/0 | {
"file_path": "website/src/_data/shells.yml",
"repo_id": "website",
"token_count": 234
} | 1,260 |
{{site.alert.note}}
Downloading the Flutter SDK
also downloads a compatible version of Dart.
If you've downloaded the Dart SDK separately,
make sure that the Flutter version of `dart` is
first in your path, as the two versions might not be compatible.
The following command tells you whether the `flutter` and `dart`
commands originate from the same `bin` directory and are
therefore compatible.
```terminal
$ which flutter dart
/path-to-flutter-sdk/bin/flutter
/usr/local/bin/dart
```
As shown above, the two commands don't come from
the same `bin` directory. Update your path to use
commands from `/path-to-flutter-sdk/bin` before
commands from `/usr/local/bin` (in this case).
After updating your shell for the change to take effect,
running the `which` command again
should show that the `flutter` and `dart` commands
now come from the same directory.
```terminal
$ which flutter dart
/path-to-flutter-sdk/bin/flutter
/path-to-flutter-sdk/bin/dart
```
To learn more about the `dart` command, run `dart -h`
from the command line, or see the [dart tool][] page.
{{site.alert.end}}
[dart tool]: {{site.dart-site}}/tools/dart-tool
| website/src/_includes/docs/dart-tool.md/0 | {
"file_path": "website/src/_includes/docs/dart-tool.md",
"repo_id": "website",
"token_count": 378
} | 1,261 |
{{site.alert.warning}}
Don't install Flutter to a directory or path that meets
one or both of the following conditions:
* The path contains special characters or spaces.
* The path requires elevated privileges.
As an example, `C:\Program Files` fails both conditions.
{{site.alert.end}}
| website/src/_includes/docs/install/admonitions/install-paths.md/0 | {
"file_path": "website/src/_includes/docs/install/admonitions/install-paths.md",
"repo_id": "website",
"token_count": 101
} | 1,262 |
{% assign devos = include.devos %}
{% assign target = include.target %}
1. To develop {{devos}} {{target}} apps, use the following command to install
these packages:
[`clang`][clang],
[`cmake`][cmake],
[`ninja-build`][ninjabuild],
[`pkg-config`][pkg-config],
[`libgtk-3-dev`][gtk3],
[`libstdc++-12-dev`][libstdc]
```terminal
$ sudo apt-get install \
clang cmake git \
ninja-build pkg-config \
libgtk-3-dev liblzma-dev \
libstdc++-12-dev
```
[clang]: https://clang.llvm.org/
[cmake]: https://cmake.org/
[gtk3]: https://www.gtk.org/docs/installations/linux#installing-gtk3-from-packages
[ninjabuild]: https://ninja-build.org/
[pkg-config]: https://www.freedesktop.org/wiki/Software/pkg-config/
[libstdc]: https://packages.debian.org/sid/libstdc++-12-dev
| website/src/_includes/docs/install/reqs/linux/install-desktop-tools.md/0 | {
"file_path": "website/src/_includes/docs/install/reqs/linux/install-desktop-tools.md",
"repo_id": "website",
"token_count": 361
} | 1,263 |
{% if include.target == 'desktop' -%}
4.0 | 52.0 |
{% elsif include.target == 'mobile' -%}
10.0 | 10.0 |
{% elsif include.target == 'web' -%}
2.5 | 2.5 |
{% else -%}
11.0 | 60.0 |
{% endif -%}
{:.table.table-striped}
| website/src/_includes/docs/install/reqs/windows/storage.md/0 | {
"file_path": "website/src/_includes/docs/install/reqs/windows/storage.md",
"repo_id": "website",
"token_count": 107
} | 1,264 |
{% assign route = page.url|regex_replace:'/index$|/index\.html$|\.html$|/$' %}
<header class="site-header">
<nav class="navbar navbar-expand-md justify-content-start justify-content-md-between">
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation">
<i class="material-symbols">menu</i>
</button>
<a class="navbar-brand" href="/">
<img
src='/assets/images/branding/flutter/logo+text/horizontal/default.svg'
alt='Flutter logo'
height="37"
width="129"
class="align-middle">
</a>
<div
id="navbarSupportedContent"
class="collapse navbar-collapse flex-grow-0">
<div
class="site-header__sheet-bg"
data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation">
</div>
<div class="site-header__sheet">
<ul class="navbar-nav">
<div class="site-sidebar site-sidebar--header d-md-none">
{% include sidenav-level-1.html nav=site.data.sidenav page_url_path=route base_id="header" %}
</div>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="platform-navbar-dropdown"
href="{{site.main-url}}/multi-platform"
role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Multi-Platform
</a>
<div class="dropdown-menu" aria-labelledby="platform-navbar-dropdown">
<a class="dropdown-item" href="{{site.main-url}}/multi-platform/mobile">Mobile</a>
<a class="dropdown-item" href="{{site.main-url}}/multi-platform/web">Web</a>
<a class="dropdown-item" href="{{site.main-url}}/multi-platform/desktop">Desktop</a>
<a class="dropdown-item" href="{{site.main-url}}/multi-platform/embedded">Embedded</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="dev-navbar-dropdown"
href="{{site.main-url}}/"
role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Development
</a>
<div class="dropdown-menu" aria-labelledby="dev-navbar-dropdown">
<a class="dropdown-item" href="{{site.main-url}}/learn">Learn</a>
<a class="dropdown-item" href="https://pub.dev/flutter/favorites" target="_blank">Flutter Favorites</a>
<a class="dropdown-item" href="https://pub.dev/" target="_blank">Packages</a>
<a class="dropdown-item" href="{{site.main-url}}/monetization">Monetization</a>
<a class="dropdown-item" href="{{site.main-url}}/games">Games</a>
<a class="dropdown-item" href="{{site.main-url}}/news">News</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="ecosystem-navbar-dropdown"
href="{{site.main-url}}/ecosystem"
role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Ecosystem
</a>
<div class="dropdown-menu" aria-labelledby="ecosystem-navbar-dropdown">
<a class="dropdown-item" href="{{site.main-url}}/community">Community</a>
<a class="dropdown-item" href="{{site.main-url}}/events">Events</a>
<a class="dropdown-item" href="{{site.main-url}}/culture">Culture</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="{{site.main-url}}/showcase">Showcase</a>
</li>
<li class="nav-item dropdown docs-item">
<a class="nav-link dropdown-toggle{% if route == '/' %} active{% endif %}"
id="docs-navbar-dropdown"
href="/"
role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Docs
</a>
<div class="dropdown-menu" aria-labelledby="docs-navbar-dropdown">
<a class="dropdown-item {% if route == '/release/whats-new' %} active{% endif %}"
href="/release/whats-new">What's new</a>
<a class="dropdown-item {% if route contains '/get-started/editor' %} active{% endif %}"
href="/get-started/editor">Editor support</a>
<a class="dropdown-item {% if route contains '/tools/hot-reload' %} active{% endif %}"
href="/tools/hot-reload">Hot reload</a>
<a class="dropdown-item {% if route contains '/perf/ui-performance' %} active{% endif %}"
href="/perf/ui-performance">Profiling</a>
<a class="dropdown-item {% if route contains '/get-started/install' %} active{% endif %}"
href="/get-started/install">Install Flutter</a>
<a class="dropdown-item {% if route contains '/tools/devtools' %} active{% endif %}"
href="/tools/devtools/overview">DevTools</a>
<a class="dropdown-item {% if route contains '/cookbook' %} active{% endif %}"
href="/cookbook">Cookbook</a>
<a class="dropdown-item {% if route contains '/codelabs' %} active{% endif %}"
href="/codelabs">Codelabs</a>
</div>
</li>
</ul>
<form action="/search/" class="site-header__search form-inline">
<input
class="site-header__searchfield form-control"
type="search" name="q" id="q" autocomplete="off"
placeholder="Search" aria-label="Search">
</form>
</div>
</div>
<div class="site-header__social navbar-nav flex-row">
<a
class="nav-item nav-link nav-icon"
href="{{site.social.twitter}}"
aria-label="Open Flutter's Twitter in a new tab"
target="_blank" rel="noreferrer">
<svg><use href="/assets/images/social/twitter.svg#twitter"></use></svg>
</a>
<a
class="nav-item nav-link nav-icon"
href="{{site.social.youtube}}"
aria-label="Open Flutter's YouTube in a new tab"
target="_blank" rel="noreferrer">
<svg><use href="/assets/images/social/youtube.svg#youtube"></use></svg>
</a>
<a
class="nav-item nav-link nav-icon"
href="{{site.flutter-medium}}"
aria-label="Open Flutter's Medium blog in a new tab"
target="_blank" rel="noreferrer">
<svg><use href="/assets/images/social/medium.svg#medium"></use></svg>
</a>
<a
class="nav-item nav-link nav-icon"
href="{{site.repo.organization}}"
aria-label="Open Flutter's GitHub in a new tab"
target="_blank" rel="noreferrer">
<svg><use href="/assets/images/social/github.svg#github"></use></svg>
</a>
</div>
{% if page.show-nav-get-started-button -%}
<a
class="site-header__cta btn btn-primary"
href="/get-started/install/">Get started
</a>
{% endif -%}
</nav>
</header>
| website/src/_includes/header.html/0 | {
"file_path": "website/src/_includes/header.html",
"repo_id": "website",
"token_count": 3571
} | 1,265 |
module ActiveNavForPage
def active_nav_for_page(page_url_path = '', active_nav)
# Split the path for this page
# Example: docs.flutter.dev/cookbook/networking/update-data ->
# [cookbook, networking, update-data]
parts = page_url_path.downcase.split('/').drop(1)
current_path_pairs = active_nav
last_allowed_backup_active = []
parts.each do |part|
# If the current entry allows children and has active data
# allow its active data to be a backup if a later path is not found.
unless current_path_pairs['active'].nil? or current_path_pairs['allow-children'] == false
last_allowed_backup_active = current_path_pairs['active']
end
paths = current_path_pairs['paths']
# If the current entry has children paths,
# explore those next.
unless paths.nil?
current_path_pairs = paths
end
# Get the data for the next part.
next_pair = current_path_pairs[part]
# If the next part of the path does not have data,
# use the active data for the current backup.
if next_pair.nil?
return last_allowed_backup_active
end
current_path_pairs = next_pair
end
# If the last path part has active data, use that,
# otherwise fallback to the backup active data.
active_entries = current_path_pairs['active']
if active_entries.nil?
active_entries = last_allowed_backup_active
end
return active_entries
end
end
Liquid::Template.register_filter(ActiveNavForPage)
| website/src/_plugins/active_nav_for_page.rb/0 | {
"file_path": "website/src/_plugins/active_nav_for_page.rb",
"repo_id": "website",
"token_count": 568
} | 1,266 |
module ThrowErrorFilter
def throw_error(message)
raise message
end
end
Liquid::Template.register_filter(ThrowErrorFilter)
| website/src/_plugins/throw_error.rb/0 | {
"file_path": "website/src/_plugins/throw_error.rb",
"repo_id": "website",
"token_count": 39
} | 1,267 |
@use '../base/variables' as *;
@use '../vendor/bootstrap';
.site-sidebar {
font-family: $site-font-family-alt;
padding: $site-sidebar-top-padding 0 ($site-sidebar-top-padding * 2);
// Customization for sidebar in mobile nav
&.site-sidebar--header {
padding: 0;
> .nav > .nav-item {
font-size: bootstrap.$font-size-base;
}
> .nav > .nav-item,
> .nav > .nav-item .nav .nav-item {
.nav-link {
padding-top: bootstrap.bs-spacer(2);
padding-bottom: bootstrap.bs-spacer(1);
&.collapsible {
padding-bottom: bootstrap.bs-spacer(2);
&::before {
top: 6px;
}
}
}
}
}
.sidebar-primary-divider {
height: 0;
margin-top: bootstrap.bs-spacer(1);
margin-bottom: bootstrap.bs-spacer(1);
overflow: hidden;
border-top: 1px solid $site-color-light-grey;
}
@mixin nav-link-active-style {
&.active {
font-weight: bootstrap.$font-weight-bold;
&:not(.collapsible) {
color: $site-color-primary;
&:hover {
color: $flutter-color-dark-blue;
}
}
}
}
@mixin nav-link-not-active-hover {
&:not(.disabled) {
&:hover {
color: $site-color-primary;
}
}
}
.nav-header {
font-weight: bootstrap.$font-weight-bolder;
font-size: bootstrap.$font-size-base;
user-select: none;
color: lighten($site-color-body-light, 20%);
}
.nav-link {
padding: bootstrap.bs-spacer(1) 0;
position: relative;
color: inherit;
&.disabled { opacity: 0.5; }
@include nav-link-active-style;
@include nav-link-not-active-hover;
}
@mixin collapsible() {
align-items: flex-end;
display: flex;
justify-content: space-between;
&::after {
content: 'keyboard_arrow_down';
font: $site-font-icon;
transition: transform .25s ease-in-out;
}
&:not(.collapsed) {
&::after {
transform: rotate(180deg);
}
}
}
// Top-level nav item
> .nav {
> .nav-item, > .nav-header {
padding: 0 $site-sidebar-side-padding;
}
> .nav-item {
> .nav-link {
@include nav-link-active-style;
&.collapsible {
padding: bootstrap.bs-spacer(2) 0;
@include collapsible();
@include nav-link-not-active-hover;
}
&:not(.collapsible) {
padding: bootstrap.bs-spacer(1) 0;
}
}
&:first-child {
> .nav-link {
padding-top: 0;
}
}
}
> .nav-header {
padding-top: bootstrap.bs-spacer(1);
& + .nav-item {
// The first item after a top-level header should have
// consistent padding, no matter if it's a link or collapsible.
.nav-link {
padding-top: bootstrap.bs-spacer(2);
}
}
}
}
// Sub navs
> .nav .nav {
padding-left: bootstrap.bs-spacer(4);
margin-bottom: bootstrap.bs-spacer(1);
.nav-header {
font-size: bootstrap.$font-size-sm;
&:not(:first-child) {
margin-top: bootstrap.bs-spacer(2);
}
}
.nav-item {
font-size: bootstrap.$font-size-sm;
> .nav-link {
color: $site-color-body-light;
@include nav-link-not-active-hover;
@include nav-link-active-style;
&.collapsible {
&::before{
content: 'arrow_drop_down';
font: $site-font-icon;
left: -24px;
position: absolute;
top: 2px;
transition: transform .25s ease-in-out;
}
&.collapsed {
&::before {
transform: rotate(-90deg);
}
}
}
}
}
}
}
| website/src/_sass/components/_sidebar.scss/0 | {
"file_path": "website/src/_sass/components/_sidebar.scss",
"repo_id": "website",
"token_count": 1864
} | 1,268 |
---
title: Add Flutter to an existing app
short-title: Add to app
description: Adding Flutter as a library to an existing Android or iOS app.
---
## Add-to-app
It's sometimes not practical to rewrite your entire application in
Flutter all at once. For those situations,
Flutter can be integrated into your existing
application piecemeal, as a library or module.
That module can then be imported into your Android or iOS
(currently supported platforms) app to render a part of your
app's UI in Flutter. Or, just to run shared Dart logic.
In a few steps, you can bring the productivity and the expressiveness of
Flutter into your own app.
The `add-to-app` feature supports integrating multiple instances of any screen size.
This can help scenarios such as a hybrid navigation stack with mixed
native and Flutter screens, or a page with multiple partial-screen Flutter
views.
Having multiple Flutter instances allows each instance to maintain
independent application and UI state while using minimal
memory resources. See more in the [multiple Flutters][] page.
## Supported features
### Add to Android applications
{% include docs/app-figure.md image="development/add-to-app/android-overview.gif" alt="Add-to-app steps on Android" %}
* Auto-build and import the Flutter module by adding a
Flutter SDK hook to your Gradle script.
* Build your Flutter module into a generic
[Android Archive (AAR)][] for integration into your
own build system and for better Jetifier interoperability
with AndroidX.
* [`FlutterEngine`][java-engine] API for starting and persisting
your Flutter environment independently of attaching a
[`FlutterActivity`][]/[`FlutterFragment`][] etc.
* Android Studio Android/Flutter co-editing and module
creation/import wizard.
* Java and Kotlin host apps are supported.
* Flutter modules can use [Flutter plugins][] to interact
with the platform.
* Support for Flutter debugging and stateful hot reload by
using `flutter attach` from IDEs or the command line to
connect to an app that contains Flutter.
### Add to iOS applications
{% include docs/app-figure.md image="development/add-to-app/ios-overview.gif" alt="Add-to-app steps on iOS" %}
* Auto-build and import the Flutter module by adding a Flutter
SDK hook to your CocoaPods and to your Xcode build phase.
* Build your Flutter module into a generic [iOS Framework][]
for integration into your own build system.
* [`FlutterEngine`][ios-engine] API for starting and persisting
your Flutter environment independently of attaching a
[`FlutterViewController`][].
* Objective-C and Swift host apps supported.
* Flutter modules can use [Flutter plugins][] to interact
with the platform.
* Support for Flutter debugging and stateful hot reload by
using `flutter attach` from IDEs or the command line to
connect to an app that contains Flutter.
See our [add-to-app GitHub Samples repository][]
for sample projects in Android and iOS that import
a Flutter module for UI.
## Get started
To get started, see our project integration guide for
Android and iOS:
<div class="card-deck mb-8">
<a class="card" href="/add-to-app/android/project-setup">
<div class="card-body">
<header class="card-title text-center m-0">
Android
</header>
</div>
</a>
<a class="card" href="/add-to-app/ios/project-setup">
<div class="card-body">
<header class="card-title text-center m-0">
iOS
</header>
</div>
</a>
</div>
## API usage
After Flutter is integrated into your project,
see our API usage guides at the following links:
<div class="card-deck mb-8">
<a class="card" href="/add-to-app/android/add-flutter-screen">
<div class="card-body">
<header class="card-title text-center m-0">
Android
</header>
</div>
</a>
<a class="card" href="/add-to-app/ios/add-flutter-screen">
<div class="card-body">
<header class="card-title text-center m-0">
iOS
</header>
</div>
</a>
</div>
## Limitations
* Packing multiple Flutter libraries into an
application isn't supported.
* Plugins that don't support `FlutterPlugin` might have unexpected
behaviors if they make assumptions that are untenable in add-to-app
(such as assuming that a Flutter `Activity` is always present).
* On Android, the Flutter module only supports AndroidX applications.
[add-to-app GitHub Samples repository]: {{site.repo.samples}}/tree/main/add_to_app
[Android Archive (AAR)]: {{site.android-dev}}/studio/projects/android-library
[Flutter plugins]: {{site.pub}}/flutter
[`FlutterActivity`]: {{site.api}}/javadoc/io/flutter/embedding/android/FlutterActivity.html
[java-engine]: {{site.api}}/javadoc/io/flutter/embedding/engine/FlutterEngine.html
[ios-engine]: {{site.api}}/ios-embedder/interface_flutter_engine.html
[FlutterFire]: {{site.github}}/firebase/flutterfire/tree/master/packages
[`FlutterFragment`]: {{site.api}}/javadoc/io/flutter/embedding/android/FlutterFragment.html
[`FlutterPlugin`]: {{site.api}}/javadoc/io/flutter/embedding/engine/plugins/FlutterPlugin.html
[`FlutterViewController`]: {{site.api}}/ios-embedder/interface_flutter_view_controller.html
[iOS Framework]: {{site.apple-dev}}/library/archive/documentation/MacOSX/Conceptual/BPFrameworks/Concepts/WhatAreFrameworks.html
[maintained by the Flutter team]: {{site.repo.packages}}/tree/main/packages
[multiple Flutters]: /add-to-app/multiple-flutters
| website/src/add-to-app/index.md/0 | {
"file_path": "website/src/add-to-app/index.md",
"repo_id": "website",
"token_count": 1656
} | 1,269 |
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#f1a522" d="
M 15,0
L 6,19
L 14,19
L 14,31
L 23,12
L 15,12
Z
"/>
</svg>
| website/src/assets/images/docs/get-started/hot-reload.svg/0 | {
"file_path": "website/src/assets/images/docs/get-started/hot-reload.svg",
"repo_id": "website",
"token_count": 104
} | 1,270 |
Note that the hot-reload.gif file is used in the
README.md file for the flutter/flutter repo.
We no longer use it on any pages in the website repo.
5/2/2020, sz
| website/src/assets/images/docs/tools/android-studio/README/0 | {
"file_path": "website/src/assets/images/docs/tools/android-studio/README",
"repo_id": "website",
"token_count": 53
} | 1,271 |
{% assign id = include.os | downcase -%}
<div id="{{id}}-pub" class="tab-pane
{%- if id == 'windows' %} active {% endif %}"
role="tabpanel" aria-labelledby="{{id}}-tab" markdown="1">
1. Configure a proxy.
To configure a proxy, check out the
[Dart documentation on proxies]({{site.dart-site}}/tools/pub/troubleshoot#pub-get-fails-from-behind-a-corporate-firewall).
{% comment %}
From <https://github.com/flutter/website/issues/2556#issuecomment-481566476>
{% endcomment %}
1. Verify that your `PUB_HOSTED_URL` environment variable is either unset
or empty.
{% if id == 'windows' -%}
```terminal
{{prompt}} echo $env:PUB_HOSTED_URL
```
If this command returns any value, unset it.
```terminal
{{prompt}} Remove-Item $env:PUB_HOSTED_URL
```
{% else -%}
```terminal
{{prompt}} echo $PUB_HOSTED_URL
```
If this command returns any value, unset it.
```terminal
{{prompt}} unset $PUB_HOSTED_URL
```
{% endif %}
</div>
| website/src/community/china/_pub-settings.md/0 | {
"file_path": "website/src/community/china/_pub-settings.md",
"repo_id": "website",
"token_count": 407
} | 1,272 |
---
title: Drag a UI element
description: How to implement a draggable UI element.
js:
- defer: true
url: https://old-dartpad-3ce3f.web.app/inject_embed.dart.js
---
<?code-excerpt path-base="cookbook/effects/drag_a_widget"?>
Drag and drop is a common mobile app interaction.
As the user long presses (sometimes called _touch & hold_)
on a widget, another widget appears beneath the
user's finger, and the user drags the widget to a
final location and releases it.
In this recipe, you'll build a drag-and-drop interaction
where the user long presses on a choice of food,
and then drags that food to the picture of the customer who
is paying for it.
The following animation shows the app's behavior:
{:.site-mobile-screenshot}
This recipe begins with a prebuilt list of menu items and
a row of customers.
The first step is to recognize a long press
and display a draggable photo of a menu item.
## Press and drag
Flutter provides a widget called [`LongPressDraggable`][]
that provides the exact behavior that you need to begin
a drag-and-drop interaction. A `LongPressDraggable`
widget recognizes when a long press occurs and then
displays a new widget near the user's finger.
As the user drags, the widget follows the user's finger.
`LongPressDraggable` gives you full control over the
widget that the user drags.
Each menu list item is displayed with a custom
`MenuListItem` widget.
<?code-excerpt "lib/main.dart (MenuListItem)" replace="/^child: //g;/,$//g"?>
```dart
MenuListItem(
name: item.name,
price: item.formattedTotalItemPrice,
photoProvider: item.imageProvider,
)
```
Wrap the `MenuListItem` widget with a `LongPressDraggable` widget.
<?code-excerpt "lib/main.dart (LongPressDraggable)" replace="/^return //g;/,$//g"?>
```dart
LongPressDraggable<Item>(
data: item,
dragAnchorStrategy: pointerDragAnchorStrategy,
feedback: DraggingListItem(
dragKey: _draggableKey,
photoProvider: item.imageProvider,
),
child: MenuListItem(
name: item.name,
price: item.formattedTotalItemPrice,
photoProvider: item.imageProvider,
),
);
```
In this case, when the user long presses on the
`MenuListItem` widget, the `LongPressDraggable`
widget displays a `DraggingListItem`.
This `DraggingListItem` displays a photo of the
selected food item, centered beneath
the user's finger.
The `dragAnchorStrategy` property is set to
[`pointerDragAnchorStrategy`][].
This property value instructs `LongPressDraggable`
to base the `DraggableListItem`'s position on the
user's finger. As the user moves a finger,
the `DraggableListItem` moves with it.
Dragging and dropping is of little use if no information
is transmitted when the item is dropped.
For this reason, `LongPressDraggable` takes a `data` parameter.
In this case, the type of `data` is `Item`,
which holds information about the
food menu item that the user pressed on.
The `data` associated with a `LongPressDraggable`
is sent to a special widget called `DragTarget`,
where the user releases the drag gesture.
You'll implement the drop behavior next.
## Drop the draggable
The user can drop a `LongPressDraggable` wherever they choose,
but dropping the draggable has no effect unless it's dropped
on top of a `DragTarget`. When the user drops a draggable on
top of a `DragTarget` widget, the `DragTarget` widget
can either accept or reject the data from the draggable.
In this recipe, the user should drop a menu item on a
`CustomerCart` widget to add the menu item to the user's cart.
<?code-excerpt "lib/main.dart (CustomerCart)" replace="/^return //g;/,$//g"?>
```dart
CustomerCart(
hasItems: customer.items.isNotEmpty,
highlighted: candidateItems.isNotEmpty,
customer: customer,
);
```
Wrap the `CustomerCart` widget with a `DragTarget` widget.
<?code-excerpt "lib/main.dart (DragTarget)" replace="/^child: //g;/,$//g"?>
```dart
DragTarget<Item>(
builder: (context, candidateItems, rejectedItems) {
return CustomerCart(
hasItems: customer.items.isNotEmpty,
highlighted: candidateItems.isNotEmpty,
customer: customer,
);
},
onAcceptWithDetails: (details) {
_itemDroppedOnCustomerCart(
item: details.data,
customer: customer,
);
},
)
```
The `DragTarget` displays your existing widget and
also coordinates with `LongPressDraggable` to recognize
when the user drags a draggable on top of the `DragTarget`.
The `DragTarget` also recognizes when the user drops
a draggable on top of the `DragTarget` widget.
When the user drags a draggable on the `DragTarget` widget,
`candidateItems` contains the data items that the user is dragging.
This draggable allows you to change what your widget looks
like when the user is dragging over it. In this case,
the `Customer` widget turns red whenever any items are dragged above the
`DragTarget` widget. The red visual appearance is configured with the
`highlighted` property within the `CustomerCart` widget.
When the user drops a draggable on the `DragTarget` widget,
the `onAcceptWithDetails` callback is invoked. This is when you get
to decide whether or not to accept the data that was dropped.
In this case, the item is always accepted and processed.
You might choose to inspect the incoming item to make a
different decision.
Notice that the type of item dropped on `DragTarget`
must match the type of the item dragged from `LongPressDraggable`.
If the types are not compatible, then
the `onAcceptWithDetails` method isn't invoked.
With a `DragTarget` widget configured to accept your
desired data, you can now transmit data from one part
of your UI to another by dragging and dropping.
In the next step,
you update the customer's cart with the dropped menu item.
## Add a menu item to a cart
Each customer is represented by a `Customer` object,
which maintains a cart of items and a price total.
<?code-excerpt "lib/main.dart (CustomerClass)"?>
```dart
class Customer {
Customer({
required this.name,
required this.imageProvider,
List<Item>? items,
}) : items = items ?? [];
final String name;
final ImageProvider imageProvider;
final List<Item> items;
String get formattedTotalItemPrice {
final totalPriceCents =
items.fold<int>(0, (prev, item) => prev + item.totalPriceCents);
return '\$${(totalPriceCents / 100.0).toStringAsFixed(2)}';
}
}
```
The `CustomerCart` widget displays the customer's photo,
name, total, and item count based on a `Customer` instance.
To update a customer's cart when a menu item is dropped,
add the dropped item to the associated `Customer` object.
<?code-excerpt "lib/main.dart (AddCart)"?>
```dart
void _itemDroppedOnCustomerCart({
required Item item,
required Customer customer,
}) {
setState(() {
customer.items.add(item);
});
}
```
The `_itemDroppedOnCustomerCart` method is invoked in
`onAcceptWithDetails()` when the user drops a menu item on a
`CustomerCart` widget. By adding the dropped item to the
`customer` object, and invoking `setState()` to cause a
layout update, the UI refreshes with the new customer's
price total and item count.
Congratulations! You have a drag-and-drop interaction
that adds food items to a customer's shopping cart.
## Interactive example
Run the app:
* Scroll through the food items.
* Press and hold on one with your
finger or click and hold with the
mouse.
* While holding, the food item's image
will appear above the list.
* Drag the image and drop it on one of the
people at the bottom of the screen.
The text under the image updates to
reflect the charge for that person.
You can continue to add food items
and watch the charges accumulate.
<!-- Start DartPad -->
<?code-excerpt "lib/main.dart"?>
```run-dartpad:theme-light:mode-flutter:run-true:width-100%:height-600px:split-60:ga_id-interactive_example
import 'package:flutter/material.dart';
void main() {
runApp(
const MaterialApp(
home: ExampleDragAndDrop(),
debugShowCheckedModeBanner: false,
),
);
}
const List<Item> _items = [
Item(
name: 'Spinach Pizza',
totalPriceCents: 1299,
uid: '1',
imageProvider: NetworkImage('https://flutter'
'.dev/docs/cookbook/img-files/effects/split-check/Food1.jpg'),
),
Item(
name: 'Veggie Delight',
totalPriceCents: 799,
uid: '2',
imageProvider: NetworkImage('https://flutter'
'.dev/docs/cookbook/img-files/effects/split-check/Food2.jpg'),
),
Item(
name: 'Chicken Parmesan',
totalPriceCents: 1499,
uid: '3',
imageProvider: NetworkImage('https://flutter'
'.dev/docs/cookbook/img-files/effects/split-check/Food3.jpg'),
),
];
@immutable
class ExampleDragAndDrop extends StatefulWidget {
const ExampleDragAndDrop({super.key});
@override
State<ExampleDragAndDrop> createState() => _ExampleDragAndDropState();
}
class _ExampleDragAndDropState extends State<ExampleDragAndDrop>
with TickerProviderStateMixin {
final List<Customer> _people = [
Customer(
name: 'Makayla',
imageProvider: const NetworkImage('https://flutter'
'.dev/docs/cookbook/img-files/effects/split-check/Avatar1.jpg'),
),
Customer(
name: 'Nathan',
imageProvider: const NetworkImage('https://flutter'
'.dev/docs/cookbook/img-files/effects/split-check/Avatar2.jpg'),
),
Customer(
name: 'Emilio',
imageProvider: const NetworkImage('https://flutter'
'.dev/docs/cookbook/img-files/effects/split-check/Avatar3.jpg'),
),
];
final GlobalKey _draggableKey = GlobalKey();
void _itemDroppedOnCustomerCart({
required Item item,
required Customer customer,
}) {
setState(() {
customer.items.add(item);
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: const Color(0xFFF7F7F7),
appBar: _buildAppBar(),
body: _buildContent(),
);
}
PreferredSizeWidget _buildAppBar() {
return AppBar(
iconTheme: const IconThemeData(color: Color(0xFFF64209)),
title: Text(
'Order Food',
style: Theme.of(context).textTheme.headlineMedium?.copyWith(
fontSize: 36,
color: const Color(0xFFF64209),
fontWeight: FontWeight.bold,
),
),
backgroundColor: const Color(0xFFF7F7F7),
elevation: 0,
);
}
Widget _buildContent() {
return Stack(
children: [
SafeArea(
child: Column(
children: [
Expanded(
child: _buildMenuList(),
),
_buildPeopleRow(),
],
),
),
],
);
}
Widget _buildMenuList() {
return ListView.separated(
padding: const EdgeInsets.all(16),
itemCount: _items.length,
separatorBuilder: (context, index) {
return const SizedBox(
height: 12,
);
},
itemBuilder: (context, index) {
final item = _items[index];
return _buildMenuItem(
item: item,
);
},
);
}
Widget _buildMenuItem({
required Item item,
}) {
return LongPressDraggable<Item>(
data: item,
dragAnchorStrategy: pointerDragAnchorStrategy,
feedback: DraggingListItem(
dragKey: _draggableKey,
photoProvider: item.imageProvider,
),
child: MenuListItem(
name: item.name,
price: item.formattedTotalItemPrice,
photoProvider: item.imageProvider,
),
);
}
Widget _buildPeopleRow() {
return Container(
padding: const EdgeInsets.symmetric(
horizontal: 8,
vertical: 20,
),
child: Row(
children: _people.map(_buildPersonWithDropZone).toList(),
),
);
}
Widget _buildPersonWithDropZone(Customer customer) {
return Expanded(
child: Padding(
padding: const EdgeInsets.symmetric(
horizontal: 6,
),
child: DragTarget<Item>(
builder: (context, candidateItems, rejectedItems) {
return CustomerCart(
hasItems: customer.items.isNotEmpty,
highlighted: candidateItems.isNotEmpty,
customer: customer,
);
},
onAcceptWithDetails: (details) {
_itemDroppedOnCustomerCart(
item: details.data,
customer: customer,
);
},
),
),
);
}
}
class CustomerCart extends StatelessWidget {
const CustomerCart({
super.key,
required this.customer,
this.highlighted = false,
this.hasItems = false,
});
final Customer customer;
final bool highlighted;
final bool hasItems;
@override
Widget build(BuildContext context) {
final textColor = highlighted ? Colors.white : Colors.black;
return Transform.scale(
scale: highlighted ? 1.075 : 1.0,
child: Material(
elevation: highlighted ? 8 : 4,
borderRadius: BorderRadius.circular(22),
color: highlighted ? const Color(0xFFF64209) : Colors.white,
child: Padding(
padding: const EdgeInsets.symmetric(
horizontal: 12,
vertical: 24,
),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
ClipOval(
child: SizedBox(
width: 46,
height: 46,
child: Image(
image: customer.imageProvider,
fit: BoxFit.cover,
),
),
),
const SizedBox(height: 8),
Text(
customer.name,
style: Theme.of(context).textTheme.titleMedium?.copyWith(
color: textColor,
fontWeight:
hasItems ? FontWeight.normal : FontWeight.bold,
),
),
Visibility(
visible: hasItems,
maintainState: true,
maintainAnimation: true,
maintainSize: true,
child: Column(
children: [
const SizedBox(height: 4),
Text(
customer.formattedTotalItemPrice,
style: Theme.of(context).textTheme.bodySmall!.copyWith(
color: textColor,
fontSize: 16,
fontWeight: FontWeight.bold,
),
),
const SizedBox(height: 4),
Text(
'${customer.items.length} item${customer.items.length != 1 ? 's' : ''}',
style: Theme.of(context).textTheme.titleMedium!.copyWith(
color: textColor,
fontSize: 12,
),
),
],
),
)
],
),
),
),
);
}
}
class MenuListItem extends StatelessWidget {
const MenuListItem({
super.key,
this.name = '',
this.price = '',
required this.photoProvider,
this.isDepressed = false,
});
final String name;
final String price;
final ImageProvider photoProvider;
final bool isDepressed;
@override
Widget build(BuildContext context) {
return Material(
elevation: 12,
borderRadius: BorderRadius.circular(20),
child: Padding(
padding: const EdgeInsets.all(12),
child: Row(
mainAxisSize: MainAxisSize.max,
children: [
ClipRRect(
borderRadius: BorderRadius.circular(12),
child: SizedBox(
width: 120,
height: 120,
child: Center(
child: AnimatedContainer(
duration: const Duration(milliseconds: 100),
curve: Curves.easeInOut,
height: isDepressed ? 115 : 120,
width: isDepressed ? 115 : 120,
child: Image(
image: photoProvider,
fit: BoxFit.cover,
),
),
),
),
),
const SizedBox(width: 30),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
name,
style: Theme.of(context).textTheme.titleMedium?.copyWith(
fontSize: 18,
),
),
const SizedBox(height: 10),
Text(
price,
style: Theme.of(context).textTheme.titleMedium?.copyWith(
fontWeight: FontWeight.bold,
fontSize: 18,
),
),
],
),
),
],
),
),
);
}
}
class DraggingListItem extends StatelessWidget {
const DraggingListItem({
super.key,
required this.dragKey,
required this.photoProvider,
});
final GlobalKey dragKey;
final ImageProvider photoProvider;
@override
Widget build(BuildContext context) {
return FractionalTranslation(
translation: const Offset(-0.5, -0.5),
child: ClipRRect(
key: dragKey,
borderRadius: BorderRadius.circular(12),
child: SizedBox(
height: 150,
width: 150,
child: Opacity(
opacity: 0.85,
child: Image(
image: photoProvider,
fit: BoxFit.cover,
),
),
),
),
);
}
}
@immutable
class Item {
const Item({
required this.totalPriceCents,
required this.name,
required this.uid,
required this.imageProvider,
});
final int totalPriceCents;
final String name;
final String uid;
final ImageProvider imageProvider;
String get formattedTotalItemPrice =>
'\$${(totalPriceCents / 100.0).toStringAsFixed(2)}';
}
class Customer {
Customer({
required this.name,
required this.imageProvider,
List<Item>? items,
}) : items = items ?? [];
final String name;
final ImageProvider imageProvider;
final List<Item> items;
String get formattedTotalItemPrice {
final totalPriceCents =
items.fold<int>(0, (prev, item) => prev + item.totalPriceCents);
return '\$${(totalPriceCents / 100.0).toStringAsFixed(2)}';
}
}
```
[`pointerDragAnchorStrategy`]: {{site.api}}/flutter/widgets/pointerDragAnchorStrategy.html
[`LongPressDraggable`]: {{site.api}}/flutter/widgets/LongPressDraggable-class.html
| website/src/cookbook/effects/drag-a-widget.md/0 | {
"file_path": "website/src/cookbook/effects/drag-a-widget.md",
"repo_id": "website",
"token_count": 7882
} | 1,273 |
---
title: Add achievements and leaderboards to your mobile game
description: >
How to use the games_services plugin to add functionality to your game.
---
<?code-excerpt path-base="cookbook/games/achievements_leaderboards"?>
Gamers have various motivations for playing games.
In broad strokes, there are four major motivations:
[immersion, achievement, cooperation, and competition][].
No matter the game you build, some players want to *achieve* in it.
This could be trophies won or secrets unlocked.
Some players want to *compete* in it.
This could be hitting high scores or accomplishing speedruns.
These two ideas map to the concepts of *achievements* and *leaderboards*.
{:.site-illustration}
Ecosystems such as the App Store and Google Play provide
centralized services for achievements and leaderboards.
Players can view achievements from all their games in one place and
developers don't need to re-implement them for every game.
This recipe demonstrates how to use the [`games_services` package][]
to add achievements and leaderboard functionality to your mobile game.
[`games_services` package]: {{site.pub-pkg}}/games_services
[immersion, achievement, cooperation, and competition]: https://meditations.metavert.io/p/game-player-motivations
## 1. Enable platform services
To enable games services, set up *Game Center* on iOS and
*Google Play Games Services* on Android.
### iOS
To enable Game Center (GameKit) on iOS:
1. Open your Flutter project in Xcode.
Open `ios/Runner.xcworkspace`
2. Select the root **Runner** project.
3. Go to the **Signing & Capabilities** tab.
4. Click the `+` button to add **Game Center** as a capability.
5. Close Xcode.
6. If you haven't already,
register your game in [App Store Connect][]
and from the **My App** section press the `+` icon.

7. Still in App Store Connect, look for the *Game Center* section. You
can find it in **Services** as of this writing. On the **Game
Center** page, you might want to set up a leaderboard and several
achievements, depending on your game. Take note of the IDs of the
leaderboards and achievements you create.
[App Store Connect]: https://appstoreconnect.apple.com/
### Android
To enable *Play Games Services* on Android:
1. If you haven't already, go to [Google Play Console][]
and register your game there.

2. Still in Google Play Console, select *Play Games Services* β *Setup
and management* β *Configuration* from the navigation menu and
follow their instructions.
* This takes a significant amount of time and patience.
Among other things, you'll need to set up an
OAuth consent screen in Google Cloud Console.
If at any point you feel lost, consult the
official [Play Games Services guide][].

3. When done, you can start adding leaderboards and achievements in
**Play Games Services** β **Setup and management**. Create the exact
same set as you did on the iOS side. Make note of IDs.
4. Go to **Play Games Services β Setup and management β Publishing**.
5. Click **Publish**. Don't worry, this doesn't actually publish your
game. It only publishes the achievements and leaderboard. Once a
leaderboard, for example, is published this way, it cannot be
unpublished.
6. Go to **Play Games Services** **β Setup and management β
Configuration β Credentials**.
7. Find the **Get resources** button.
It returns an XML file with the Play Games Services IDs.
```xml
<!-- THIS IS JUST AN EXAMPLE -->
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--app_id-->
<string name="app_id" translatable="false">424242424242</string>
<!--package_name-->
<string name="package_name" translatable="false">dev.flutter.tictactoe</string>
<!--achievement First win-->
<string name="achievement_first_win" translatable="false">sOmEiDsTrInG</string>
<!--leaderboard Highest Score-->
<string name="leaderboard_highest_score" translatable="false">sOmEiDsTrInG</string>
</resources>
```
8. Add a file at `android/app/src/main/res/values/games-ids.xml`
containing the XML you received in the previous step.
[Google Play Console]: https://play.google.com/console/
[Play Games Services guide]: {{site.developers}}/games/services/console/enabling
## 2. Sign in to the game service
Now that you have set up *Game Center* and *Play Games Services*, and
have your achievement & leaderboard IDs ready, it's finally Dart time.
1. Add a dependency on the [`games_services` package]({{site.pub-pkg}}/games_services).
```terminal
$ flutter pub add games_services
```
2. Before you can do anything else, you have to sign the player into
the game service.
<?code-excerpt "lib/various.dart (signIn)"?>
```dart
try {
await GamesServices.signIn();
} on PlatformException catch (e) {
// ... deal with failures ...
}
```
The sign in happens in the background. It takes several seconds, so
don't call `signIn()` before `runApp()` or the players will be forced to
stare at a blank screen every time they start your game.
The API calls to the `games_services` API can fail for a multitude of
reasons. Therefore, every call should be wrapped in a try-catch block as
in the previous example. The rest of this recipe omits exception
handling for clarity.
{{site.alert.tip}}
It's a good practice to create a controller. This would be a
`ChangeNotifier`, a bloc, or some other piece of logic that wraps around
the raw functionality of the `games_services` plugin.
{{site.alert.end}}
## 3. Unlock achievements
1. Register achievements in Google Play Console and App Store Connect,
and take note of their IDs. Now you can award any of those
achievements from your Dart code:
<?code-excerpt "lib/various.dart (unlock)"?>
```dart
await GamesServices.unlock(
achievement: Achievement(
androidID: 'your android id',
iOSID: 'your ios id',
),
);
```
The player's account on Google Play Games or Apple Game Center now
lists the achievement.
2. To display the achievements UI from your game, call the
`games_services` API:
<?code-excerpt "lib/various.dart (showAchievements)"?>
```dart
await GamesServices.showAchievements();
```
This displays the platform achievements UI as an overlay on your game.
3. To display the achievements in your own UI, use
[`GamesServices.loadAchievements()`][].
[`GamesServices.loadAchievements()`]: {{site.pub-api}}/games_services/latest/games_services/GamesServices/loadAchievements.html
## 4. Submit scores
When the player finishes a play-through, your game can submit the result
of that play session into one or more leaderboards.
For example, a platformer game like Super Mario can submit both the
final score and the time taken to complete the level, to two separate
leaderboards.
1. In the first step, you registered a leaderboard in Google Play
Console and App Store Connect, and took note of its ID. Using this
ID, you can submit new scores for the player:
<?code-excerpt "lib/various.dart (submitScore)"?>
```dart
await GamesServices.submitScore(
score: Score(
iOSLeaderboardID: 'some_id_from_app_store',
androidLeaderboardID: 'sOmE_iD_fRoM_gPlAy',
value: 100,
),
);
```
You don't need to check whether the new score is the player's
highest. The platform game services handle that for you.
2. To display the leaderboard as an overlay over your game, make the
following call:
<?code-excerpt "lib/various.dart (showLeaderboards)"?>
```dart
await GamesServices.showLeaderboards(
iOSLeaderboardID: 'some_id_from_app_store',
androidLeaderboardID: 'sOmE_iD_fRoM_gPlAy',
);
```
3. If you want to display the leaderboard scores in your own UI, you
can fetch them with [`GamesServices.loadLeaderboardScores()`][].
[`GamesServices.loadLeaderboardScores()`]: {{site.pub-api}}/games_services/latest/games_services/GamesServices/loadLeaderboardScores.html
## 5. Next steps
There's more to the `games_services` plugin. With this plugin, you can:
- Get the player's icon, name or unique ID
- Save and load game states
- Sign out of the game service
Some achievements can be incremental. For example: "You have collected
all 10 pieces of the McGuffin."
Each game has different needs from game services.
To start, you might want to create this controller
in order to keep all achievements & leaderboards logic in one place:
<?code-excerpt "lib/games_services_controller.dart"?>
```dart
import 'dart:async';
import 'package:games_services/games_services.dart';
import 'package:logging/logging.dart';
/// Allows awarding achievements and leaderboard scores,
/// and also showing the platforms' UI overlays for achievements
/// and leaderboards.
///
/// A facade of `package:games_services`.
class GamesServicesController {
static final Logger _log = Logger('GamesServicesController');
final Completer<bool> _signedInCompleter = Completer();
Future<bool> get signedIn => _signedInCompleter.future;
/// Unlocks an achievement on Game Center / Play Games.
///
/// You must provide the achievement ids via the [iOS] and [android]
/// parameters.
///
/// Does nothing when the game isn't signed into the underlying
/// games service.
Future<void> awardAchievement(
{required String iOS, required String android}) async {
if (!await signedIn) {
_log.warning('Trying to award achievement when not logged in.');
return;
}
try {
await GamesServices.unlock(
achievement: Achievement(
androidID: android,
iOSID: iOS,
),
);
} catch (e) {
_log.severe('Cannot award achievement: $e');
}
}
/// Signs into the underlying games service.
Future<void> initialize() async {
try {
await GamesServices.signIn();
// The API is unclear so we're checking to be sure. The above call
// returns a String, not a boolean, and there's no documentation
// as to whether every non-error result means we're safely signed in.
final signedIn = await GamesServices.isSignedIn;
_signedInCompleter.complete(signedIn);
} catch (e) {
_log.severe('Cannot log into GamesServices: $e');
_signedInCompleter.complete(false);
}
}
/// Launches the platform's UI overlay with achievements.
Future<void> showAchievements() async {
if (!await signedIn) {
_log.severe('Trying to show achievements when not logged in.');
return;
}
try {
await GamesServices.showAchievements();
} catch (e) {
_log.severe('Cannot show achievements: $e');
}
}
/// Launches the platform's UI overlay with leaderboard(s).
Future<void> showLeaderboard() async {
if (!await signedIn) {
_log.severe('Trying to show leaderboard when not logged in.');
return;
}
try {
await GamesServices.showLeaderboards(
// TODO: When ready, change both these leaderboard IDs.
iOSLeaderboardID: 'some_id_from_app_store',
androidLeaderboardID: 'sOmE_iD_fRoM_gPlAy',
);
} catch (e) {
_log.severe('Cannot show leaderboard: $e');
}
}
/// Submits [score] to the leaderboard.
Future<void> submitLeaderboardScore(int score) async {
if (!await signedIn) {
_log.warning('Trying to submit leaderboard when not logged in.');
return;
}
_log.info('Submitting $score to leaderboard.');
try {
await GamesServices.submitScore(
score: Score(
// TODO: When ready, change these leaderboard IDs.
iOSLeaderboardID: 'some_id_from_app_store',
androidLeaderboardID: 'sOmE_iD_fRoM_gPlAy',
value: score,
),
);
} catch (e) {
_log.severe('Cannot submit leaderboard score: $e');
}
}
}
```
## More information
The Flutter Casual Games Toolkit includes the following templates:
* [basic][]: basic starter game
* [card][]: starter card game
* [endless runner][]: starter game (using Flame)
where the player endlessly runs, avoiding pitfalls
and gaining rewards
[basic]: {{site.github}}/flutter/games/tree/main/templates/basic#readme
[card]: {{site.github}}/flutter/games/tree/main/templates/card#readme
[endless runner]: {{site.github}}/flutter/games/tree/main/templates/endless_runner#readme
| website/src/cookbook/games/achievements-leaderboard.md/0 | {
"file_path": "website/src/cookbook/games/achievements-leaderboard.md",
"repo_id": "website",
"token_count": 4262
} | 1,274 |
---
title: Create a horizontal list
description: How to implement a horizontal list.
js:
- defer: true
url: https://old-dartpad-3ce3f.web.app/inject_embed.dart.js
---
<?code-excerpt path-base="cookbook/lists/horizontal_list"?>
You might want to create a list that scrolls
horizontally rather than vertically.
The [`ListView`][] widget supports horizontal lists.
Use the standard `ListView` constructor, passing in a horizontal
`scrollDirection`, which overrides the default vertical direction.
<?code-excerpt "lib/main.dart (ListView)" replace="/^child\: //g"?>
```dart
ListView(
// This next line does the trick.
scrollDirection: Axis.horizontal,
children: <Widget>[
Container(
width: 160,
color: Colors.red,
),
Container(
width: 160,
color: Colors.blue,
),
Container(
width: 160,
color: Colors.green,
),
Container(
width: 160,
color: Colors.yellow,
),
Container(
width: 160,
color: Colors.orange,
),
],
),
```
## Interactive example
{{site.alert.secondary}}
**Desktop and web only:**
This example works in the browser and on the desktop.
However, as this list scrolls on the horizontal axis
(left to right or right to left),
hold <kbd>Shift</kbd> while using the mouse scroll wheel to scroll the list.
To learn more, read the [breaking change][] page on the
default drag for scrolling devices.
{{site.alert.end}}
<?code-excerpt "lib/main.dart"?>
```run-dartpad:theme-light:mode-flutter:run-true:width-100%:height-600px:split-60:ga_id-interactive_example
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
const title = 'Horizontal List';
return MaterialApp(
title: title,
home: Scaffold(
appBar: AppBar(
title: const Text(title),
),
body: Container(
margin: const EdgeInsets.symmetric(vertical: 20),
height: 200,
child: ListView(
// This next line does the trick.
scrollDirection: Axis.horizontal,
children: <Widget>[
Container(
width: 160,
color: Colors.red,
),
Container(
width: 160,
color: Colors.blue,
),
Container(
width: 160,
color: Colors.green,
),
Container(
width: 160,
color: Colors.yellow,
),
Container(
width: 160,
color: Colors.orange,
),
],
),
),
),
);
}
}
```
<noscript>
<img src="/assets/images/docs/cookbook/horizontal-list.gif" alt="Horizontal List Demo" class="site-mobile-screenshot" />
</noscript>
[breaking change]: /release/breaking-changes/default-scroll-behavior-drag
[`ListView`]: {{site.api}}/flutter/widgets/ListView-class.html
| website/src/cookbook/lists/horizontal-list.md/0 | {
"file_path": "website/src/cookbook/lists/horizontal-list.md",
"repo_id": "website",
"token_count": 1340
} | 1,275 |
---
title: Make authenticated requests
description: How to fetch authorized data from a web service.
---
<?code-excerpt path-base="cookbook/networking/authenticated_requests/"?>
To fetch data from most web services, you need to provide
authorization. There are many ways to do this,
but perhaps the most common uses the `Authorization` HTTP header.
## Add authorization headers
The [`http`][] package provides a
convenient way to add headers to your requests.
Alternatively, use the [`HttpHeaders`][]
class from the `dart:io` library.
<?code-excerpt "lib/main.dart (get)"?>
```dart
final response = await http.get(
Uri.parse('https://jsonplaceholder.typicode.com/albums/1'),
// Send authorization headers to the backend.
headers: {
HttpHeaders.authorizationHeader: 'Basic your_api_token_here',
},
);
```
## Complete example
This example builds upon the
[Fetching data from the internet][] recipe.
<?code-excerpt "lib/main.dart"?>
```dart
import 'dart:async';
import 'dart:convert';
import 'dart:io';
import 'package:http/http.dart' as http;
Future<Album> fetchAlbum() async {
final response = await http.get(
Uri.parse('https://jsonplaceholder.typicode.com/albums/1'),
// Send authorization headers to the backend.
headers: {
HttpHeaders.authorizationHeader: 'Basic your_api_token_here',
},
);
final responseJson = jsonDecode(response.body) as Map<String, dynamic>;
return Album.fromJson(responseJson);
}
class Album {
final int userId;
final int id;
final String title;
const Album({
required this.userId,
required this.id,
required this.title,
});
factory Album.fromJson(Map<String, dynamic> json) {
return switch (json) {
{
'userId': int userId,
'id': int id,
'title': String title,
} =>
Album(
userId: userId,
id: id,
title: title,
),
_ => throw const FormatException('Failed to load album.'),
};
}
}
```
[Fetching data from the internet]: /cookbook/networking/fetch-data
[`http`]: {{site.pub-pkg}}/http
[`HttpHeaders`]: {{site.dart.api}}/stable/dart-io/HttpHeaders-class.html
| website/src/cookbook/networking/authenticated-requests.md/0 | {
"file_path": "website/src/cookbook/networking/authenticated-requests.md",
"repo_id": "website",
"token_count": 782
} | 1,276 |
---
title: Testing
description: A catalog of recipes showcasing testing your Flutter app.
---
{% include docs/cookbook-toc.md pages=site.pages header_tag='h2' %}
| website/src/cookbook/testing/index.md/0 | {
"file_path": "website/src/cookbook/testing/index.md",
"repo_id": "website",
"token_count": 49
} | 1,277 |
---
title: Networking
description: Internet network calls in Flutter.
---
## Cross-platform http networking
The [`http`][] package provides the simplest way to issue http requests. This
package is supported on Android, iOS, macOS, Windows, Linux and the web.
## Platform notes
Some platforms require additional steps, as detailed below.
### Android
Android apps must [declare their use of the internet][declare] in the Android
manifest (`AndroidManifest.xml`):
```
<manifest xmlns:android...>
...
<uses-permission android:name="android.permission.INTERNET" />
<application ...
</manifest>
```
### macOS
macOS apps must allow network access in the relevant `*.entitlements` files.
```
<key>com.apple.security.network.client</key>
<true/>
```
Learn more about [setting up entitlements][].
[setting up entitlements]: /platform-integration/macos/building#setting-up-entitlements
## Samples
For a practical sample of various networking tasks (incl. fetching data,
WebSockets, and parsing data in the background) see the
[networking cookbook](/cookbook#networking).
[declare]: {{site.android-dev}}/training/basics/network-ops/connecting
[`http`]: {{site.pub-pkg}}/http
| website/src/data-and-backend/networking.md/0 | {
"file_path": "website/src/data-and-backend/networking.md",
"repo_id": "website",
"token_count": 347
} | 1,278 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.