Skip to content

Commit c567582

Browse files
fixup! Flutter plugins: update files to match Flutter SDK 3.29.3 template
1 parent f10fe86 commit c567582

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

flutter_libs/lib/objectbox_flutter_libs.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ import 'package:path_provider/path_provider.dart';
1515
/// directory. It is advised to not use this then and instead create a directory
1616
/// named specifically for your app.
1717
Future<Directory> defaultStoreDirectory() async => Directory(
18-
'${(await getApplicationDocumentsDirectory()).path}/${Store.defaultDirectoryPath}');
18+
'${(await getApplicationDocumentsDirectory()).path}/${Store.defaultDirectoryPath}',
19+
);
1920

2021
const _platform = MethodChannel("objectbox_flutter_libs");
2122

flutter_libs/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ homepage: https://objectbox.io
66
version: 4.3.1
77

88
environment:
9-
sdk: ^3.7.2
9+
sdk: ^3.7.0
1010
flutter: '>=3.3.0'
1111

1212
dependencies:

sync_flutter_libs/lib/objectbox_sync_flutter_libs.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ import 'package:path_provider/path_provider.dart';
1515
/// directory. It is advised to not use this then and instead create a directory
1616
/// named specifically for your app.
1717
Future<Directory> defaultStoreDirectory() async => Directory(
18-
'${(await getApplicationDocumentsDirectory()).path}/${Store.defaultDirectoryPath}');
18+
'${(await getApplicationDocumentsDirectory()).path}/${Store.defaultDirectoryPath}',
19+
);
1920

2021
const _platform = MethodChannel("objectbox_sync_flutter_libs");
2122

sync_flutter_libs/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ homepage: https://objectbox.io
66
version: 4.3.1
77

88
environment:
9-
sdk: ^3.7.2
9+
sdk: ^3.7.0
1010
flutter: '>=3.3.0'
1111

1212
dependencies:

0 commit comments

Comments
 (0)