Skip to content

Commit 52ce1af

Browse files
example
1 parent 1f7bccf commit 52ce1af

3 files changed

Lines changed: 26 additions & 17 deletions

File tree

example/macos/Flutter/GeneratedPluginRegistrant.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import Foundation
88
import device_info_plus
99
import package_info_plus
1010
import path_provider_foundation
11-
import shared_preferences_foundation
1211

1312
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
1413
DeviceInfoPlusMacosPlugin.register(with: registry.registrar(forPlugin: "DeviceInfoPlusMacosPlugin"))
1514
FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin"))
15+
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
1616
}

example/pubspec.lock

Lines changed: 22 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages:
77
path: ".."
88
relative: true
99
source: path
10-
version: "0.2.0"
10+
version: "0.3.0"
1111
async:
1212
dependency: transitive
1313
description:
@@ -113,10 +113,10 @@ packages:
113113
dependency: "direct dev"
114114
description:
115115
name: flutter_lints
116-
sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04
116+
sha256: "3f41d009ba7172d5ff9be5f6e6e6abb4300e263aab8866d2a0842ed2a70f8f0c"
117117
url: "https://pub.dev"
118118
source: hosted
119-
version: "2.0.3"
119+
version: "4.0.0"
120120
flutter_test:
121121
dependency: "direct dev"
122122
description: flutter
@@ -187,10 +187,10 @@ packages:
187187
dependency: transitive
188188
description:
189189
name: lints
190-
sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452"
190+
sha256: "976c774dd944a42e83e2467f4cc670daef7eed6295b10b36ae8c85bcbf828235"
191191
url: "https://pub.dev"
192192
source: hosted
193-
version: "2.1.1"
193+
version: "4.0.0"
194194
matcher:
195195
dependency: transitive
196196
description:
@@ -243,26 +243,26 @@ packages:
243243
dependency: transitive
244244
description:
245245
name: path_provider
246-
sha256: b27217933eeeba8ff24845c34003b003b2b22151de3c908d0e679e8fe1aa078b
246+
sha256: c9e7d3a4cd1410877472158bee69963a4579f78b68c65a2b7d40d1a7a88bb161
247247
url: "https://pub.dev"
248248
source: hosted
249-
version: "2.1.2"
249+
version: "2.1.3"
250250
path_provider_android:
251251
dependency: transitive
252252
description:
253253
name: path_provider_android
254-
sha256: "477184d672607c0a3bf68fbbf601805f92ef79c82b64b4d6eb318cbca4c48668"
254+
sha256: "9c96da072b421e98183f9ea7464898428e764bc0ce5567f27ec8693442e72514"
255255
url: "https://pub.dev"
256256
source: hosted
257-
version: "2.2.2"
257+
version: "2.2.5"
258258
path_provider_foundation:
259259
dependency: transitive
260260
description:
261261
name: path_provider_foundation
262-
sha256: "5a7999be66e000916500be4f15a3633ebceb8302719b47b9cc49ce924125350f"
262+
sha256: f234384a3fdd67f989b4d54a5d73ca2a6c422fa55ae694381ae0f4375cd1ea16
263263
url: "https://pub.dev"
264264
source: hosted
265-
version: "2.3.2"
265+
version: "2.4.0"
266266
path_provider_linux:
267267
dependency: transitive
268268
description:
@@ -291,10 +291,10 @@ packages:
291291
dependency: transitive
292292
description:
293293
name: platform
294-
sha256: "12220bb4b65720483f8fa9450b4332347737cf8213dd2840d8b2c823e47243ec"
294+
sha256: "9b71283fc13df574056616011fb138fd3b793ea47cc509c189a6c3fa5f8a1a65"
295295
url: "https://pub.dev"
296296
source: hosted
297-
version: "3.1.4"
297+
version: "3.1.5"
298298
plugin_platform_interface:
299299
dependency: transitive
300300
description:
@@ -412,6 +412,14 @@ packages:
412412
url: "https://pub.dev"
413413
source: hosted
414414
version: "1.1.3"
415+
xdg_directories:
416+
dependency: transitive
417+
description:
418+
name: xdg_directories
419+
sha256: faea9dee56b520b55a566385b84f2e8de55e7496104adada9962e0bd11bcff1d
420+
url: "https://pub.dev"
421+
source: hosted
422+
version: "1.0.4"
415423
sdks:
416424
dart: ">=3.4.0 <4.0.0"
417-
flutter: ">=3.19.0"
425+
flutter: ">=3.22.0"

example/pubspec.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1919
version: 1.0.0+1
2020

2121
environment:
22-
sdk: '>=3.1.0 <4.0.0'
22+
sdk: '>=3.2.0 <4.0.0'
23+
flutter: ">=1.17.0"
2324

2425
# Dependencies specify other packages that your package needs in order to work.
2526
# To automatically upgrade your package dependencies to the latest versions
@@ -47,7 +48,7 @@ dev_dependencies:
4748
# activated in the `analysis_options.yaml` file located at the root of your
4849
# package. See that file for information about deactivating specific lint
4950
# rules and activating additional ones.
50-
flutter_lints: ^2.0.0
51+
flutter_lints: ^4.0.0
5152

5253
# For information on the generic Dart part of this file, see the
5354
# following page: https://dart.dev/tools/pub/pubspec

0 commit comments

Comments
 (0)