Skip to content

Commit

Permalink
[path_provider] Update tizen_interop to 0.3.0 (#708)
Browse files Browse the repository at this point in the history
  • Loading branch information
JSUYA authored Jul 22, 2024
1 parent ad9e221 commit e4c510f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion packages/path_provider/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## NEXT
## 2.1.1

* Fix new lint warnings.
* Update minimum Flutter and Dart version to 3.13 and 3.1.
* Update tizen_interop to 0.3.0.

## 2.1.0

Expand Down
2 changes: 1 addition & 1 deletion packages/path_provider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This package is not an _endorsed_ implementation of `path_provider`. Therefore,
```yaml
dependencies:
path_provider: ^2.0.7
path_provider_tizen: ^2.1.0
path_provider_tizen: ^2.1.1
```
Then you can import `path_provider` in your Dart code:
Expand Down
2 changes: 1 addition & 1 deletion packages/path_provider/lib/src/app_common.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import 'dart:ffi';

import 'package:ffi/ffi.dart';
import 'package:tizen_interop/4.0/tizen.dart';
import 'package:tizen_interop/6.0/tizen.dart';

/// A cached [AppCommon] instance.
final AppCommon appCommon = AppCommon();
Expand Down
4 changes: 2 additions & 2 deletions packages/path_provider/lib/src/storage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import 'dart:ffi';

import 'package:ffi/ffi.dart';
import 'package:flutter/services.dart';
import 'package:tizen_interop/4.0/tizen.dart';
import 'package:tizen_interop/6.0/tizen.dart';

export 'package:tizen_interop/4.0/tizen.dart' show storage_directory_e;
export 'package:tizen_interop/6.0/tizen.dart' show storage_directory_e;

/// A cached [Storage] instance.
final Storage storage = Storage();
Expand Down
4 changes: 2 additions & 2 deletions packages/path_provider/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: path_provider_tizen
description: Tizen implementation of the path_provider plugin.
homepage: https://github.com/flutter-tizen/plugins
repository: https://github.com/flutter-tizen/plugins/tree/master/packages/path_provider
version: 2.1.0
version: 2.1.1

environment:
sdk: ">=3.1.0 <4.0.0"
Expand All @@ -19,4 +19,4 @@ dependencies:
flutter:
sdk: flutter
path_provider_platform_interface: ^2.0.1
tizen_interop: ^0.2.0
tizen_interop: ^0.3.0

0 comments on commit e4c510f

Please sign in to comment.