Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ updates:
schedule:
interval: "weekly"
- package-ecosystem: "pub"
directories: [ "/", "/example" ]
directories: [ "/example", "/maplibre", "/maplibre_ios", "/" ]
schedule:
interval: "weekly"
ignore:
Expand All @@ -23,7 +23,7 @@ updates:
dependencies:
patterns: [ "*" ]
- package-ecosystem: "gradle"
directories: [ "/android" , "/example/android" ]
directories: [ "/maplibre/android" , "/example/android" ]
schedule:
interval: "weekly"
groups:
Expand Down
Binary file modified docs/.yarn/install-state.gz
Binary file not shown.
6 changes: 3 additions & 3 deletions docs/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8469,14 +8469,14 @@ __metadata:
linkType: hard

"js-yaml@npm:^3.13.1":
version: 3.14.1
resolution: "js-yaml@npm:3.14.1"
version: 3.14.2
resolution: "js-yaml@npm:3.14.2"
dependencies:
argparse: "npm:^1.0.7"
esprima: "npm:^4.0.0"
bin:
js-yaml: bin/js-yaml.js
checksum: 10c0/6746baaaeac312c4db8e75fa22331d9a04cccb7792d126ed8ce6a0bbcfef0cedaddd0c5098fade53db067c09fe00aa1c957674b4765610a8b06a5a189e46433b
checksum: 10c0/3261f25912f5dd76605e5993d0a126c2b6c346311885d3c483706cd722efe34f697ea0331f654ce27c00a42b426e524518ec89d65ed02ea47df8ad26dcc8ce69
languageName: node
linkType: hard

Expand Down
3 changes: 1 addition & 2 deletions maplibre/lib/src/platform/android/functions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import 'package:jni/jni.dart';
import 'package:maplibre/src/platform/android/jni.g.dart';

/// Get the Android [Context].
Context getJContext() =>
Jni.androidApplicationContext(_engineId).as(Context.type);
Context getJContext() => Jni.androidApplicationContext.as(Context.type);

/// Get the Android [Activity].
Activity getJActivity() =>
Expand Down
1 change: 1 addition & 0 deletions maplibre/lib/src/platform/pigeon.g.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// swiftformat:disable all
// ignore_for_file: type=lint
// Autogenerated from Pigeon (v26.0.1), do not edit directly.
// See also: https://pub.dev/packages/pigeon
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import, no_leading_underscores_for_local_identifiers
Expand Down
2 changes: 1 addition & 1 deletion maplibre/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies:
sdk: flutter
geobase: ^1.5.0
html: ^0.15.4
jni: ^0.15.0
jni: ^0.15.2
maplibre_ios: ^0.3.1
objective_c: ^8.0.0
pointer_interceptor: ^0.10.1+2
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// swiftformat:disable all
// ignore_for_file: type=lint
// Autogenerated from Pigeon (v26.0.1), do not edit directly.
// See also: https://pub.dev/packages/pigeon

Expand Down
3 changes: 2 additions & 1 deletion pigeons/header.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
swiftformat:disable all
swiftformat:disable all
ignore_for_file: type=lint
4 changes: 2 additions & 2 deletions pigeons/pigeon.dart
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,8 @@ class MapOptions {
const MapOptions({
required this.style,
required this.zoom,
required this.center,
required this.pitch,
required this.bearing,
required this.maxBounds,
required this.minZoom,
required this.maxZoom,
required this.minPitch,
Expand All @@ -123,6 +121,8 @@ class MapOptions {
required this.androidTextureMode,
required this.androidTranslucentTextureSurface,
required this.androidForegroundLoadColor,
required this.center,
required this.maxBounds,
});

/// The URL of the used map style.
Expand Down
Loading